MiniGUI API Reference (MiniGUI-Standalone)
v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
|
Macros | |
#define | SBM_GETSCROLLINFO 0xF0E0 |
Get the scroll information of the scrollbar. More... | |
#define | SBM_SETSCROLLINFO 0xF0E1 |
Set the scroll information of the scrollbar. More... | |
#define | SBM_GETPOS 0xF0E2 |
Get the thumb pos of the scrollbar. More... | |
#define | SBM_SETPOS 0xF0E3 |
Set the thumb pos of the scrollbar. More... | |
#define | SBM_GETRANGE 0xF0E4 |
Get the range of the scrollbar. More... | |
#define | SBM_SETRANGE 0xF0E5 |
Set the range of the scrollbar. More... | |
#define | SBM_SETRANGEREDRAW 0xF0E6 |
Set the range of the scrollbar. More... | |
#define | SBM_ENABLE_ARROW 0xF0E7 |
Enable or disable the arrow of the scrollbar. More... | |
#define SBM_ENABLE_ARROW 0xF0E7 |
Enable or disable the arrow of the scrollbar.
An application sends a SBM_ENABLE_ARROW message to enable or disable the arrow button of the scrollbar.
which | the part of the scrollbar to enable or disable, can be one of the follow value:
|
is_active | TRUE for enable ,FALSE for disable. |
Definition at line 314 of file scrollbar.h.
#define SBM_GETPOS 0xF0E2 |
Get the thumb pos of the scrollbar.
An application sends a SBM_GETPOS message to get the start position of the scrollbar thumb.
Definition at line 194 of file scrollbar.h.
#define SBM_GETRANGE 0xF0E4 |
Get the range of the scrollbar.
An application sends a SBM_GETRANGE message to get the move range of the scrollbar.
Definition at line 236 of file scrollbar.h.
#define SBM_GETSCROLLINFO 0xF0E0 |
Get the scroll information of the scrollbar.
Definition at line 170 of file scrollbar.h.
#define SBM_SETPOS 0xF0E3 |
Set the thumb pos of the scrollbar.
An application sends a SBM_SETPOS message to set the start position of the scrollbar thumb.
pos | The new positon of the thumb to set. |
redraw | Whether to repaint the control, TRUE for repaint, FALSE for not. |
Definition at line 218 of file scrollbar.h.
#define SBM_SETRANGE 0xF0E5 |
Set the range of the scrollbar.
An application sends a SBM_SETRANGE message to set the move range of the scrollbar.
min | The minimum value of the range to set. |
max | The maximum value of the range to set. |
Definition at line 260 of file scrollbar.h.
#define SBM_SETRANGEREDRAW 0xF0E6 |
Set the range of the scrollbar.
An application sends a SBM_SETRANGEREDRAW message to set the move range of the scrollbar and redraw the control.
min | The minimum value of the range to set. |
max | The maximum value of the range to set. |
Definition at line 284 of file scrollbar.h.
#define SBM_SETSCROLLINFO 0xF0E1 |
Set the scroll information of the scrollbar.
Definition at line 176 of file scrollbar.h.