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

  1. gCustomColorWidth=max(
  2.     zstring_width(zstring: '$$$/Prefs/Access/DocColors/Text'),
  3.     zstring_width(zstring: '$$$/Prefs/Access/DocColors/Background'));
  4.  
  5. dialog(name: '$$$/Prefs/Access', margin_height: 0, margin_width: 0, first_tab: 'DocC')
  6. {
  7.     view(dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth, align_children: align_left)
  8.     {
  9.  
  10.         cluster(item_id: 'DClu', name: '$$$/Prefs/Access/DocColor/Title', dwidth: gPrefsPanelWidth)
  11.         {
  12.             check_box(item_id: 'DocC', name: '$$$/Prefs/Access/DocColors/Set', next_tab: 'Wind');
  13.             view (margin_width: 10)
  14.             {
  15.                 radio(item_id: 'Wind', name: '$$$/Prefs/Access/DocColors/Windows', next_tab: 'CusD');
  16.                 radio(item_id: 'CusD', name: '$$$/Prefs/Access/DocColors/Custom', next_tab: 'BaLB');
  17.                 view (margin_width: 14)
  18.                 {
  19.  
  20.                     view(align_children: align_row) 
  21.                     {
  22.                         view(align_children: align_right, width : gCustomColorWidth)
  23.                         {
  24.                             static_text(item_id: 'BaLB', name:'$$$/Prefs/Access/DocColors/Background', next_tab: 'Back');
  25.                         }
  26.                         button(item_id: 'Back', picture: true, height: 20, width: 22, next_tab: 'TxLB');
  27.                     }
  28.                     view(align_children: align_row) 
  29.                     {
  30.                         view(align_children: align_right, width : gCustomColorWidth)
  31.                         {
  32.                             static_text(item_id: 'TxLB', name:'$$$/Prefs/Access/DocColors/Text', next_tab: 'Text');
  33.                         }
  34.                         button(item_id: 'Text', picture: true, height: 20, width: 22, next_tab: 'Over');
  35.                     }
  36.                 }
  37.  
  38.                 check_box(item_id: 'Over', name: '$$$/Prefs/Access/DocColors/TextColorNotSpecified', next_tab:'Line');
  39.                 check_box(item_id: 'Line', name: '$$$/Prefs/Access/DocColors/LineArtNotSpecified', next_tab:'Tabs');
  40.             }
  41.         }
  42.  
  43.         cluster(item_id: 'TabO', name:'$$$/Prefs/Access/TabOrder', dwidth: gPrefsPanelWidth, align_children: align_left)
  44.         {
  45.             check_box(item_id: 'Tabs', name: '$$$/Prefs/Access/TabOrder/Struct', next_tab: 'Hint');
  46.         }
  47.  
  48.         cluster(item_id: 'DClu', name:'$$$/Prefs/Access/OtherHints', dwidth: gPrefsPanelWidth, align_children: align_left)
  49.         {
  50.             edit_text(item_id: 'Hint', height: gStaticTextHeight*4, alignment: align_fill, multiline: true, readonly: true);
  51.         }
  52.  
  53.     }
  54. }
  55.