home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2005 May / CyberMycha 05-2005 (Poland).bin / Immortal / cotndemo.exe / AdobeInstall.exe / Reader / plug_ins / PPKLite.api / EXVW / 20025 < prev    next >
Encoding:
Text File  |  2002-08-12  |  972 b   |  23 lines

  1. gDialogWidth = max(    350,
  2.                     zstring_width(zstring: '$$$/Dialogs/FDFOpen'),
  3.                     zstring_width(zstring: '$$$/Dialogs/FDFOpen/Export/Button') );
  4. gExportButtonWidth = 10 + max(
  5.     zstring_width(zstring: '$$$IDS_BUTTON_FDFOpenExportEMail'),
  6.     zstring_width(zstring: '$$$IDS_BUTTON_FDFOpenExportWeb') );
  7.  
  8. dialog(name: '$$$/Dialogs/FDFOpen', target_id: 'name' )
  9. {
  10.     group()
  11.     {
  12.         static_text(item_id: 'note', name: '$$$/Dialogs/FDFOpen/Note', width: gDialogWidth );
  13.         cluster(name: '$$$/Dialogs/FDFOpen/Export/ClusterName', align_children: align_left, alignment: align_fill )
  14.         {
  15.             static_text(item_id: 'expT', name: '$$$/Dialogs/FDFOpen/Export/Note', alignment: align_fill );
  16.             button(item_id: 'expB', name: '$$$/Dialogs/FDFOpen/Export/Button', width: gExportButtonWidth, alignment: align_center );
  17.         }
  18.         view( item_id: 'grp2', align_children: align_distribute, alignment: align_center )
  19.         {
  20.             ok(ok_name: '$$$/Dialogs/FDFOpen/OkayButton');
  21.         }
  22.     }
  23. }