| | 14 | <p> |
|---|
| | 15 | A Layout defines the content of a window throught its contained items. A window may have several layouts, of which only one is visible at a time. |
|---|
| | 16 | All layouts should have the same size, as graphical problems might occur otherwise. |
|---|
| | 17 | </p> |
|---|
| | 18 | <h3>Attributes</h3> |
|---|
| | 19 | <p> |
|---|
| | 20 | <b>id</b><br> |
|---|
| | 21 | The ID by which this layout is referred to. Must be set and has to be unique. |
|---|
| | 22 | </p> |
|---|
| | 23 | <p> |
|---|
| | 24 | <b>width</b><br> |
|---|
| | 25 | The initial width of the layout. <i>Required</i> |
|---|
| | 26 | </p> |
|---|
| | 27 | <p> |
|---|
| | 28 | <b>height</b><br> |
|---|
| | 29 | The initial height of the layout. <i>Required</i> |
|---|
| | 30 | </p> |
|---|
| | 31 | <p> |
|---|
| | 32 | <b>minwidth</b><br> |
|---|
| | 33 | Minimum width of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial width (as specified by the width attribute) will be used as minimum width.<br> |
|---|
| | 34 | Default value: -1 |
|---|
| | 35 | </p> |
|---|
| | 36 | <p> |
|---|
| | 37 | <b>minheight</b><br> |
|---|
| | 38 | Minimum height of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial height (as specified by the height attribute) will be used as minimum height.<br> |
|---|
| | 39 | Default value: -1 |
|---|
| | 40 | </p> |
|---|
| | 41 | <p> |
|---|
| | 42 | <b>maxwidth</b><br> |
|---|
| | 43 | Maximum width of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial width (as specified by the width attribute) will be used as maximum width.<br> |
|---|
| | 44 | Default value: -1 |
|---|
| | 45 | </p> |
|---|
| | 46 | <p> |
|---|
| | 47 | <p> |
|---|
| | 48 | <b>maxheight</b><br> |
|---|
| | 49 | Maximum height of the layout. This value is only used when resizing the layout. If this value is set to "-1", the initial height (as specified by the height attribute) will be used as maximum height.<br> |
|---|
| | 50 | Default value: -1 |
|---|
| | 51 | </p> |
|---|
| | 52 | |
|---|