FTXUI
0.8.1
C++ functional terminal UI.
mouse.hpp
Go to the documentation of this file.
1
#ifndef FTXUI_COMPONENT_MOUSE_HPP
2
#define FTXUI_COMPONENT_MOUSE_HPP
3
namespace
ftxui
{
4
5
/// @brief A mouse event. It contains the coordinate of the mouse, the button
6
/// pressed and the modifier (shift, ctrl, meta).
7
/// @ingroup component
8
struct
Mouse
{
9
enum
Button
{
10
Left
= 0,
11
Middle
= 1,
12
Right
= 2,
13
None
= 3,
14
WheelUp
= 4,
15
WheelDown
= 5,
16
};
17
18
enum
Motion
{
19
Released
= 0,
20
Pressed
= 1,
21
};
22
23
// Button
24
Button
button
;
25
26
// Motion
27
Motion
motion
;
28
29
// Modifiers:
30
bool
shift
;
31
bool
meta
;
32
bool
control
;
33
34
// Coordinates:
35
int
x
;
36
int
y
;
37
};
38
39
}
// namespace ftxui
40
41
// Copyright 2020 Arthur Sonzogni. All rights reserved.
42
// Use of this source code is governed by the MIT license that can be found in
43
// the LICENSE file.
44
#endif
/* end of include guard: FTXUI_COMPONENT_MOUSE_HPP */
ftxui::Mouse::meta
bool meta
Definition:
mouse.hpp:31
ftxui::Mouse::Released
@ Released
Definition:
mouse.hpp:19
ftxui
Definition:
captured_mouse.hpp:6
ftxui::Mouse::WheelUp
@ WheelUp
Definition:
mouse.hpp:14
ftxui::Mouse::y
int y
Definition:
mouse.hpp:36
ftxui::Mouse::Right
@ Right
Definition:
mouse.hpp:12
ftxui::Mouse::None
@ None
Definition:
mouse.hpp:13
ftxui::Mouse::button
Button button
Definition:
mouse.hpp:24
ftxui::Mouse::WheelDown
@ WheelDown
Definition:
mouse.hpp:15
ftxui::Mouse
A mouse event. It contains the coordinate of the mouse, the button pressed and the modifier (shift,...
Definition:
mouse.hpp:8
ftxui::Mouse::Pressed
@ Pressed
Definition:
mouse.hpp:20
ftxui::Mouse::Motion
Motion
Definition:
mouse.hpp:18
ftxui::Mouse::shift
bool shift
Definition:
mouse.hpp:30
ftxui::Mouse::x
int x
Definition:
mouse.hpp:35
ftxui::Mouse::control
bool control
Definition:
mouse.hpp:32
ftxui::Mouse::Middle
@ Middle
Definition:
mouse.hpp:11
ftxui::Mouse::Button
Button
Definition:
mouse.hpp:9
ftxui::Mouse::Left
@ Left
Definition:
mouse.hpp:10
ftxui::Mouse::motion
Motion motion
Definition:
mouse.hpp:27