BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
src
input_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 INPUT_DATA_H
20
#define INPUT_DATA_H
21
22
#include "
keyboard_data.h
"
23
#include "
mouse_data.h
"
24
25
/**
26
* @brief Input events data storage.
27
*
28
*/
29
struct
InputData
30
{
31
MouseData
mouse
;
32
KeyboardData
keyboard
;
33
34
InputData
() {
reset
(); }
35
36
int
fb_width
= 800;
37
int
fb_height
= 600;
38
39
void
reset
()
40
{
41
keyboard
.
reset
();
42
mouse
.
reset
();
43
}
44
};
45
46
#endif
// #ifndef INPUT_DATA_H
keyboard_data.h
mouse_data.h
InputData
Input events data storage.
Definition:
input_data.h:30
InputData::reset
void reset()
Definition:
input_data.h:39
InputData::keyboard
KeyboardData keyboard
Definition:
input_data.h:32
InputData::mouse
MouseData mouse
Definition:
input_data.h:31
InputData::fb_width
int fb_width
Definition:
input_data.h:36
InputData::fb_height
int fb_height
Definition:
input_data.h:37
InputData::InputData
InputData()
Definition:
input_data.h:34
KeyboardData
Keyboard events data storage.
Definition:
keyboard_data.h:27
KeyboardData::reset
void reset()
Definition:
keyboard_data.h:47
MouseData
Mouse events data storage.
Definition:
mouse_data.h:29
MouseData::reset
void reset()
Definition:
mouse_data.h:49
Generated by
1.9.4