home *** CD-ROM | disk | FTP | other *** search
- gListWidth = max_char_width() * 20;
- gListHeight = gEditTextHeight * 8;
-
- dialog( name: '$$$/Dialogs/DirectoryMgr/Title' )
- {
- view()
- {
- view(align_children: align_top, alignment: align_fill)
- {
- picture(item_id: 'icon', width: 20, height: 20);
- static_text(item_id: 'note', alignment: align_fill);
- }
- cluster(item_id: 'DirC', name: '$$$/Dialogs/DirectoryMgr/DirectoryLabel', align_children: align_top)
- {
- list_box( item_id: 'dlst', dheight: gListHeight, dwidth: gListWidth );
-
- view( align_children: align_fill )
- {
- button( item_id: 'ndir', name: '$$$/Dialogs/DirectoryMgr/New');
- button( item_id: 'edir', name: '$$$/Dialogs/DirectoryMgr/Edit');
- button( item_id: 'idir', name: '$$$/Dialogs/DirectoryMgr/Import');
- button( item_id: 'exdi', name: '$$$/Dialogs/DirectoryMgr/Export');
- button( item_id: 'ddir', name: '$$$/Dialogs/DirectoryMgr/Delete');
- }
- }
-
- ok_help( ok_name: '$$$/Dialogs/CloseButton' );
- }
- }
-