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 <svx/dialogs.hrc> 29#include "glob.hrc" 30#include "helpids.h" 31#include "paragr.hrc" 32 33TabDialog TAB_PARAGRAPH 34{ 35 OutputSize = TRUE ; 36 SVLook = TRUE ; 37 Size = MAP_APPFONT ( 289 , 176 ) ; 38 Text [ en-US ] = "Paragraph" ; 39 Moveable = TRUE ; 40 Closeable = TRUE ; 41 TabControl 1 42 { 43 OutputSize = TRUE ; 44 Pos = MAP_APPFONT ( 3 , 3 ) ; 45 Size = MAP_APPFONT ( 260 , 135 ) ; 46 PageList = 47 { 48 PageItem 49 { 50 Identifier = RID_SVXPAGE_STD_PARAGRAPH ; 51 Text [ en-US ] = "Indents & Spacing" ; 52 PageResID = RID_SVXPAGE_STD_PARAGRAPH ; 53 }; 54 PageItem 55 { 56 Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH ; 57 PageResID = RID_SVXPAGE_ALIGN_PARAGRAPH ; 58 Text [ en-US ] = "Alignment" ; 59 }; 60 PageItem 61 { 62 Identifier = RID_SVXPAGE_PARA_ASIAN ; 63 PageResID = RID_SVXPAGE_PARA_ASIAN ; 64 Text [ en-US ] = "Asian Typography"; 65 }; 66 PageItem 67 { 68 Identifier = RID_TABPAGE_PARA_NUMBERING; 69 Text = "Numbering"; 70 PageResID = RID_TABPAGE_PARA_NUMBERING; 71 }; 72 PageItem 73 { 74 Identifier = RID_SVXPAGE_TABULATOR ; 75 Text [ en-US ] = "Tabs" ; 76 PageResID = RID_SVXPAGE_TABULATOR ; 77 }; 78 }; 79 }; 80 OKButton 1 81 { 82 Pos = MAP_APPFONT ( 6 , 151 ) ; 83 Size = MAP_APPFONT ( 50 , 14 ) ; 84 TabStop = TRUE ; 85 }; 86 CancelButton 1 87 { 88 Pos = MAP_APPFONT ( 60 , 151 ) ; 89 Size = MAP_APPFONT ( 50 , 14 ) ; 90 TabStop = TRUE ; 91 }; 92 HelpButton 1 93 { 94 Pos = MAP_APPFONT ( 114 , 151 ) ; 95 Size = MAP_APPFONT ( 50 , 14 ) ; 96 TabStop = TRUE ; 97 }; 98 PushButton 1 99 { 100 Pos = MAP_APPFONT ( 169 , 151 ) ; 101 Size = MAP_APPFONT ( 50 , 14 ) ; 102 Text [ en-US ] = "Return" ; 103 TabStop = TRUE ; 104 }; 105}; 106 107TabPage RID_TABPAGE_PARA_NUMBERING 108{ 109 HelpId = HID_TABPAGE_PARA_NUMBERING ; 110 Hide = TRUE ; 111 Text = "Numbering" ; 112 Size = MAP_APPFONT ( 260 , 185 ) ; 113 114 TriStateBox CB_NEW_START 115 { 116 HelpID = "sd:TriStateBox:RID_TABPAGE_PARA_NUMBERING:CB_NEW_START"; 117 Pos = MAP_APPFONT ( 6 , 6 ) ; 118 Size = MAP_APPFONT ( 160 , 10 ) ; 119 TabStop = TRUE ; 120 Text = "R~estart at this paragraph" ; 121 }; 122 TriStateBox CB_NUMBER_NEW_START 123 { 124 HelpID = "sd:TriStateBox:RID_TABPAGE_PARA_NUMBERING:CB_NUMBER_NEW_START"; 125 Pos = MAP_APPFONT ( 15 , 21 ) ; 126 Size = MAP_APPFONT ( 103 , 10 ) ; 127 Disable = TRUE ; 128 Text = "S~tart with" ; 129 }; 130 NumericField NF_NEW_START 131 { 132 HelpID = "sd:NumericField:RID_TABPAGE_PARA_NUMBERING:NF_NEW_START"; 133 Border = TRUE ; 134 Pos = MAP_APPFONT ( 124 , 20 ) ; 135 Size = MAP_APPFONT ( 26 , 12 ) ; 136 TabStop = TRUE ; 137 Left = TRUE ; 138 Repeat = TRUE ; 139 Spin = TRUE ; 140 Minimum = 0 ; 141 Maximum = 9999 ; 142 Value = 0 ; 143 First = 0 ; 144 Last = 9999 ; 145 Disable = TRUE ; 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