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 23 24#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_ 25#include "formresid.hrc" 26#endif 27#include "propctrlr.hrc" 28#ifndef EXTENSIONS_SOURCE_PROPCTRLR_LISTSELECTIONDLG_HRC 29#include "listselectiondlg.hrc" 30#endif 31 32ModalDialog RID_DLG_SELECTION 33{ 34 HelpID = "extensions:ModalDialog:RID_DLG_SELECTION"; 35 OutputSize = TRUE ; 36 Moveable = TRUE ; 37 Closeable = TRUE ; 38 SVLook = TRUE ; 39 Size = MAP_APPFONT ( 150, 120 ) ; 40 41 FixedText FT_ENTRIES 42 { 43 Pos = MAP_APPFONT( 6, 6 ); 44 Size = MAP_APPFONT( 85, 8 ); 45 }; 46 47 ListBox LB_ENTRIES 48 { 49 HelpID = "extensions:ListBox:RID_DLG_SELECTION:LB_ENTRIES"; 50 Pos = MAP_APPFONT( 6, 17 ); 51 Size = MAP_APPFONT( 85, 97 ); 52 53 Border = TRUE; 54 DropDown = FALSE; 55 }; 56 57 OKButton PB_OK 58 { 59 Pos = MAP_APPFONT( 97, 6 ); 60 Size = MAP_APPFONT( 50, 14 ); 61 TabStop = TRUE; 62 DefButton = TRUE; 63 }; 64 65 CancelButton PB_CANCEL 66 { 67 Pos = MAP_APPFONT( 97, 23 ); 68 Size = MAP_APPFONT( 50, 14 ); 69 TabStop = TRUE; 70 }; 71 72 HelpButton PB_HELP 73 { 74 Pos = MAP_APPFONT( 97, 43 ); 75 Size = MAP_APPFONT( 50, 14 ); 76 TabStop = TRUE; 77 }; 78}; 79