home *** CD-ROM | disk | FTP | other *** search
- <panel>
- <!-- arrange items horizontally, right aligned -->
- <layout class="arrange_horizontal_attachment" alignment="right" offset="0"/>
-
- <!-- stick buttons to bottom of box -->
- <layout class="stick_to_sides_attachment" alignment="bottom" inset="0" layout_children="true" />
-
- <!-- fit box to the height of the biggest button -->
- <layout class="fit_children_attachment" alignment="vertical" offset="0"/>
-
- <widget class="action_button_blue" id="yes" text="Yes" hidn="true">
- <layout class="autosize_attachment" />
-
- <!-- we need to specify that this is a dialog event (dialog_event=true) -->
- <record id="click_event">
- <flags id="event_id" value="yes" />
- <flags id="dialog_event" value="true" />
- </record>
- </widget>
-
- <widget class="action_button_blue" id="ok" text="OK" hidn="true">
- <layout class="autosize_attachment" />
-
- <!-- we need to specify that this is a dialog event (dialog_event=true) -->
- <record id="click_event">
- <flags id="event_id" value="ok" />
- <flags id="dialog_event" value="true" />
- </record>
- </widget>
-
- <widget class="action_button_blue" id="no" text="No" hidn="true">
- <layout class="autosize_attachment" />
-
- <!-- we need to specify that this is a dialog event (dialog_event=true) -->
- <record id="click_event">
- <flags id="event_id" value="no" />
- <flags id="dialog_event" value="true" />
- </record>
-
- </widget>
-
- <!-- buttons -->
- <widget class="action_button_blue" id="canc" text="Cancel" hidn="true">
- <layout class="autosize_attachment" />
-
- <!-- we need to specify that this is a dialog event (dialog_event=true) -->
- <record id="click_event">
- <flags id="event_id" value="cncl" />
- <flags id="dialog_event" value="true" />
- </record>
-
- </widget>
-
-
-
- </panel>