MiniGUI API Reference (MiniGUI-Processes)  v5.0.6
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

◆ LBN_CLICKCHECKMARK

#define LBN_CLICKCHECKMARK   6

Indicates click on the check mark.

Definition at line 1211 of file listbox.h.

◆ LBN_CLICKED

#define LBN_CLICKED   7

Indicates click on the string.

Definition at line 1217 of file listbox.h.

◆ LBN_DBLCLK

#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 1177 of file listbox.h.

◆ LBN_ENTER

#define LBN_ENTER   8

Indicates the user has pressed the ENTER key.

Definition at line 1223 of file listbox.h.

◆ LBN_ERRSPACE

#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 1158 of file listbox.h.

◆ LBN_KILLFOCUS

#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 1205 of file listbox.h.

◆ LBN_SELCANCEL

#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 1187 of file listbox.h.

◆ LBN_SELCHANGE

#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 1168 of file listbox.h.

◆ LBN_SETFOCUS

#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 1196 of file listbox.h.