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

  1. gMaxZoomWidth=max(
  2.     zstring_width(zstring: '$$$avFixedZoom'),
  3.     zstring_width(zstring: '$$$avFitView'),
  4.     zstring_width(zstring: '$$$avFitPage'),
  5.     zstring_width(zstring: '$$$avFitHeight'),
  6.     zstring_width(zstring: '$$$avFitWidth'),
  7.     zstring_width(zstring: '$$$avFitVisible'),
  8.     zstring_width(zstring: '$$$avInheritZoom'));
  9.  
  10. gLabelAll = max(
  11.     zstring_width(zstring: '$$$/Dialogs/GotoView/Zoom'),
  12.     zstring_width(zstring: '$$$/Dialogs/GotoView/Page'),
  13.     zstring_width(zstring: '$$$/Dialogs/GotoView/DestinationName'));
  14.  
  15. gPageWidth = (max_digit_width() * 8);
  16.  
  17. dialog(name: '$$$/Dialogs/GotoView/Title', first_tab: 'expl')
  18. {
  19.     view(align_children: align_left)
  20.     {
  21.         cluster(item_id: 'cls2', name: '$$$/Dialogs/GotoView/Options', align_children: align_left, alignment: align_fill)
  22.         {
  23.             radio(item_id: 'expl', name: '$$$/Dialogs/GotoView/Explicit', next_tab: 'rNam');
  24.             group()
  25.             {
  26.                 view(align_children: align_row)
  27.                 {
  28.                     gap(width: max_char_width() * 2);
  29.                     static_text(item_id: 'lPag', name: '$$$/Dialogs/GotoView/Page', alignment: align_right, width: gLabelAll);
  30.                     edit_text(item_id: 'page', width: max_char_width() * 8, next_tab: 'zoom');
  31.                     static_text(item_id: 'sPgs', name: '$$$/Dialogs/CreateLink/NumOfPages', width: max_char_width()*8);
  32.                 }
  33.                 view(align_children: align_row)
  34.                 {
  35.                     gap(width: max_char_width() * 2);
  36.                     static_text(item_id: 'lZoo', name: '$$$/Dialogs/GotoView/Zoom', alignment: align_right, width: gLabelAll);
  37.                     popup(item_id: 'zoom', width: gMaxZoomWidth, next_tab: 'bNam');
  38.                 }
  39.             }
  40.             radio(item_id: 'rNam', name: '$$$/Dialogs/GotoView/Named', next_tab: 'page');
  41.             view(align_children: align_row)
  42.             {
  43.                 gap(width: max_char_width() * 2);
  44.                 static_text(item_id: 'lNam', name: '$$$/Dialogs/GotoView/DestinationName', alignment: align_right, width: gLabelAll);
  45.                 static_text(item_id: 'sNam', name: '$$$/Dialogs/GotoView/DestNotSpecified', width: max_char_width() * 12);
  46.                 button(item_id: 'bNam', name: '$$$/Dialogs/GotoView/ChooseName');
  47.             }
  48.         }
  49.         ok_cancel();
  50.     }
  51. }
  52.