The window is a container for widgets.
This is a list of all supported, Window specific, properties, or standard properties that behave a certain way, which isn't default. (Window overrides some properties so it can add his own logic) See the widget page for information about properties used for all widgets.
| Property | supported | Behaviour |
|---|---|---|
| title | swing | Will set the title of the window |
| window-type | swing | Valid values are modal,mdi or toolbox |
| window-mode | swing | Specifies how a window should be shown when it is opened. Valid values are iconized, maximized, normal (default) |
| icon | swing | Sets the window icon |
| resize | swing | Specifies if the window should be resizable Valid values are true or false. |
| background-color | swing | Specifies the background color of the window and the default background and selected colors for the widgets in the window. |
| wallpaper | swing | Specifies the background color of the window and the default background and selected colors for the widgets in the window. |
| wallpaper-type | swing | How to show the wallpaper. Valid values are tiled,centered NOTE: Should move these kind of things to attributes. |
| font | swing | Specifies the default font for the window and all it's child widgets. In Swing you have to be carefull with this, since it can be a very costly operation (eg specifying an unknown font, will create a font, which takes up a lot resources) Format is typeface,size, color, style |
| system | swing | Specifies if a system menu should be present. (defaults to true) |
| status | swing | Specify the statuswindow. As a parameter you can specify the widths , which means every width will be ended by a seperator |
| autosize | all | deprecated. use auto Specify true or false. If this is false, it will not autosize the window |
| size | all | format is x,y or specify auto if you want to autosize the window |
| resizable | all | Specifies if the window will be resizable or not. |