BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
keyboard_data.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef KEYBOARD_DATA_H
20#define KEYBOARD_DATA_H
21
22/**
23 * @brief Keyboard events data storage.
24 *
25 */
27{
28 /** Code of the key of the recent event.*/
29 int key;
30
31 /** Key action, whether it was pressed, released or held.*/
32 int action;
33
34 /** Flag indicating if CTRL was pressed. */
36
37 /** Flag indicating if SHIFT was pressed. */
39
41 : ctrl_pressed(false)
42 , shift_pressed(false)
43 {
44 reset();
45 }
46
47 void reset() { key = 0; }
48};
49
50#endif // #ifndef KEYBOARD_DATA_H
Keyboard events data storage.
Definition: keyboard_data.h:27
int key
Code of the key of the recent event.
Definition: keyboard_data.h:29
bool shift_pressed
Flag indicating if SHIFT was pressed.
Definition: keyboard_data.h:38
int action
Key action, whether it was pressed, released or held.
Definition: keyboard_data.h:32
bool ctrl_pressed
Flag indicating if CTRL was pressed.
Definition: keyboard_data.h:35