home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 August / VPR0308.ISO / ADOBEREADER60 / Installer / Data1.cab / PPKLite.JPN / EXVW / 20351 < prev   
Text File  |  2003-05-21  |  975b  |  30 lines

  1. gListWidth = max_char_width() * 20;
  2. gListHeight = gEditTextHeight * 8;
  3.  
  4. dialog( name: '$$$/Dialogs/DirectoryMgr/Title' )
  5. {
  6.     view()
  7.     {
  8.         view(align_children: align_top, alignment: align_fill)
  9.         {
  10.             picture(item_id: 'icon', width: 20, height: 20);
  11.             static_text(item_id: 'note', alignment: align_fill);
  12.         }
  13.         cluster(item_id: 'DirC', name: '$$$/Dialogs/DirectoryMgr/DirectoryLabel', align_children: align_top)
  14.         {
  15.             list_box( item_id: 'dlst', dheight: gListHeight, dwidth: gListWidth );
  16.  
  17.             view( align_children: align_fill )
  18.             {
  19.                 button( item_id: 'ndir', name: '$$$/Dialogs/DirectoryMgr/New');
  20.                 button( item_id: 'edir', name: '$$$/Dialogs/DirectoryMgr/Edit');
  21.                 button( item_id: 'idir', name: '$$$/Dialogs/DirectoryMgr/Import');
  22.                 button( item_id: 'exdi', name: '$$$/Dialogs/DirectoryMgr/Export');
  23.                 button( item_id: 'ddir', name: '$$$/Dialogs/DirectoryMgr/Delete');
  24.             }
  25.         }
  26.  
  27.         ok_help( ok_name: '$$$/Dialogs/CloseButton' );
  28.     }
  29. }
  30.