1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_ 29#include "formresid.hrc" 30#endif 31#include "propctrlr.hrc" 32#ifndef EXTENSIONS_SOURCE_PROPCTRLR_LISTSELECTIONDLG_HRC 33#include "listselectiondlg.hrc" 34#endif 35 36ModalDialog RID_DLG_SELECTION 37{ 38 HelpID = "extensions:ModalDialog:RID_DLG_SELECTION"; 39 OutputSize = TRUE ; 40 Moveable = TRUE ; 41 Closeable = TRUE ; 42 SVLook = TRUE ; 43 Size = MAP_APPFONT ( 150, 120 ) ; 44 45 FixedText FT_ENTRIES 46 { 47 Pos = MAP_APPFONT( 6, 6 ); 48 Size = MAP_APPFONT( 85, 8 ); 49 }; 50 51 ListBox LB_ENTRIES 52 { 53 HelpID = "extensions:ListBox:RID_DLG_SELECTION:LB_ENTRIES"; 54 Pos = MAP_APPFONT( 6, 17 ); 55 Size = MAP_APPFONT( 85, 97 ); 56 57 Border = TRUE; 58 DropDown = FALSE; 59 }; 60 61 OKButton PB_OK 62 { 63 Pos = MAP_APPFONT( 97, 6 ); 64 Size = MAP_APPFONT( 50, 14 ); 65 TabStop = TRUE; 66 DefButton = TRUE; 67 }; 68 69 CancelButton PB_CANCEL 70 { 71 Pos = MAP_APPFONT( 97, 23 ); 72 Size = MAP_APPFONT( 50, 14 ); 73 TabStop = TRUE; 74 }; 75 76 HelpButton PB_HELP 77 { 78 Pos = MAP_APPFONT( 97, 43 ); 79 Size = MAP_APPFONT( 50, 14 ); 80 TabStop = TRUE; 81 }; 82}; 83