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

  1. gEditTextHeight = 15;
  2. gMaxStaticWidth = max(
  3.     zstring_width(zstring: '$$$/Dialogs/ProPrintSet/Options/Color'),
  4.     zstring_width(zstring: '$$$/Dialogs/ProPrintSet/Options/Screening'),
  5.     zstring_width(zstring: '$$$/Dialogs/PrintSet/HighEnd/Profile'),
  6.     zstring_width(zstring: '$$$avPrColorProfileLabel'));
  7. gMaxPlateControlWidth = max(
  8.     zstring_width(zstring: '$$$avEmitAllPlates'),
  9.     zstring_width(zstring: '$$$avConvertAllSpotsToProcess'),
  10.     zstring_width(zstring: '$$$avCustom'));
  11. gMaxFlipWidth = max(
  12.     zstring_width(zstring: '$$$avVertical'),
  13.     zstring_width(zstring: '$$$avHorizontal'),
  14.     zstring_width(zstring: '$$$avHandV'));
  15. dialog(name: '$$$/Dialogs/PrintSet', margin_height: 0, margin_width: 0)
  16. {
  17.     cluster(name: '$$$/Dialogs/ProPrintSet/Color/ClusterName', align_children: align_left, dwidth: gAdPrintPanelWidth, dheight: gAdPrintPanelHeight)
  18.     {
  19.         view(align_children: align_left)
  20.         {
  21.             gap(width: max_char_width()*1);
  22.             group()
  23.             {
  24.                 view(align_children: align_row, margin_height: 0, margin_width: 0)
  25.                 {
  26.                     static_text(item_id: 'lwha', name: '$$$/Dialogs/ProPrintSet/Options/Color',
  27.                         width: gMaxStaticWidth, alignment: align_right);
  28.                     popup(item_id: 'what', width: max_char_width() * 14);
  29.                 }
  30.                 view(align_children: align_row, margin_height: 0, margin_width: 0)
  31.                 {
  32.                     static_text(item_id: 'lscr', name: '$$$/Dialogs/ProPrintSet/Options/Screening',
  33.                         width: gMaxStaticWidth, alignment: align_right);
  34.                     popup(item_id: 'scrs', width: max_char_width()*14);
  35.                 }
  36.                 view(align_children: align_row, margin_height: 0, margin_width: 0)
  37.                 {
  38.                     static_text(item_id: 'lfli', name: '$$$/Dialogs/ProPrint/Flip',
  39.                         width: gMaxStaticWidth, alignment: align_right);
  40.                     popup(item_id: 'flip', width: gMaxFlipWidth);
  41.                     check_box(item_id: 'nega', name: '$$$/Dialogs/ProPrint/Negative');
  42.                 }
  43.                 view(align_children: align_row, margin_height: 0, margin_width: 0)
  44.                 {
  45.                     static_text(item_id: 'prfn', name: '$$$/Dialogs/PrintSet/HighEnd/Profile',
  46.                         width: gMaxStaticWidth, alignment: align_right);
  47.                     popup(item_id: 'prfo', width: max_char_width() * 20);
  48.                 }
  49.             }
  50.             check_box(item_id: 'chkA', name: '$$$/Dialogs/PrintSet/Options/WorkingSpaces');
  51.             check_box(item_id: 'chkD', name: '$$$/Dialogs/PrintSet/Options/SoftProof');
  52.             check_box(item_id: 'chk9', name: '$$$/Dialogs/PrintSet/Options/EmulateOverprint');
  53.             check_box(item_id: 'chkJ', name: '$$$/Dialogs/ProPrint/JP2KRes', height: gEditTextHeight);
  54.             check_box(item_id: 'chkT', name: '$$$/Dialogs/ProPrint/TrapAnnots', height: gEditTextHeight);
  55.  
  56.         }
  57.         cluster(name: '$$$/Dialogs/ProPrintSet/Inks/ClusterName')
  58.         {
  59.             view(align_children: align_row)
  60.             {
  61.                 static_text(item_id: 'lplc', name: '$$$/Dialogs/ProPrintSet/Options/PlateColor');
  62.                 popup(item_id: 'plct', width: gMaxPlateControlWidth);
  63.             }
  64.             view(align_children: align_left)
  65.             {                
  66.                 list_box(item_id: 'inks', width: max_char_width()*25, height: gStaticTextHeight*6);
  67.             }            
  68.         }
  69.         view(align_children: align_center, alignment: align_fill)
  70.         {
  71.             static_text( item_id: 'desc', height: gEditTextHeight*5, alignment: align_fill,    multiline: true);
  72.         }
  73.     }    
  74. }
  75.