MiniGUI API Reference (MiniGUI-Standalone)
v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
|
Macros | |
#define | EN_CLICKED 0x0001 |
Notifies a click in an edit control. More... | |
#define | EN_DBLCLK 0x0002 |
Notifies a double click in an edit control. More... | |
#define | EN_SETFOCUS 0x0100 |
Notifies the receipt of the input focus. More... | |
#define | EN_KILLFOCUS 0x0200 |
Notifies the lost of the input focus. More... | |
#define | EN_CHANGE 0x0300 |
Notifies that the text is altered by the user. More... | |
#define | EN_UPDATE 0x0400 |
Notifies that the text is altered by sending MSG_SETTEXT TEM_RESETCONTENT, or EM_SETLINEHEIGHT message to it. More... | |
#define | EN_MAXTEXT 0x0501 |
Notifies reach of maximum text limitation. More... | |
#define | EN_SELCHANGED 0x0603 |
Notifies that the current selection is changed in the text field. More... | |
#define | EN_CONTCHANGED 0x0604 |
Notifies that the current content is changed in the text field when text edit losts focus. More... | |
#define | EN_ENTER 0x0700 |
Notifies the user has type the ENTER key in a single-line edit control. More... | |
#define EN_CHANGE 0x0300 |
#define EN_CLICKED 0x0001 |
#define EN_CONTCHANGED 0x0604 |
#define EN_DBLCLK 0x0002 |
#define EN_ENTER 0x0700 |
#define EN_KILLFOCUS 0x0200 |
#define EN_MAXTEXT 0x0501 |
#define EN_SELCHANGED 0x0603 |
#define EN_SETFOCUS 0x0100 |
#define EN_UPDATE 0x0400 |
Notifies that the text is altered by sending MSG_SETTEXT TEM_RESETCONTENT, or EM_SETLINEHEIGHT message to it.
An edit control sends the EN_UPDATE notification code when the control received MSG_SETTEXT, TEM_RESETCONTENT, or EM_SETLINEHEIGHT message.
Note that this notification will occured when you call SetWindowText or SetDlgItemText function on the control.