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 "tabtempl.hrc" 29#include <svx/dialogs.hrc> 30TabDialog TAB_TEMPLATE 31{ 32 OutputSize = TRUE ; 33 SVLook = TRUE ; 34 Size = MAP_APPFONT ( 289 , 176 ) ; 35 Text [ en-US ] = "Graphics Styles" ; 36 Moveable = TRUE ; 37 // Closeable = TRUE; // Dieser Dialog hat OK und/oder Cancel Button ! (KH) 38 TabControl 1 39 { 40 OutputSize = TRUE ; 41 Pos = MAP_APPFONT ( 3 , 3 ) ; 42 Size = MAP_APPFONT ( 260 , 135 ) ; 43 PageList = 44 { 45 PageItem 46 { 47 Identifier = RID_SVXPAGE_LINE ; 48 Text [ en-US ] = "Line" ; 49 PageResID = RID_SVXPAGE_LINE ; 50 }; 51 PageItem 52 { 53 Identifier = RID_SVXPAGE_AREA ; 54 /* ### ACHTUNG: Neuer Text in Resource? Fl�che : Fl�che */ 55 Text [ en-US ] = "Area" ; 56 PageResID = RID_SVXPAGE_AREA ; 57 }; 58 PageItem 59 { 60 Identifier = RID_SVXPAGE_SHADOW ; 61 PageResID = RID_SVXPAGE_SHADOW ; 62 Text [ en-US ] = "Shadowing" ; 63 }; 64 PageItem 65 { 66 Identifier = RID_SVXPAGE_TRANSPARENCE ; 67 Text [ en-US ] = "Transparency"; 68 }; 69 PageItem 70 { 71 Identifier = RID_SVXPAGE_CHAR_NAME; 72 Text [ en-US ] = "Font" ; 73 PageResID = RID_SVXPAGE_CHAR_NAME ; 74 }; 75 PageItem 76 { 77 Identifier = RID_SVXPAGE_CHAR_EFFECTS ; 78 Text [ en-US ] = "Font Effect" ; 79 PageResID = RID_SVXPAGE_CHAR_EFFECTS ; 80 }; 81 PageItem 82 { 83 Identifier = RID_SVXPAGE_STD_PARAGRAPH ; 84 /* ### ACHTUNG: Neuer Text in Resource? Einz�ge und Abst�nde : Einz�ge und Abst�nde */ 85 Text [ en-US ] = "Indents & Spacing" ; 86 PageResID = RID_SVXPAGE_STD_PARAGRAPH ; 87 }; 88 PageItem 89 { 90 Identifier = RID_SVXPAGE_TEXTATTR ; 91 PageResID = RID_SVXPAGE_TEXTATTR ; 92 Text [ en-US ] = "Text" ; 93 }; 94 PageItem 95 { 96 Identifier = RID_SVXPAGE_TEXTANIMATION ; 97 PageResID = RID_SVXPAGE_TEXTANIMATION ; 98 Text [ en-US ] = "Text Animation" ; 99 }; 100 PageItem 101 { 102 Identifier = RID_SVXPAGE_MEASURE ; 103 /* ### ACHTUNG: Neuer Text in Resource? Bema�ung : Bema�ung */ 104 Text [ en-US ] = "Dimensioning" ; 105 PageResID = RID_SVXPAGE_MEASURE ; 106 }; 107 PageItem 108 { 109 Identifier = RID_SVXPAGE_CONNECTION ; 110 Text [ en-US ] = "Connector" ; 111 }; 112 PageItem 113 { 114 Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH ; 115 PageResID = RID_SVXPAGE_ALIGN_PARAGRAPH ; 116 Text [ en-US ] = "Alignment" ; 117 }; 118 PageItem 119 { 120 Identifier = RID_SVXPAGE_PARA_ASIAN ; 121 PageResID = RID_SVXPAGE_PARA_ASIAN ; 122 Text[ en-US ] = "Asian Typography"; 123 }; 124 PageItem 125 { 126 Identifier = RID_SVXPAGE_TABULATOR ; 127 Text [ en-US ] = "Tabs" ; 128 PageResID = RID_SVXPAGE_TABULATOR ; 129 }; 130 }; 131 }; 132 OKButton 1 133 { 134 Pos = MAP_APPFONT ( 6 , 151 ) ; 135 Size = MAP_APPFONT ( 50 , 14 ) ; 136 TabStop = TRUE ; 137 }; 138 CancelButton 1 139 { 140 Pos = MAP_APPFONT ( 60 , 151 ) ; 141 Size = MAP_APPFONT ( 50 , 14 ) ; 142 TabStop = TRUE ; 143 }; 144 HelpButton 1 145 { 146 Pos = MAP_APPFONT ( 114 , 151 ) ; 147 Size = MAP_APPFONT ( 50 , 14 ) ; 148 TabStop = TRUE ; 149 }; 150 PushButton 1 151 { 152 Pos = MAP_APPFONT ( 169 , 151 ) ; 153 Size = MAP_APPFONT ( 50 , 14 ) ; 154 /* ### ACHTUNG: Neuer Text in Resource? Zur�ck : Zur�ck */ 155 Text [ en-US ] = "Back" ; 156 TabStop = TRUE ; 157 }; 158}; 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194