FTXUI  0.8.1
C++ functional terminal UI.
Mouse Struct Reference

A mouse event. It contains the coordinate of the mouse, the button pressed and the modifier (shift, ctrl, meta). More...

Public Types

enum  Button {
  Left = 0, Middle = 1, Right = 2, None = 3,
  WheelUp = 4, WheelDown = 5
}
 
enum  Motion { Released = 0, Pressed = 1 }
 

Data Fields

Button button
 
Motion motion
 
bool shift
 
bool meta
 
bool control
 
int x
 
int y
 

Detailed Description

A mouse event. It contains the coordinate of the mouse, the button pressed and the modifier (shift, ctrl, meta).

Definition at line 8 of file mouse.hpp.

Member Enumeration Documentation

◆ Button

enum Button
Enumerator
Left 
Middle 
Right 
None 
WheelUp 
WheelDown 

Definition at line 9 of file mouse.hpp.

◆ Motion

enum Motion
Enumerator
Released 
Pressed 

Definition at line 18 of file mouse.hpp.

Field Documentation

◆ button

Button button
Examples
examples/component/print_key_press.cpp.

Definition at line 24 of file mouse.hpp.

◆ motion

Motion motion
Examples
examples/component/print_key_press.cpp.

Definition at line 27 of file mouse.hpp.

◆ shift

bool shift
Examples
examples/component/print_key_press.cpp.

Definition at line 30 of file mouse.hpp.

◆ meta

bool meta
Examples
examples/component/print_key_press.cpp.

Definition at line 31 of file mouse.hpp.

◆ control

bool control
Examples
examples/component/print_key_press.cpp.

Definition at line 32 of file mouse.hpp.

◆ x

int x
Examples
examples/component/print_key_press.cpp.

Definition at line 35 of file mouse.hpp.

◆ y

int y
Examples
examples/component/print_key_press.cpp.

Definition at line 36 of file mouse.hpp.


The documentation for this struct was generated from the following file: