FTXUI/include/ftxui/component/mouse.hpp

48 lines
1007 B
C++
Raw Normal View History

2023-08-19 19:56:36 +08:00
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
2021-05-02 02:40:35 +08:00
#ifndef FTXUI_COMPONENT_MOUSE_HPP
#define FTXUI_COMPONENT_MOUSE_HPP
2021-04-25 21:22:38 +08:00
namespace ftxui {
/// @brief A mouse event. It contains the coordinate of the mouse, the button
/// pressed and the modifier (shift, ctrl, meta).
/// @ingroup component
struct Mouse {
enum Button {
Left = 0,
Middle = 1,
Right = 2,
None = 3,
WheelUp = 4,
WheelDown = 5,
WheelLeft = 6, /// Supported terminal only.
WheelRight = 7, /// Supported terminal only.
2021-04-25 21:22:38 +08:00
};
enum Motion {
Released = 0,
Pressed = 1,
Moved = 2,
2021-04-25 21:22:38 +08:00
};
// Button
Button button = Button::None;
2021-04-25 21:22:38 +08:00
// Motion
Motion motion = Motion::Pressed;
2021-04-25 21:22:38 +08:00
// Modifiers:
bool shift = false;
bool meta = false;
bool control = false;
2021-04-25 21:22:38 +08:00
// Coordinates:
int x = 0;
int y = 0;
2021-04-25 21:22:38 +08:00
};
} // namespace ftxui
2021-05-02 02:40:35 +08:00
#endif /* end of include guard: FTXUI_COMPONENT_MOUSE_HPP */