|
IDA C++ SDK 9.2
|
A representation of a user input. More...
#include <kernwin.hpp>
Classes | |
| struct | input_event_keyboard_data_t |
| struct | input_event_mouse_data_t |
| struct | input_event_shortcut_data_t |
Public Member Functions | |
| input_event_t () | |
Public Attributes | |
| int | cb |
| size marker | |
| input_event_kind_t | kind |
| the kind of event | |
| input_event_modifiers_t | modifiers |
| current keyboard (and mouse) modifiers | |
| TWidget * | target |
| the target widget | |
| void * | source |
| the source event, should it be required for detailed inform (e.g., a QEvent in the GUI version of IDA) | |
| union { | |
| input_event_shortcut_data_t shortcut | |
| input_event_keyboard_data_t keyboard | |
| input_event_mouse_data_t mouse | |
| }; | |
A representation of a user input.
|
inline |
| int input_event_t::cb |
size marker
| input_event_kind_t input_event_t::kind |
the kind of event
| input_event_modifiers_t input_event_t::modifiers |
current keyboard (and mouse) modifiers
| TWidget* input_event_t::target |
the target widget
| void* input_event_t::source |
the source event, should it be required for detailed inform (e.g., a QEvent in the GUI version of IDA)
| input_event_shortcut_data_t input_event_t::shortcut |
| input_event_keyboard_data_t input_event_t::keyboard |
| input_event_mouse_data_t input_event_t::mouse |
| union { ... } input_event_t |