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

  1. gButtonLabelWidth = max(
  2.     zstring_width(zstring: '$$$avAllToolButtonLabels'),
  3.     zstring_width(zstring: '$$$avDefaultToolButtonLabels'),
  4.     zstring_width(zstring: '$$$avNoToolButtonLabels'));
  5.  
  6. gBookmarkMaxWidth=max(
  7.     zstring_width(zstring: '$$$/Prefs/Options/BookmarkFont'),
  8.     zstring_width(zstring: '$$$/Prefs/Options/BookmarkFontSize'));
  9.  
  10. gAlignWidth=max(
  11.     zstring_width(zstring: '$$$/Prefs/Options/DisplayButtonLabels'),
  12.     zstring_width(zstring: '$$$/Prefs/Options/MaxDocsInMRU'),
  13.     zstring_width(zstring: '$$$/Prefs/Options/Selection/TextHalo'),
  14.     zstring_width(zstring: '$$$/Prefs/Options/Selection/ColumnHalo'));
  15.  
  16. dialog(name: '$$$/Prefs/Options', margin_height: 0, margin_width: 0)
  17. {
  18.     view(align_children: align_left)
  19.     {
  20.         cluster(name: '$$$/Prefs/Options/Selection', align_children: align_left, dwidth: gPrefsPanelWidth)
  21.         {
  22.             view(align_children: align_left)
  23.             {
  24.                 check_box(item_id: 'hand', name: '$$$/Prefs/Options/Selection/HandSelects');
  25.                 view(align_children: align_row)
  26.                 {
  27.                     static_text(name: '$$$/Prefs/Options/Selection/TextHalo',
  28.                                 width: gAlignWidth, alignment: align_right);
  29.                     edit_text(item_id: 'thlo', width: 5 * max_digit_width(), numeric: true, SpinEdit: true);
  30.                 }
  31.                 view(align_children: align_row)
  32.                 {
  33.                     static_text(name: '$$$/Prefs/Options/Selection/ColumnHalo',
  34.                                 width: gAlignWidth, alignment: align_right);
  35.                     edit_text(item_id: 'chlo', width: 5 * max_digit_width(), numeric: true, SpinEdit: true);
  36.                 }
  37.             }
  38.         }
  39.         cluster(name: '$$$/Prefs/Options/Other', dwidth: gPrefsPanelWidth, align_children: align_row)
  40.         {
  41.             view(align_children: align_left, alignment: align_fill)
  42.             { 
  43.                 view(align_children: align_row)
  44.                 {
  45.                     static_text(name: '$$$/Prefs/Options/DisplayButtonLabels',
  46.                                 width: gAlignWidth, alignment: align_right);
  47.                     popup(item_id: 'BtnL', width: gButtonLabelWidth);
  48.                 }
  49.                 view(align_children: align_row)
  50.                 {
  51.                     static_text(name: '$$$/Prefs/Options/MaxDocsInMRU',
  52.                                 width: gAlignWidth, alignment: align_right);
  53.                     edit_text(item_id: 'Mrul', SpinEdit: true, width: max_digit_width() * 6);
  54.                 }
  55.                 view(align_children: align_left, alignment: align_fill)
  56.                 {
  57.                     check_box(item_id: 'XDoc', name: '$$$/Prefs/Options/OpenCrossDocLinksInSameWindow');
  58.                     check_box(item_id: 'opti', name: '$$$/Prefs/Options/SaveAsOptimized');
  59.                     check_box(item_id: 'PSXO', name: '$$$/Prefs/Options/PostScriptXObjs');
  60.                     check_box(item_id: 'ePPr', name: '$$$/Prefs/Options/EnablePrintPreview');
  61.                     check_box(item_id: 'hkey', name: '$$$/Prefs/Options/ToolHotkeys');
  62.                     view(align_children: align_top, alignment: align_fill)
  63.                     {
  64.                         check_box(item_id: 'EdWn', name: '$$$/Prefs/Options/SkipEditingWarnings');
  65.                         gap(alignment: align_fill);
  66.                         button(item_id: 'Rest', name: '$$$/Prefs/Options/ResetWarnings');
  67.                     }
  68.                     gap();
  69.                 }
  70.             }
  71.         }
  72.     }
  73. }
  74.