MiniGUI API Reference (MiniGUI-Processes)
v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
|
Macros | |
#define | MSG_DT_LBUTTONDOWN 0x00E1 |
Left mouse button down message on the desktop. More... | |
#define | MSG_DT_LBUTTONUP 0x00E2 |
Left mouse button up message on the desktop. More... | |
#define | MSG_DT_LBUTTONDBLCLK 0x00E3 |
Left mouse button double clicked message on the desktop. More... | |
#define | MSG_DT_MOUSEMOVE 0x00E4 |
The mouse moved message on the desktop. More... | |
#define | MSG_DT_RBUTTONDOWN 0x00E5 |
Right mouse button down message on the desktop. More... | |
#define | MSG_DT_RBUTTONUP 0x00E6 |
Right mouse button up message on the desktop. More... | |
#define | MSG_DT_RBUTTONDBLCLK 0x00E7 |
Right mouse button double clicked message on the desktop. More... | |
#define | MSG_DT_KEYDOWN 0x00E8 |
User presses a key down on the desktop. More... | |
#define | MSG_DT_KEYUP 0x00EA |
User releases up a key on the desktop. More... | |
#define MSG_DT_KEYDOWN 0x00E8 |
User presses a key down on the desktop.
This message is posted to the desktop window when the user presses a key down.
scancode | The scan code of the pressed key. |
#define MSG_DT_KEYUP 0x00EA |
User releases up a key on the desktop.
This message is posted to the desktop window when the user releases up a key.
scancode | The scan code of the released key. |
#define MSG_DT_LBUTTONDBLCLK 0x00E3 |
Left mouse button double clicked message on the desktop.
This message is posted to the desktop window when the user double clicks the left button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in client coordinates. |
#define MSG_DT_LBUTTONDOWN 0x00E1 |
Left mouse button down message on the desktop.
This message is posted to the desktop window when the user presses down the left button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |
#define MSG_DT_LBUTTONUP 0x00E2 |
Left mouse button up message on the desktop.
This message is posted to the desktop window when the user releases up the left button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |
#define MSG_DT_MOUSEMOVE 0x00E4 |
The mouse moved message on the desktop.
This message is posted to the desktop window when the user moves the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |
#define MSG_DT_RBUTTONDBLCLK 0x00E7 |
Right mouse button double clicked message on the desktop.
This message is posted to the desktop window when the user double clicks the right button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |
#define MSG_DT_RBUTTONDOWN 0x00E5 |
Right mouse button down message on the desktop.
This message is posted to the desktop window when the user presses down the right button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |
#define MSG_DT_RBUTTONUP 0x00E6 |
Right mouse button up message on the desktop.
This message is posted to the desktop window when the user releases up the right button of the mouse in the area of the desktop window.
x_pos,y_pos | The position of the mouse in desktop coordinates. |