home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September (Special) / Chip-Special_2004-09_Digitalni-Hudba.bin / servis / reader / Data1.cab / Annots.CZE / 1033 / EXVW / 9900 < prev   
Text File  |  2003-07-19  |  2KB  |  59 lines

  1. gSummarizeCommentsSortByPopupWidth = max(
  2.     zstring_width(zstring: '$$$IDS_SORT_PAGE'),
  3.     zstring_width(zstring: '$$$IDS_SORT_AUTHOR'),
  4.     zstring_width(zstring: '$$$IDS_SORT_TYPE'),
  5.     zstring_width(zstring: '$$$IDS_SORT_DATE'));
  6.  
  7. gSummarizeDestTypeWidth = max(
  8.     zstring_width(zstring: '$$$IDS_SUMMARY_DEST_SAME'),
  9.     zstring_width(zstring: '$$$IDS_SUMMARY_DEST_FOLDER'));
  10.  
  11.  
  12. dialog(name: '$$$/Dialogs/SummarizeComments')
  13. {
  14.     view(align_children: align_left)
  15.     {
  16.         cluster(name: '$$$/Dialogs/SummarizeComments/Format/Label')
  17.         {
  18.             view(align_children: align_left)
  19.             {
  20.                 picture(item_id:'icon', width:140 , height: 85);
  21.                 radio(item_id: 'llns', name: '$$$/Dialogs/SummarizeComments/Format/Lines', next_tab: 'l2up');
  22.                 radio(item_id: 'l2up', name: '$$$/Dialogs/SummarizeComments/Format/TwoUp', next_tab: 'nodc');
  23.                 radio(item_id: 'nodc', name: '$$$/Dialogs/SummarizeComments/Format/NoDoc', next_tab: 'nums');
  24.                 radio(item_id: 'nums', name: '$$$/Dialogs/SummarizeComments/Format/Numbers', next_tab: 'llns');
  25.             }
  26.         }
  27.  
  28.         view(align_children: align_row)
  29.         {
  30.             static_text(name: '$$$/Dialogs/SummarizeComments/SortBy/Label');
  31.             popup(item_id: 'sort', width: gSummarizeCommentsSortByPopupWidth);
  32.         }
  33.  
  34.         view(align_children: align_row)
  35.         {
  36.             static_text(name: '$$$/Dialogs/SummarizeComments/Include/Label');
  37.             radio(item_id: 'sall', name: '$$$/Dialogs/SummarizeComments/Include/All', next_tab: 'sshw');
  38.             radio(item_id: 'sshw', name: '$$$/Dialogs/SummarizeComments/Include/Showing', next_tab: 'sall');
  39.         }
  40.  
  41.         view(align_children: align_row)
  42.         {
  43.             static_text(name: '$$$/Dialogs/SummarizeComments/FontSize/Label');
  44.             radio(item_id: 'ssml', name: '$$$/Dialogs/SummarizeComments/FontSize/Small', next_tab: 'smed');
  45.             radio(item_id: 'smed', name: '$$$/Dialogs/SummarizeComments/FontSize/Medium', next_tab: 'slrg');
  46.             radio(item_id: 'slrg', name: '$$$/Dialogs/SummarizeComments/FontSize/Large', next_tab: 'ssml');
  47.         }
  48.  
  49.         view(align_children: align_row, alignment: align_fill)
  50.         {
  51.             static_text(item_id: 'svin', name: '$$$/Dialogs/SummarizeComments/SaveIn');
  52.             popup(item_id: 'dtyp', width: gSummarizeDestTypeWidth);
  53.             button(item_id: 'brow', name: '$$$/Dialogs/SummarizeComments/Browse');
  54.         }
  55.  
  56.         ok_cancel_help();
  57.     }
  58. }
  59.