Keep the window on top
| |
| |
| |
| | Show the system menu
| | Show the minimize box
| | Show the maximize box
| |
| |
| | Allow the window to be resized
| | Don't make owned by apps top window
| | No taskbar button (MSW only)
| | No taskbar button, no system menu
| | Always above its parent
| | Create a window that is able to be shaped
| |
All items with a default value are optional, although you must supply both x and y, or both cx and cy if you supply either one.
Example:
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
If there is only one child of a frame, that child will be automatically resized (by wxWidgets) to the client rect of the frame.
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.