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

  1. gAutoCompleteOptions = max(
  2.     zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteOff'),
  3.     zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteBasic'),
  4.     zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteAdvanced'));
  5.  
  6. dialog(name: '$$$/Dialogs/AFPrefs', margin_height: 0, margin_width: 0)
  7. {
  8.     view(align_children: align_left, dwidth: gPrefsPanelWidth)
  9.     {
  10.         cluster(name: '$$$/Dialogs/AFPrefs/General', dwidth: gPrefsPanelWidth, align_children: align_left)
  11.         {
  12.             check_box(item_id: 'auto', name: '$$$/Dialogs/AFPrefs/Auto');
  13.             check_box(item_id: 'focs', name: '$$$/Dialogs/AFPrefs/Focus');
  14.             check_box(item_id: 'cval', name: '$$$/Dialogs/AFPrefs/CacheValues');        
  15.             check_box(item_id: 'oflw', name: '$$$/Dialogs/AFPrefs/Overflow');
  16.             check_box(item_id: 'appr', name: '$$$/Dialogs/AFPrefs/ShowAppearance');
  17.         }
  18.         cluster(name: '$$$/Dialogs/AFPrefs/FormsDisplay', dwidth: gPrefsPanelWidth)
  19.         {
  20.             view(align_children: align_left)
  21.             {
  22.                 check_box(item_id: 'bgcr', name: '$$$/Dialogs/AFPrefs/ShowBackgroundColor');
  23.                 view(align_children: align_row)
  24.                 {
  25.                     gap();
  26.                     static_text(item_id: 'txtc', name: '$$$/Dialogs/AFPrefs/BackgroundColor');
  27.                     button(item_id: 'col1', picture: true, height: 20, width: 22);
  28.                 }
  29.             }
  30.         }
  31.         cluster(name: '$$$/Dialogs/AFPrefs/AutoComplete', dwidth: gPrefsPanelWidth, align_children: align_left)
  32.         {
  33.             popup(item_id: 'acpu', width: gAutoCompleteOptions + 10);            
  34.             view(align_children: align_left, margin_width: gCheckBoxWidth + gGap, margin_height: 0, alignment: align_fill)
  35.             {    
  36.                 check_box(item_id: 'acc4', name: '$$$/Dialogs/AFPrefs/StoreNumerical');                
  37.             }
  38.             button(item_id: 'acb1', name: '$$$/Dialogs/AFPrefs/EditListButton');
  39.             edit_text(item_id:'acst', height: gStaticTextHeight * 6, alignment: align_fill, multiline: true, readonly: true);
  40.         }
  41.     }
  42. }
  43.