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

  1. gDialogWidth = 32 + 20 + max( 300,
  2.     zstring_width(zstring: '$$$/Dialogs/AddCredential/EnrollWithCA/Title'),
  3.     zstring_width(zstring: '$$$/Dialogs/AddCredential/CreateSelfSign/Title'),
  4.     zstring_width(zstring: '$$$/Dialogs/AddCredential/Import/Title') );
  5.  
  6. dialog( name: '$$$/Dialogs/AddCredential/Title', width: gDialogWidth )
  7. {
  8.     view( align_children: align_left )
  9.     {
  10.         static_text(item_id: 'reas', alignment: align_fill);
  11.         static_text(item_id: 'rea1', alignment: align_fill);
  12.  
  13.         cluster( name: '$$$/Dialogs/AddCredential/EnrollWithCA/Cluster', align_children: align_top, alignment: align_fill )
  14.         {
  15.             button( item_id: '_ca_', picture: true, height: 40, width: 40 );
  16.             view( align_children: align_left, alignment: align_fill )
  17.             {
  18.                 static_text( name: '$$$/Dialogs/AddCredential/EnrollWithCA/Title', font_id: 5, alignment: align_fill );
  19.                 static_text( item_id: 'not1', name: '$$$/Dialogs/AddCredential/EnrollWithCA/Note', alignment: align_fill );
  20.             }
  21.         }
  22.  
  23.         cluster( name: '$$$/Dialogs/AddCredential/CreateSelfSign/Cluster', align_children: align_top, alignment: align_fill )
  24.         {
  25.             button( item_id: '_ss_', picture: true, height: 40, width: 40 );
  26.             view( align_children: align_left, alignment: align_fill )
  27.             {
  28.                 static_text( name: '$$$/Dialogs/AddCredential/CreateSelfSign/Title', font_id: 5, alignment: align_fill );
  29.                 static_text( item_id: 'not2', name: '$$$/Dialogs/AddCredential/CreateSelfSign/Note', alignment: align_fill );
  30.             }
  31.         }
  32.  
  33.         cluster( name: '$$$/Dialogs/AddCredential/Import/Cluster', align_children: align_top, alignment: align_fill )
  34.         {
  35.             button( item_id: '_im_', picture: true, height: 40, width: 40 );
  36.             view( align_children: align_left, alignment: align_fill )
  37.             {
  38.                 static_text( name: '$$$/Dialogs/AddCredential/Import/Title', font_id: 5, alignment: align_fill );
  39.             }
  40.         }
  41.  
  42.         ok_cancel_help( cancel_name: '$$$/Dialogs/CloseButton' );
  43.     }
  44. }