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

  1. gMaxStaticWidth = max(
  2.     zstring_width(zstring: '$$$/Dialogs/PageNumbering/Numbering/Style'),
  3.     zstring_width(zstring: '$$$/Dialogs/PageNumbering/Numbering/Prefix'),
  4.     zstring_width(zstring: '$$$/Dialogs/PageNumbering/Numbering/Start'));
  5. gOfWidth = max_digit_width() * 10 + 4 * max_char_width();
  6.  
  7. dialog(name: '$$$/Dialogs/PageNumbering', target_id: 'all ', first_tab: 'all ')
  8. {
  9.     group()
  10.     {
  11.         group(alignment: align_fill)
  12.         {
  13.             cluster(name: '$$$/Dialogs/PageNumbering/Pages/ClusterName', align_children: align_distribute,
  14.                 alignment: align_fill)
  15.             {
  16.                 group()
  17.                 {
  18.                     radio(item_id: 'all ', group_id: 'rgrp', name: '$$$/Dialogs/PageNumbering/Pages/All', next_tab: 'slct');
  19.                     radio(item_id: 'slct', group_id: 'rgrp', name: '$$$/Dialogs/PageNumbering/Pages/Selected', next_tab: 'from');
  20.                     view(align_children: align_row)
  21.                     {
  22.                         radio(item_id: 'from', group_id: 'rgrp', name: '$$$/Dialogs/PageNumbering/Pages/From', next_tab: 'FrPg');
  23.                         edit_text(item_id: 'FrPg', width: max_char_width() * 4, next_tab: 'to  ');
  24.                         static_text(item_id: 'to  ', name: '$$$/Dialogs/PageNumbering/Pages/To', next_tab: 'ToPg');
  25.                         edit_text(item_id: 'ToPg', width: max_char_width() * 4, next_tab: 'NumP');
  26.                         static_text(item_id: 'NumP', width: gOfWidth, next_tab: 'begi');            
  27.                     }
  28.                 }
  29.             }
  30.             cluster(name: '$$$/Dialogs/PageNumbering/Numbering/ClusterName', align_children: align_distribute,
  31.                 alignment: align_fill)
  32.             {
  33.                 group()
  34.                 {
  35.                     radio(item_id: 'begi', group_id: 'bege',name: '$$$/Dialogs/PageNumbering/Numbering/BeginNewSection',
  36.                         next_tab: 'merg');
  37.                     view(align_children: align_top)
  38.                     {
  39.                         gap(width: max_char_width()*1);
  40.                         group()
  41.                         {
  42.                             view(align_children: align_row)
  43.                             {
  44.                                 static_text(item_id: 'Sty1', name: '$$$/Dialogs/PageNumbering/Numbering/Style',
  45.                                     width: gMaxStaticWidth, alignment: align_right, next_tab: 'Sty2');            
  46.                                 popup(item_id: 'Sty2', width: max_char_width() * 12, next_tab: 'Pre1');
  47.                             }        
  48.                             view(align_children: align_row)
  49.                             {
  50.                                 static_text(item_id: 'Pre1', name: '$$$/Dialogs/PageNumbering/Numbering/Prefix',
  51.                                     width: gMaxStaticWidth, alignment: align_right, next_tab: 'Pre2');            
  52.                                 edit_text(item_id: 'Pre2', width: max_char_width() * 12, next_tab: 'Sta1');
  53.                             }        
  54.                             view(align_children: align_row)
  55.                             {
  56.                                 static_text(item_id: 'Sta1', name: '$$$/Dialogs/PageNumbering/Numbering/Start',
  57.                                     width: gMaxStaticWidth, alignment: align_right, next_tab: 'Sta2');
  58.                                 edit_text(item_id: 'Sta2', width: max_char_width() * 12);
  59.                             }        
  60.                         }    
  61.                     }
  62.                     radio(item_id: 'merg', group_id: 'bege', name: '$$$/Dialogs/PageNumbering/Numbering/MergeWithPrevSection',
  63.                         next_tab: 'Sty1');
  64.                 }
  65.             }
  66.             view(align_children: align_row)
  67.             {
  68.                 static_text(item_id: 'Sam1', name: '$$$/Dialogs/PageNumbering/SampleLabel');
  69.                 static_text(item_id: 'Sam2', width: max_char_width() * 16);
  70.             }
  71.         }
  72.         ok_cancel();
  73.     }
  74. }
  75.