home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2005 May / CyberMycha 05-2005 (Poland).bin / Immortal / cotndemo.exe / AdobeInstall.exe / Reader / AcroRd32.exe / EXVW / 10025 < prev    next >
Encoding:
Text File  |  2002-09-17  |  1.8 KB  |  39 lines

  1. gCurrentModeWidth = max(
  2.     zstring_width(zstring: '$$$avYes'),
  3.     zstring_width(zstring: '$$$avNo'));
  4.  
  5. dialog(name: '$$$/Prefs/Options', margin_height: 0, margin_width: 0)
  6. {
  7.     view(align_children: align_left)
  8.     {
  9.         cluster(name: '$$$/Prefs/Options/Browser', dwidth: gPrefsPanelWidth, align_children: align_left)
  10.         {
  11.             check_box(item_id: 'lame', name: '$$$/Prefs/Options/BrowserIntegration');
  12.             check_box(item_id: 'BrCh', name: '$$$/Prefs/Options/BrowserCheck');
  13.             check_box(item_id: 'ByRg', name: '$$$/Prefs/Options/ByteRangeRequests');
  14.             check_box(item_id: 'BkDl', name: '$$$/Prefs/Options/AllowBackgroundDownloading');
  15.         }
  16.         cluster(name: '$$$/Prefs/Options/Startup', dwidth: gPrefsPanelWidth, align_children: align_left)
  17.         {
  18.             check_box(item_id: 'Spla', name: '$$$/Prefs/Options/DisplaySplashScreenAtStartup');
  19.             check_box(item_id: 'Cert', name: '$$$/Prefs/Options/CertifiedPluginsOnly');
  20.             view(align_children: align_row)
  21.             {
  22.                 static_text(name: '$$$/Prefs/Options/InCertifiedMode');
  23.                 static_text(item_id: 'Mode', width: gCurrentModeWidth);
  24.             }
  25.         }
  26.         cluster(name: '$$$/Prefs/Options/Other', dwidth: gPrefsPanelWidth, align_children: align_left)
  27.         {
  28.             check_box(item_id: 'Cach', name: '$$$/Prefs/Options/UsePageCache');
  29.             check_box(item_id: 'LgPN', name: '$$$/Prefs/Options/UseLogicalPageNumbers');
  30.             check_box(item_id: 'FlLk', name: '$$$/Prefs/Options/AllowFileOpenLinks');
  31.             check_box(item_id: 'XDoc', name: '$$$/Prefs/Options/OpenCrossDocLinksInSameWindow');
  32.             check_box(item_id: 'EdWn', name: '$$$/Prefs/Options/SkipEditingWarnings');
  33.             check_box(item_id: 'opti', name: '$$$/Prefs/Options/SaveAsOptimized');
  34.             check_box(item_id: 'docR', name: '$$$/Prefs/Options/ShowDocRightsDialog');
  35.             button(item_id: 'Rest', name: '$$$/Prefs/Options/ResetWarnings');
  36.         }
  37.     }
  38. }
  39.