home *** CD-ROM | disk | FTP | other *** search
- gPasswordLabelWidth = zstring_width(zstring: '$$$avSecurityOpenPasswordLabel') + max_char_width() * 2;
- gPasswordWidth = max_char_width() * 12;
- gMsgWidth = gPasswordLabelWidth + gPasswordWidth + max_char_width() * 5;
-
- dialog( name: '$$$/Dialogs/Password' )
- {
- group()
- {
- view( align_children: align_top )
- {
- picture(item_id: 'icon', width: 32, height: 32);
- view( align_children: align_left )
- {
- static_text(item_id: 'msg ', width: gMsgWidth, alignment: align_fill);
- static_text(item_id: 'msg2', width: gMsgWidth, alignment: align_fill);
- view( align_children: align_row )
- {
- static_text(item_id : 'plbl', alignment: align_right, width: gPasswordLabelWidth);
- edit_text(item_id: 'pswd', alignment: align_left, width: gPasswordWidth, password: true);
- }
- }
- }
-
- ok_cancel();
- }
- }
-