home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd2.bin / program / reader / Data1.cab / eBook.CZE / EXVW / 10005 < prev    next >
Text File  |  2003-07-19  |  1KB  |  35 lines

  1. gDialogWidth = 500;
  2. gProgressBarWidth = 261;
  3. gCoverImageWidth = 100;
  4. gStaticTextAvailWidth = gDialogWidth - gCoverImageWidth - 30;
  5.  
  6. dialog(name: '$$$/Dialogs/EBPDialogCopyToHH', align_children: align_left, width: gDialogWidth)
  7. {
  8.     view(align_children: align_left )
  9.     {
  10.             view(align_children: align_row)
  11.             {
  12.                 static_text(name:'$$$/Dialogs/EBPDialogCopyToHH/SelectUser', alignment: align_left);
  13.                 popup(item_id: 'Usrs', width: max_char_width() * 6, alignment: align_left);
  14.                 button(item_id: 'Pref', name: '$$$/Dialogs/EBPDialogCopyToHH/Preferences');
  15.             }               
  16.  
  17.             gap(height: 10);
  18.  
  19.             static_text(item_id: 'Inst', width: gStaticTextAvailWidth, height: 110, alignment: align_left);
  20.  
  21.             gap(height: 5);
  22.  
  23.             view(align_children: align_row)
  24.             {
  25.                 static_text(item_id: 'Prog', alignment: align_left, width: gDialogWidth - (max_char_width() * 10) - 10);
  26.                 static_text(item_id: 'XofY', alignment: align_left, width: max_char_width() * 10);
  27.             }
  28.             
  29.             gap(height: 10);
  30.             progress_bar(item_id: 'Pbar', width: gProgressBarWidth );
  31.             ok_cancel();
  32.     }
  33. }
  34.  
  35.