Screen Object
Screen — Holds window and dialog information.
Introduction
Holds window and dialog information in the Glade-2 format.
Properties
Table 21. Screen Object Properties
Name | Details | Possible Values | Default Value |
---|
DisplayData | Screen display data in glade-2 format. | Glade document | - |
AllowMultipleInstances | Are multiple instances of the same screen allowed. | True, False | False |
Description | Description to be used in lists. | * | - |
DetailDescription | Detailed description. | * | - |
Modified | Modification date-time stamp in ISO 8601 format. | ccyy-mm-dd Thh:mm:ss | date stamp |
Example
<Object Application="MyOrder" Type="Screen" Name="Order">
<Screen>
<DisplayData>
<glade-interface>
<widget class="GtkWindow" id="Order">
<property name="visible">True</property>
<property name="title" translatable="yes">Function</property>
<property name="type">GTK_WINDOW_TOPLEVEL</property>
<property name="window_position">GTK_WIN_POS_CENTER</property>
<property name="modal">False</property>
<property name="default_width">500</property>
<property name="default_height">400</property>
<property name="resizable">True</property>
<property name="destroy_with_parent">True</property>
<child>
<widget class="GtkVBox" id="vbox1">
<property name="visible">True</property>
<property name="homogeneous">False</property>
<property name="spacing">0</property>
<child>
. . . .
. . . .
. . . .
. . . .
</child>
<child>
<widget class="GtkStatusbar" id="statusbar1">
<property name="visible">True</property>
<property name="has_resize_grip">True</property>
</widget>
<packing>
<property name="padding">5</property>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
</widget>
</child>
</widget>
</glade-interface>
</DisplayData>
<AllowMultipleInstances>True</AllowMultipleInstances>
<Description/>
<DetailDescription/>
<Modified/>
</Screen>
</Object>