home *** CD-ROM | disk | FTP | other *** search
- gDialogWidth = 32 + 20 + max( 300,
- zstring_width(zstring: '$$$/Dialogs/AddCredential/EnrollWithCA/Title'),
- zstring_width(zstring: '$$$/Dialogs/AddCredential/CreateSelfSign/Title'),
- zstring_width(zstring: '$$$/Dialogs/AddCredential/Import/Title') );
-
- dialog( name: '$$$/Dialogs/AddCredential/Title', width: gDialogWidth )
- {
- view( align_children: align_left )
- {
- static_text(item_id: 'reas', alignment: align_fill);
- static_text(item_id: 'rea1', alignment: align_fill);
-
- cluster( name: '$$$/Dialogs/AddCredential/EnrollWithCA/Cluster', align_children: align_top, alignment: align_fill )
- {
- button( item_id: '_ca_', picture: true, height: 40, width: 40 );
- view( align_children: align_left, alignment: align_fill )
- {
- static_text( name: '$$$/Dialogs/AddCredential/EnrollWithCA/Title', font_id: 5, alignment: align_fill );
- static_text( item_id: 'not1', name: '$$$/Dialogs/AddCredential/EnrollWithCA/Note', alignment: align_fill );
- }
- }
-
- cluster( name: '$$$/Dialogs/AddCredential/CreateSelfSign/Cluster', align_children: align_top, alignment: align_fill )
- {
- button( item_id: '_ss_', picture: true, height: 40, width: 40 );
- view( align_children: align_left, alignment: align_fill )
- {
- static_text( name: '$$$/Dialogs/AddCredential/CreateSelfSign/Title', font_id: 5, alignment: align_fill );
- static_text( item_id: 'not2', name: '$$$/Dialogs/AddCredential/CreateSelfSign/Note', alignment: align_fill );
- }
- }
-
- cluster( name: '$$$/Dialogs/AddCredential/Import/Cluster', align_children: align_top, alignment: align_fill )
- {
- button( item_id: '_im_', picture: true, height: 40, width: 40 );
- view( align_children: align_left, alignment: align_fill )
- {
- static_text( name: '$$$/Dialogs/AddCredential/Import/Title', font_id: 5, alignment: align_fill );
- }
- }
-
- ok_cancel_help( cancel_name: '$$$/Dialogs/CloseButton' );
- }
- }