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 combobox control

Macros

#define CBN_SELCHANGE   1
 Notifies the change of the current selection. More...
 
#define CBN_DBLCLK   2
 Notifies the user has double clicked an item. More...
 
#define CBN_SETFOCUS   3
 Notifies the box has gained the input focus. More...
 
#define CBN_KILLFOCUS   4
 Notifies the box has lost the input focus. More...
 
#define CBN_EDITCHANGE   5
 Notifies the change of the text in the edit control. More...
 
#define CBN_DROPDOWN   7
 Notifies the list box has been dropped down. More...
 
#define CBN_CLOSEUP   8
 Notifies the list box has been closed up. More...
 
#define CBN_SELECTOK   9
 Notifies the selection of a list item. More...
 
#define CBN_SELECTCANCEL   10
 Notifies that the selection of a list item is ignored. More...
 
#define CBN_CLICKED   11
 Notifies that the user has clicked combo box. More...
 

Detailed Description

Macro Definition Documentation

#define CBN_CLICKED   11

Notifies that the user has clicked combo box.

The CBN_CLICKED notification code is sent when the user has clicked combo box.

Definition at line 997 of file combobox.h.

#define CBN_CLOSEUP   8

Notifies the list box has been closed up.

Definition at line 971 of file combobox.h.

#define CBN_DBLCLK   2

Notifies the user has double clicked an item.

A combo box created with the CBS_NOTIFY style sends an CBN_DBLCLK notification message to its parent window when the user double-clicks a string in its listbox.

Definition at line 936 of file combobox.h.

#define CBN_DROPDOWN   7

Notifies the list box has been dropped down.

Definition at line 965 of file combobox.h.

#define CBN_EDITCHANGE   5

Notifies the change of the text in the edit control.

The CBN_EDITCHANGE notification code is sent when the user has taken an action that may have altered the text in the edit control portion of a combo box.

Definition at line 957 of file combobox.h.

#define CBN_KILLFOCUS   4

Notifies the box has lost the input focus.

Definition at line 948 of file combobox.h.

#define CBN_SELCHANGE   1

Notifies the change of the current selection.

The CBN_SELCHANGE notification code is sent when the user changes the current selection in the list box of a combo box.

Definition at line 927 of file combobox.h.

#define CBN_SELECTCANCEL   10

Notifies that the selection of a list item is ignored.

The CBN_SELECTCANCEL notification code is sent when the user has selected a list item but then selects another control or closes the dialog box.

Definition at line 989 of file combobox.h.

#define CBN_SELECTOK   9

Notifies the selection of a list item.

The CBN_SELECTOK notification code is sent when the user has selected a list item.

Definition at line 980 of file combobox.h.

#define CBN_SETFOCUS   3

Notifies the box has gained the input focus.

Definition at line 942 of file combobox.h.