-
Notifications
You must be signed in to change notification settings - Fork 17
Controls
Onelio edited this page Dec 6, 2019
·
1 revision
Almost every class in this project is a child of the Control one (with really few exceptions) so it's not weird seeing functions in controls that may not use them or that may not work. The second case is usually because of some Win32 limitations.
Function | Description |
---|---|
void create() |
Builds the control if possible |
void destroy() |
Exits the control if possible |
void show() |
Makes the control visible |
void hide() |
Makes the control invisible |
void enable() |
Makes the control enabled |
void disable() |
Makes the control disabled |
void redraw() |
Paints the control again |
void setGlobalSleepTime(int) |
Sets the lapse in ms between updates when using ljoin()
|