home *** CD-ROM | disk | FTP | other *** search
- myIndent = 1 * max_char_width();
- dialog( name: '$$$/Dialogs/SelectCredential/Title' )
- {
- view( align_children: align_left )
- {
- static_text( name: '$$$/Dialogs/SelectCredential/Notes' );
-
- cluster(alignment: align_fill, align_children: align_row, name: '$$$/Dialogs/SelectCredential/DigitalIdCluster')
- {
- static_text( name: '$$$/Dialogs/SelectCredential/DigitalIdName' );
- edit_text( item_id: 'Name', readonly: true, alignment: align_fill );
- button( item_id: 'Show', name: '$$$/Dialogs/SelectCredential/DigitalIdDetails' );
- }
-
- cluster(alignment: align_fill, align_children: align_left, name: '$$$/Dialogs/SelectCredential/PersistenceCluster')
- {
- radio( item_id: 'rad1', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistNever' );
- radio( item_id: 'rad2', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistSession' );
- radio( item_id: 'rad3', group_id: 'pers', name: '$$$/Dialogs/ChooseCredential/PersistAlways' );
-
- static_text( name: '$$$/Dialogs/SelectCredential/PurposePrompt' );
- view( align_children: align_row )
- {
- gap( width: myIndent );
- radio( item_id: 'pur0', group_id: 'usag', name: '$$$/Dialogs/SelectCredential/Signing' );
- }
-
- view( align_children: align_row )
- {
- gap( width: myIndent );
- radio( item_id: 'pur1', group_id: 'usag', name: '$$$/Dialogs/SelectCredential/Encrypt' );
- }
-
- view( align_children: align_row )
- {
- gap( width: myIndent );
- radio( item_id: 'pur2', group_id: 'usag', name: '$$$/Dialogs/SelectCredential/Both' );
- }
- }
-
- ok_cancel();
- }
- }