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#include "selglos.hrc" 29#include "dochdl.hrc" 30#include "cmdid.h" 31#include "helpid.h" 32 33 // #define DLG_SEL_GLOS 256 34ModalDialog DLG_SEL_GLOS 35{ 36 HelpID = CMD_FN_EXPAND_GLOSSARY ; 37 OutputSize = TRUE ; 38 SVLook = TRUE ; 39 Size = MAP_APPFONT ( 220 , 100 ) ; 40 /* ### ACHTUNG: Neuer Text in Resource? AutoText einf�gen : AutoText einf�gen */ 41 Text [ en-US ] = "Insert AutoText" ; 42 Moveable = TRUE ; 43 OKButton BT_OK 44 { 45 Pos = MAP_APPFONT ( 164 , 6 ) ; 46 Size = MAP_APPFONT ( 50 , 14 ) ; 47 TabStop = TRUE ; 48 DefButton = TRUE ; 49 }; 50 CancelButton BT_CANCEL 51 { 52 Pos = MAP_APPFONT ( 164 , 23 ) ; 53 Size = MAP_APPFONT ( 50 , 14 ) ; 54 TabStop = TRUE ; 55 }; 56 HelpButton BT_HELP 57 { 58 Pos = MAP_APPFONT ( 164 , 43 ) ; 59 Size = MAP_APPFONT ( 50 , 14 ) ; 60 TabStop = TRUE ; 61 }; 62 FixedLine FL_GLOS 63 { 64 Pos = MAP_APPFONT ( 6 , 3 ) ; 65 Size = MAP_APPFONT ( 152 , 8 ) ; 66 /* ### ACHTUNG: Neuer Text in Resource? AutoTexte zum K�rzel : AutoTexte zum K�rzel */ 67 Text [ en-US ] = "AutoTexts for shortcut " ; 68 }; 69 ListBox LB_GLOS 70 { 71 HelpID = "sw:ListBox:DLG_SEL_GLOS:LB_GLOS"; 72 Border = TRUE ; 73 Pos = MAP_APPFONT ( 12 , 14 ) ; 74 Size = MAP_APPFONT ( 140 , 74 ) ; 75 TabStop = TRUE ; 76 AutoHScroll = TRUE ; 77 }; 78}; 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113