home *** CD-ROM | disk | FTP | other *** search
- gActionsListWidth = 200;
- gActionsListHeight = 156;
-
- gPopupWidth = zstring_width (zstring: '$$$/Dialogs/PropertiesInspector/Actions/WidestActionString');
-
- gDialogTitle = '$$$/Dialogs/PropertiesInspector/Actions';
- gAddCluster = '$$$/Dialogs/PropertiesInspector/Actions/AddCluster';
- gSelectTrigger = '$$$/Dialogs/PropertiesInspector/Actions/SelectTrigger';
- gSelectAction = '$$$/Dialogs/PropertiesInspector/Actions/SelectAction';
- gAdd = '$$$/Dialogs/PropertiesInspector/Actions/Add';
- gActionsCluster = '$$$/Dialogs/PropertiesInspector/Actions/ActionsCluster';
- gEdit = '$$$/Dialogs/PropertiesInspector/Actions/Edit';
- gDelete = '$$$/Dialogs/PropertiesInspector/Actions/Delete';
- gUp = '$$$/Dialogs/PropertiesInspector/Actions/Up';
- gDown = '$$$/Dialogs/PropertiesInspector/Actions/Down';
-
- dialog(name: gDialogTitle)
- {
- view(align_children: align_left)
- {
- cluster(name: gAddCluster, align_children: align_fill)
- {
- view(align_children: align_row, alignment: align_fill)
- {
- static_text(name: gSelectAction);
- popup(item_id: 'actn', width: gPopupWidth, alignment: align_fill);
- }
- view(align_children: align_row, alignment: align_right)
- {
- button(item_id: 'bAdd', name: gAdd);
- }
- }
- cluster(name: gActionsCluster, align_children: align_left)
- {
- hier_list_box(item_id: 'List', width: gActionsListWidth, height: gActionsListHeight, alignment: align_fill);
- view(align_children: align_row)
- {
- button(item_id: 'bUpx', name: gUp);
- button(item_id: 'bDwn', name: gDown);
- button(item_id: 'bEdt', name: gEdit);
- button(item_id: 'bDel', name: gDelete);
- }
- }
- }
- }
-