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 "chrdlg.hrc" 29#include "break.hrc" 30#include "cmdid.h" 31#include "helpid.h" 32 // #define DLG_BREAK 256 33ModalDialog DLG_BREAK 34{ 35 HelpID = CMD_FN_INSERT_BREAK_DLG ; 36 OutputSize = TRUE ; 37 SVLook = TRUE ; 38 Size = MAP_APPFONT ( 161 , 114 ) ; 39 /* ### ACHTUNG: Neuer Text in Resource? Umbruch einf�gen : Umbruch einf�gen */ 40 Text [ en-US ] = "Insert Break" ; 41 Moveable = TRUE ; 42 OKButton BT_OK 43 { 44 Pos = MAP_APPFONT ( 105 , 6 ) ; 45 Size = MAP_APPFONT ( 50 , 14 ) ; 46 TabStop = TRUE ; 47 Group = TRUE ; 48 DefButton = TRUE ; 49 }; 50 CancelButton BT_CANCEL 51 { 52 Pos = MAP_APPFONT ( 105 , 23 ) ; 53 Size = MAP_APPFONT ( 50 , 14 ) ; 54 TabStop = TRUE ; 55 Group = TRUE ; 56 }; 57 HelpButton BT_HELP 58 { 59 Pos = MAP_APPFONT ( 105 , 43 ) ; 60 Size = MAP_APPFONT ( 50 , 14 ) ; 61 TabStop = TRUE ; 62 Group = TRUE ; 63 }; 64 RadioButton RB_LINE 65 { 66 HelpID = "sw:RadioButton:DLG_BREAK:RB_LINE"; 67 Pos = MAP_APPFONT ( 12 , 15 ) ; 68 Size = MAP_APPFONT ( 63 , 10 ) ; 69 Text [ en-US ] = "~Line break" ; 70 TabStop = TRUE ; 71 Group = TRUE ; 72 }; 73 RadioButton RB_PAGE 74 { 75 HelpID = "sw:RadioButton:DLG_BREAK:RB_PAGE"; 76 Pos = MAP_APPFONT ( 12 , 39 ) ; 77 Size = MAP_APPFONT ( 63 , 10 ) ; 78 Text [ en-US ] = "~Page break" ; 79 TabStop = TRUE ; 80 Check = TRUE ; 81 }; 82 RadioButton RB_COL 83 { 84 HelpID = "sw:RadioButton:DLG_BREAK:RB_COL"; 85 Pos = MAP_APPFONT ( 12 , 27 ) ; 86 Size = MAP_APPFONT ( 69 , 10 ) ; 87 Text [ en-US ] = "~Column break" ; 88 TabStop = TRUE ; 89 }; 90 FixedLine FL_BREAK 91 { 92 Pos = MAP_APPFONT ( 6 , 3 ) ; 93 Size = MAP_APPFONT ( 93 , 8 ) ; 94 Text [ en-US ] = "Type" ; 95 }; 96 FixedText FT_COLL 97 { 98 Pos = MAP_APPFONT ( 12 , 51 ) ; 99 Size = MAP_APPFONT ( 69 , 8 ) ; 100 Text [ en-US ] = "~Style" ; 101 Group = TRUE ; 102 Left = TRUE ; 103 }; 104 ListBox LB_COLL 105 { 106 HelpID = "sw:ListBox:DLG_BREAK:LB_COLL"; 107 Pos = MAP_APPFONT ( 12 , 62 ) ; 108 Size = MAP_APPFONT ( 75 , 50 ) ; 109 TabStop = TRUE ; 110 DropDown = TRUE ; 111 CurPos = 0 ; 112 StringList [ en-US ] = 113 { 114 < "[None]" ; > ; 115 }; 116 }; 117 CheckBox CB_PAGENUM 118 { 119 HelpID = "sw:CheckBox:DLG_BREAK:CB_PAGENUM"; 120 Pos = MAP_APPFONT ( 12 , 79 ) ; 121 Size = MAP_APPFONT ( 84 , 10 ) ; 122 /* ### ACHTUNG: Neuer Text in Resource? Seitennummer ~�ndern : Seitennummer ~�ndern */ 123 Text [ en-US ] = "Change page ~number" ; 124 TabStop = TRUE ; 125 }; 126 NumericField ED_PAGENUM 127 { 128 HelpID = "sw:NumericField:DLG_BREAK:ED_PAGENUM"; 129 Border = TRUE ; 130 Pos = MAP_APPFONT ( 12 , 94 ) ; 131 Size = MAP_APPFONT ( 31 , 12 ) ; 132 TabStop = TRUE ; 133 Left = TRUE ; 134 Repeat = TRUE ; 135 Spin = TRUE ; 136 Minimum = 1 ; 137 Maximum = 9999 ; 138 Value = 1 ; 139 First = 1 ; 140 Last = 9999 ; 141 }; 142}; 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179