ex:
constant myFrame = create( wxFrame, {0, -- has no parent
-1, -- wxWidgets will create an id
"myFrame", -- will be dispayed as the caption
-1, -- start at default x position
-1, -- start at default y position
300, -- 300 wide
200}) -- 200 tall
-- no style supplied means will be default style
Bring a window to the front of the screen.
This sets the icon beside of the text in a wxFrame. The image type cannot be a BM_XPM and it is suggested that a wxIcon be used for the image. The image should be 16 by 16.
Sets a frame invisible if show is 0. If show is 1, then it makes the window visible if it is not, otherwise it does nothing.