home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 August / VPR0308.ISO / ADOBEREADER60 / Installer / Data1.cab / DigSig.api / EXVW / 128 next >
Text File  |  2003-05-15  |  2KB  |  55 lines

  1. gIndentWidth = 1 * max_char_width();
  2. gPopupWidth = 13 * max_char_width();
  3.  
  4. dialog(name: '$$$/Dialogs/DigSigPrefs', target_id: 'Hdlr', margin_height: 0, margin_width: 0)
  5. {
  6.     view(align_children: align_left)
  7.     {
  8.  
  9.         cluster(name: '$$$/Dialogs/DigSigPrefs/SigAppearance',
  10.                     align_children: align_top, dwidth: gPrefsPanelWidth )
  11.         {
  12.             list_box(item_id: 'clst', alignment: align_fill, dheight: 130);
  13.             view( align_children: align_fill )
  14.             {
  15.                 button(item_id: 'newb', name: '$$$/Dialogs/DigSigPrefs/NewAppearanceButton');
  16.                 button(item_id: 'edit', name: '$$$/Dialogs/DigSigPrefs/EditAppearanceButton');
  17.                 button(item_id: 'copb', name: '$$$/Dialogs/DigSigPrefs/CopyAppearanceButton');
  18.                 button(item_id: 'delb', name: '$$$/Dialogs/DigSigPrefs/DeleteAppearanceButton');
  19.             }
  20.         }
  21.  
  22.         cluster(name: '$$$/Dialogs/DigSigPrefs/SignCluster',
  23.             dwidth: gPrefsPanelWidth, align_children: align_row)
  24.         {
  25.             static_text(name: '$$$/Dialogs/DigSigPrefs/Handler');    
  26.             popup(item_id: 'Hdlr', width: gPopupWidth);
  27.         }
  28.  
  29.         cluster(name: '$$$/Dialogs/DigSigPrefs/VerifyCluster',
  30.             dwidth: gPrefsPanelWidth, align_children: align_left)
  31.         {
  32.             check_box(item_id: 'aVld', name: '$$$/Dialogs/DigSigPrefs/AutoValidate');
  33.             static_text(item_id: 'ahdT', name: '$$$/Dialogs/DigSigPrefs/AltHandlerTitle' );
  34.             view(align_children: align_top, alignment: align_fill)
  35.             {
  36.                 gap( width: gIndentWidth );
  37.                 view(align_children: align_left)
  38.                 {
  39.                     radio(item_id: 'ahr0', name: '$$$/Dialogs/DigSigPrefs/AltHandlerRadio0');
  40.                     radio(item_id: 'ahr1', name: '$$$/Dialogs/DigSigPrefs/AltHandlerRadio1');
  41.                     radio(item_id: 'ahr2', name: '$$$/Dialogs/DigSigPrefs/AltHandlerRadio2');
  42.                 }
  43.             }
  44.             view(align_children: align_row)
  45.             {
  46.                 static_text(item_id: 'ahdT', name: '$$$/Dialogs/DigSigPrefs/AltHandlerNote' );
  47.                 popup(item_id: 'ahdP', width: gPopupWidth);
  48.             }
  49.         }
  50.  
  51.         button(item_id: 'advB', name: '$$$/Dialogs/DigSigPrefs/AdvancedButton' );
  52.  
  53.     }
  54. }
  55.