home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September (Special) / Chip-Special_2004-09_Digitalni-Hudba.bin / servis / reader / Data1.cab / Multimedia.CZE / 1029 / EXVW / 10019 < prev    next >
Text File  |  2003-07-19  |  979b  |  29 lines

  1. gColumnOneWidth        = zstring_width( zstring: '$$$/Dialogs/Multimedia/CreateFromExisting/Rendition' );
  2.  
  3. gRenditionPopup        = max_char_width( ) * 16;
  4.  
  5. gIconWidthAndHeight    = 32;
  6.  
  7. gInfoTextWidth        = gColumnOneWidth + gRenditionPopup - gIconWidthAndHeight;
  8.  
  9. dialog( name: '$$$/Dialogs/Multimedia/CreateFromExisting', target_id: 'rnds' )
  10. {
  11.     view( align_children: align_left )
  12.     {
  13.         view( align_children: align_row )
  14.         {
  15.             static_text( name: '$$$/Dialogs/Multimedia/CreateFromExisting/Rendition', width: gColumnOneWidth, alignment: align_right );
  16.             popup( item_id: 'rnds', width: gRenditionPopup, alignment: align_left );
  17.         }
  18.  
  19.         cluster( name: '$$$/Dialogs/Multimedia/EditRenditionAction/GroupTitle', align_children: align_row )
  20.         {
  21.             picture( item_id: 'icon', width: gIconWidthAndHeight, height: gIconWidthAndHeight, alignment: align_center );
  22.             static_text( item_id: 'info', width: gInfoTextWidth, alignment: align_fill );
  23.             gap();
  24.         }
  25.  
  26.         ok_cancel();
  27.     }
  28. }
  29.