1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22#include "dialogs.hrc" 23#include "helpids.hrc" 24 25ModalDialog RID_XMLSECDLG_CERTCHOOSER 26{ 27 HelpId = HID_XMLSEC_DLG_CERTCHOOSER ; 28 Size = MAP_APPFONT ( CS_WIDTH, CS_HEIGHT ) ; 29 OutputSize = TRUE ; 30 Closeable = TRUE ; 31 Moveable = TRUE ; 32 SVLook = TRUE ; 33 34 Text [ en-US ] = "Select Certificate" ; 35 36 FixedText FT_HINT_SELECT 37 { 38 Pos = MAP_APPFONT ( CS_COL_0, CS_ROW_0 ) ; 39 Size = MAP_APPFONT ( CS_COL_2-CS_COL_0, RSC_CD_FIXEDTEXT_HEIGHT ) ; 40 Text [ en-US ] = "Select the certificate you want to use for signing" ; 41 }; 42 Control LB_SIGNATURES 43 { 44 HelpId = HID_XMLSEC_CTRL_CHOOSESIGNATURES ; 45 Pos = MAP_APPFONT ( CS_COL_0, CS_ROW_1 ) ; 46 Size = MAP_APPFONT ( CS_LB_WIDTH, CS_ROW_2-CS_ROW_1 ) ; 47 SVLook = TRUE ; 48 Border = TRUE ; 49 }; 50 String STR_HEADERBAR 51 { 52 Text [ en-US ] = "Issued to\tIssued by\tExpiration date" ; 53 }; 54 PushButton BTN_VIEWCERT 55 { 56 HelpID = "xmlsecurity:PushButton:RID_XMLSECDLG_CERTCHOOSER:BTN_VIEWCERT" ; 57 Pos = MAP_APPFONT ( CS_COL_1, CS_ROW_3 ) ; 58 Size = MAP_APPFONT ( CS_COL_2-CS_COL_1, RSC_CD_PUSHBUTTON_HEIGHT ) ; 59 Text [ en-US ] = "View Certificate..." ; 60 }; 61 FixedLine FL_BOTTOM_SEP 62 { 63 Pos = MAP_APPFONT ( 0, DLGS_BOTTOM_FL_Y( CS_HEIGHT ) ) ; 64 Size = MAP_APPFONT ( CS_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ) ; 65 }; 66 OKButton BTN_OK 67 { 68 DefButton = TRUE ; 69 Pos = MAP_APPFONT ( DLGS_BOTTOM_OK_X( CS_WIDTH ), DLGS_BOTTOM_BTN_Y( CS_HEIGHT ) ) ; 70 Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ; 71 }; 72 CancelButton BTN_CANCEL 73 { 74 Pos = MAP_APPFONT ( DLGS_BOTTOM_CANCEL_X( CS_WIDTH ), DLGS_BOTTOM_BTN_Y( CS_HEIGHT ) ) ; 75 Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ; 76 }; 77 HelpButton BTN_HELP 78 { 79 Pos = MAP_APPFONT ( DLGS_BOTTOM_HELP_X( CS_WIDTH ), DLGS_BOTTOM_BTN_Y( CS_HEIGHT ) ) ; 80 Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ; 81 }; 82}; 83 84// ********************************************************************** EOF 85