Miscellaneous Routines
Functions/Procedures
Miscellaneous Routines
Category:
Miscellaneous Routines
This cleans up internal wxWidgets memory. wxMain() automatically calls this before
it exits. If you do not use wxMain(), then you should manually call cleanup() before
your app exits.
Miscellaneous Routines
Category:
Miscellaneous Routines
Miscellaneous Routines
Category:
Miscellaneous Routines
Returns the window identified by its id and parent.
Miscellaneous Routines
Category:
Miscellaneous Routines
Returns 1 if specified key (see Key Codes for a list of codes to use) is currently
pressed down.
Miscellaneous Routines
Category:
Miscellaneous Routines
Available system colors are:
- wxSYS_COLOUR_SCROLLBAR
- wxSYS_COLOUR_BACKGROUND
- wxSYS_COLOUR_ACTIVECAPTION
- wxSYS_COLOUR_INACTIVECAPTION
- wxSYS_COLOUR_MENU
- wxSYS_COLOUR_WINDOW
- wxSYS_COLOUR_WINDOWFRAME
- wxSYS_COLOUR_MENUTEXT
- wxSYS_COLOUR_WINDOWTEXT
- wxSYS_COLOUR_CAPTIONTEXT
- wxSYS_COLOUR_ACTIVEBORDER
- wxSYS_COLOUR_INACTIVEBORDER
- wxSYS_COLOUR_APPWORKSPACE
- wxSYS_COLOUR_HIGHLIGHT
- wxSYS_COLOUR_HIGHLIGHTTEXT
- wxSYS_COLOUR_BTNFACE
- wxSYS_COLOUR_BTNSHADOW
- wxSYS_COLOUR_GRAYTEXT
- wxSYS_COLOUR_BTNTEXT
- wxSYS_COLOUR_INACTIVECAPTIONTEXT
- wxSYS_COLOUR_BTNHIGHLIGHT
- wxSYS_COLOUR_3DDKSHADOW
- wxSYS_COLOUR_3DLIGHT
- wxSYS_COLOUR_INFOTEXT
- wxSYS_COLOUR_INFOBK
- wxSYS_COLOUR_LISTBOX
- wxSYS_COLOUR_DESKTOP
- wxSYS_COLOUR_3DFACE
- wxSYS_COLOUR_3DSHADOW
- wxSYS_COLOUR_3DHIGHLIGHT
- wxSYS_COLOUR_3DHILIGHT
- wxSYS_COLOUR_BTNHILIGHT
Miscellaneous Routines
Category:
Miscellaneous Routines
Available metrics are:
- wxSYS_MOUSE_BUTTONS
- wxSYS_BORDER_X
- wxSYS_BORDER_Y
- wxSYS_CURSOR_X
- wxSYS_CURSOR_Y
- wxSYS_DCLICK_X
- wxSYS_DCLICK_Y
- wxSYS_DRAG_X
- wxSYS_DRAG_Y
- wxSYS_EDGE_X
- wxSYS_EDGE_Y
- wxSYS_HSCROLL_ARROW_X
- wxSYS_HSCROLL_ARROW_Y
- wxSYS_HTHUMB_X
- wxSYS_ICON_X
- wxSYS_ICON_Y
- wxSYS_ICONSPACING_X
- wxSYS_ICONSPACING_Y
- wxSYS_WINDOWMIN_X
- wxSYS_WINDOWMIN_Y
- wxSYS_SCREEN_X
- wxSYS_SCREEN_Y
- wxSYS_FRAMESIZE_X
- wxSYS_FRAMESIZE_Y
- wxSYS_SMALLICON_X
- wxSYS_SMALLICON_Y
- wxSYS_HSCROLL_Y
- wxSYS_VSCROLL_X
- wxSYS_VSCROLL_ARROW_X
- wxSYS_VSCROLL_ARROW_Y
- wxSYS_VTHUMB_Y
- wxSYS_CAPTION_Y
- wxSYS_MENU_Y
- wxSYS_NETWORK_PRESENT
- wxSYS_PENWINDOWS_PRESENT
- wxSYS_SHOW_SOUNDS
- wxSYS_SWAP_BUTTONS
Miscellaneous Routines
Category:
Miscellaneous Routines
Launches the user's default browser to open the specified url.
Miscellaneous Routines
[func]
message_box ( sequence text, sequence title, atom ok )
Category:
Miscellaneous Routines
Creates a message box dialog, with style ok. Allowable styles are:
Miscellaneous Routines
[func]
mkdir ( sequence directory, object perm, integer flags )
Category:
Miscellaneous Routines
Miscellaneous Routines
Category:
Miscellaneous Routines
This starts the event loop and your main application.
Miscellaneous Routines
[proc]
wx_execute ( sequence command, integer flag )
Category:
Miscellaneous Routines
flag can be a combination of:
- wxEXEC_ASYNC: execute the process asynchronously
- wxEXEC_SYNC: execute it synchronously, i.e. wait until it finishes
- wxEXEC_NOHIDE: under Windows, don't hide the child even if it's IO is redirected (this
is done by default)
- wxEXEC_MAKE_GROUP_LEADER: under Unix, if the process is the group leader then killing -pid kills
all children as well as pid
Miscellaneous Routines
Category:
Miscellaneous Routines