MiniGUI API Reference (MiniGUI-Standalone)  v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
Macros
Notification codes of listbox control

Macros

#define LBN_ERRSPACE   255
 Indicates that memory is not enough. More...
 
#define LBN_SELCHANGE   1
 Indicates change due to mouse or keyboard user input. More...
 
#define LBN_DBLCLK   2
 Indicates double click on an item. More...
 
#define LBN_SELCANCEL   3
 Indicates cancel of the selection in the list box. More...
 
#define LBN_SETFOCUS   4
 Indicates gain of input focus. More...
 
#define LBN_KILLFOCUS   5
 Indicates loss of input focus. More...
 
#define LBN_CLICKCHECKMARK   6
 Indicates click on the check mark. More...
 
#define LBN_CLICKED   7
 Indicates click on the string. More...
 
#define LBN_ENTER   8
 Indicates the user has pressed the ENTER key. More...
 

Detailed Description

Macro Definition Documentation

#define LBN_CLICKCHECKMARK   6

Indicates click on the check mark.

Definition at line 1199 of file listbox.h.

#define LBN_CLICKED   7

Indicates click on the string.

Definition at line 1205 of file listbox.h.

#define LBN_DBLCLK   2

Indicates double click on an item.

A list box created with the LBS_NOTIFY style sends an LBN_DBLCLK notification message to its parent window when the user double-clicks a string in it.

Definition at line 1165 of file listbox.h.

#define LBN_ENTER   8

Indicates the user has pressed the ENTER key.

Definition at line 1211 of file listbox.h.

#define LBN_ERRSPACE   255

Indicates that memory is not enough.

A list box sends an LBN_ERRSPACE notification message to its parent window when it cannot allocate enough memory to complete the current operation.

Definition at line 1146 of file listbox.h.

#define LBN_KILLFOCUS   5

Indicates loss of input focus.

A list box sends an LBN_KILLFOCUS notification message to its parent window when the list box loses the input focus.

Definition at line 1193 of file listbox.h.

#define LBN_SELCANCEL   3

Indicates cancel of the selection in the list box.

A list box created with the LBS_NOTIFY style sends an LBN_SELCANCEL notification message to its parent window when the user cancels the selection in the list box.

Definition at line 1175 of file listbox.h.

#define LBN_SELCHANGE   1

Indicates change due to mouse or keyboard user input.

A list box created with the LBS_NOTIFY style sends an LBN_SELCHANGE notification message to its parent window when the selection is about to change due to mouse or keyboard user input.

Definition at line 1156 of file listbox.h.

#define LBN_SETFOCUS   4

Indicates gain of input focus.

A list box sends an LBN_SETFOCUS notification message to its parent window when the list box gains the input focus.

Definition at line 1184 of file listbox.h.