home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September (Special) / Chip-Special_2004-09_Digitalni-Hudba.bin / servis / reader / Data1.cab / updater.CZE / EXVW / 6000 next >
Text File  |  2003-07-19  |  2KB  |  38 lines

  1. gUpdateWidth=max(
  2.     zstring_width(zstring: '$$$IDS_PREFS_PANEL_UPDATEMONTHLY'),
  3.     zstring_width(zstring: '$$$IDS_PREFS_PANEL_UPDATEMANUALLY'),
  4.     zstring_width(zstring: '$$$IDS_UPDATE_ACROBAT_NOW'),
  5.     zstring_width(zstring: '$$$IDS_UPDATE_READER_NOW'),
  6.     zstring_width(zstring: '$$$/Prefs/Update/ViewNotifications'));
  7.  
  8. gLastCheckedWidth=zstring_width(zstring: '$$$/Prefs/Update/UpdatesLastChecked');
  9.  
  10. gFreqWidth = zstring_width(zstring: '$$$/Prefs/Update/Frequency');
  11.  
  12. dialog(name: '$$$/Prefs/Update', margin_height: 0, margin_width: 0)
  13. {
  14.     cluster(name: '$$$/Prefs/Update', dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth, align_children: align_left)
  15.     {
  16.         static_text(item_id: 'text', alignment: align_fill, height: gStaticTextHeight*5);
  17.         view(align_children: align_row, alignment: align_fill)
  18.         {
  19.             static_text(name: '$$$/Prefs/Update/UpdatesLastChecked', width: gLastCheckedWidth, item_id: 'LstC', alignment: align_right);
  20.             static_text(item_id: 'ckAc', alignment: align_fill);
  21.         }
  22.         gap( height: gStaticTextHeight );
  23.         view(alignment: align_center, align_children: align_right)
  24.         {
  25.             view(align_children: align_row)
  26.             {
  27.                 static_text(name: '$$$/Prefs/Update/Frequency', alignment: align_right);
  28.                 popup(item_id: 'Freq', width: gUpdateWidth+gButtonSpace-gPopupPad-gSpinnerWidth);
  29.             }
  30.             button(item_id: 'UpAc',  width: gUpdateWidth);
  31.             button(item_id: 'Noti', name: '$$$/Prefs/Update/ViewNotifications', width: gUpdateWidth);
  32.         }
  33.         gap(height: gStaticTextHeight);
  34.         check_box(item_id: 'conf', name: '$$$/Prefs/Update/ShowConfirmationDialog');
  35.         check_box(item_id: 'ShNo', name: '$$$/Prefs/Update/DisplayStartupNotifDlg');
  36.     }
  37. }
  38.