...
<panel name="..." modes="..." > | |
<class > ... </class> | Specifies the window class of the window instance contained in the panel. |
<datasource > ... </datasource> | Optional. Specifies the data source for the window instance contained in the panel (absolute database path). No tag or missing tag indicates a window not directly tied to a database path/node. |
<bounds > … </bounds> | Defines the position of the panel relative to the desktop. Do not use if <anchored> is defined. |
<anchored > | Defines the position as anchored to other desktop panels. Do not use if <bounds> is defined. |
<left > | |
<parent > ... </parent> | The name of the panel being anchored to |
<anchor > ... </anchor> | The edge used from the parent panel: "left", "right", "right" or "bottom" |
<offset > ... </offset> | Two numbers separated by a comma, defining an An offset to the calculated anchor position. If a percentage is specified, then a value will be calculated from the width/height of the parent panel or desktop. If a number is specified, in pixelsthen a fixed distance in display units will be used (horizontal for left/right anchors and vertical for top/bottom anchors). |
</left> | |
<top > ... </top> | Contents similar to the <left> tag |
<right > ... </right> | Contents similar to the <left> tag |
<bottom > ... </bottom> | Contents similar to the <left> tag |
<size > | Defines the size of panels anchored on only one side |
<width > ... </width> | The width of the control, in pixelsdisplay units |
<height > ... </height> | The height of the control, in pixelsdisplay units |
</size> | |
</anchored> | |
<dynamic /> | If defined, the encapsulated windowclass determines whether the panel can be closed, moved or resized. |
<locked /> | If defined with the dynamic tag, the panel can not be closed, moved or resized; until the panel is unlocked via the radial menu. |
<disabled /> | If defined with the disabled tag, the panel can not be interacted with using the mouse or keyboard. All interface events will be ignored. |
</panel> |
...