home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 August / VPR0308.ISO / ADOBEREADER60 / Installer / Data1.cab / RdLang32.JPN / EXVW / 10146 < prev    next >
Text File  |  2003-05-22  |  2KB  |  55 lines

  1. gActionsListWidth = 200;
  2. gActionsListHeight = 156;
  3. gPopupWidth = zstring_width (zstring: '$$$/Dialogs/PropertiesInspector/Actions/WidestActionString');
  4.  
  5. gDialogTitle = '$$$/Dialogs/PropertiesInspector/Actions';
  6. gAddCluster = '$$$/Dialogs/PropertiesInspector/Actions/AddCluster';
  7. gSelectTrigger = '$$$/Dialogs/PropertiesInspector/Actions/SelectTrigger';
  8. gSelectAction = '$$$/Dialogs/PropertiesInspector/Actions/SelectAction';
  9. gAdd = '$$$/Dialogs/PropertiesInspector/Actions/Add';
  10. gActionsCluster = '$$$/Dialogs/PropertiesInspector/Actions/ActionsCluster';
  11. gEdit = '$$$/Dialogs/PropertiesInspector/Actions/Edit';
  12. gDelete = '$$$/Dialogs/PropertiesInspector/Actions/Delete';
  13. gUp = '$$$/Dialogs/PropertiesInspector/Actions/Up';
  14. gDown = '$$$/Dialogs/PropertiesInspector/Actions/Down';
  15. gClose = '$$$/Dialogs/PropertiesInspector/Actions/Close';
  16.  
  17. gLabelWidth = max(
  18.     zstring_width(zstring: gSelectTrigger),
  19.     zstring_width(zstring: gSelectAction));
  20.  
  21. dialog(name: gDialogTitle, first_tab: 'trlb')
  22. {
  23.     view(align_children: align_left)
  24.     {
  25.         cluster(name: gAddCluster, align_children: align_fill)
  26.         {
  27.             view(align_children: align_row)
  28.             {
  29.                 static_text(item_id: 'trlb', name: gSelectTrigger, width: gLabelWidth, alignment: align_right, next_tab: 'trig');
  30.                 popup(item_id: 'trig', width: gPopupWidth, alignment: align_fill, next_tab: 'aclb');
  31.             }
  32.             view(align_children: align_row)
  33.             {
  34.                 static_text(item_id: 'aclb', name: gSelectAction, width: gLabelWidth, alignment: align_right, next_tab: 'actn');
  35.                 popup(item_id: 'actn', width: gPopupWidth, alignment: align_fill, next_tab: 'bAdd');
  36.             }
  37.             view(align_children: align_right, alignment: align_right)
  38.             {
  39.                 button(item_id: 'bAdd', name: gAdd, next_tab: 'List');
  40.             }
  41.         }
  42.         cluster(name: gActionsCluster,  align_children: align_left)
  43.         {
  44.             hier_list_box(item_id: 'List', width: gActionsListWidth, height: gActionsListHeight, alignment: align_fill, next_tab: 'bUpx');
  45.             view(align_children: align_row)
  46.             {
  47.                 button(item_id: 'bUpx', name: gUp, next_tab: 'bDwn');
  48.                 button(item_id: 'bDwn', name: gDown, next_tab: 'bEdt');
  49.                 button(item_id: 'bEdt', name: gEdit, next_tab: 'bDel');
  50.                 button(item_id: 'bDel', name: gDelete);
  51.             }
  52.         }
  53.     }
  54. }
  55.