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 // include --------------------------------------------------------------- 28#include <sfx2/sfx.hrc> 29#include "helpid.hrc" 30#include "mgetempl.hrc" 31 // pragma ---------------------------------------------------------------- 32 33 // TP_MANAGE_STYLES ------------------------------------------------------ 34TabPage TP_MANAGE_STYLES 35{ 36 HelpId = HID_MANAGE_STYLES ; 37 Hide = TRUE ; 38 Size = MAP_APPFONT ( 260 , 185 ) ; 39 FixedText FT_NAME 40 { 41 Pos = MAP_APPFONT ( 6 , 8 ) ; 42 Size = MAP_APPFONT ( 61 , 10 ) ; 43 Text [ en-US ] = "~Name" ; 44 }; 45 Edit ED_NAME 46 { 47 HelpID = "sfx2:Edit:TP_MANAGE_STYLES:ED_NAME"; 48 Border = TRUE ; 49 Pos = MAP_APPFONT ( 70 , 6 ) ; 50 Size = MAP_APPFONT ( 184 , 12 ) ; 51 }; 52 MultiLineEdit MLE_NAME 53 { 54 Pos = MAP_APPFONT ( 70 , 8 ) ; 55 Size = MAP_APPFONT ( 80 , 12 ) ; 56 Border = FALSE; 57 ReadOnly = TRUE; 58 Hide = TRUE; 59 }; 60 CheckBox CB_AUTO 61 { 62 HelpID = "sfx2:CheckBox:TP_MANAGE_STYLES:CB_AUTO"; 63 Pos = MAP_APPFONT ( 164 , 8 ) ; 64 Size = MAP_APPFONT ( 90 , 10 ) ; 65 Hide = TRUE ; 66 Text [ en-US ] = "~AutoUpdate" ; 67 }; 68 FixedText FT_NEXT 69 { 70 Pos = MAP_APPFONT ( 6 , 26 ) ; 71 Size = MAP_APPFONT ( 61 , 10 ) ; 72 Text [ en-US ] = "Ne~xt Style" ; 73 }; 74 ListBox LB_NEXT 75 { 76 HelpID = "sfx2:ListBox:TP_MANAGE_STYLES:LB_NEXT"; 77 Border = TRUE ; 78 Pos = MAP_APPFONT ( 70 , 24 ) ; 79 Size = MAP_APPFONT ( 184 , 65 ) ; 80 DropDown = TRUE ; 81 Sort = TRUE ; 82 }; 83 FixedText FT_BASE 84 { 85 Pos = MAP_APPFONT ( 6 , 44 ) ; 86 Size = MAP_APPFONT ( 61 , 10 ) ; 87 /* ### ACHTUNG: Neuer Text in Resource? ~Verkn�pft mit : ~Verkn�pft mit */ 88 /* ### ACHTUNG: Neuer Text in Resource? ~Verkn�pft mit : ~Verkn�pft mit */ 89 Text [ en-US ] = "Linked with" ; 90 }; 91 ListBox LB_BASE 92 { 93 HelpID = "sfx2:ListBox:TP_MANAGE_STYLES:LB_BASE"; 94 Border = TRUE ; 95 Pos = MAP_APPFONT ( 70 , 42 ) ; 96 Size = MAP_APPFONT ( 184 , 65 ) ; 97 DropDown = TRUE ; 98 Sort = TRUE ; 99 }; 100 FixedText FT_REGION 101 { 102 Pos = MAP_APPFONT ( 6 , 62 ) ; 103 Size = MAP_APPFONT ( 61 , 10 ) ; 104 Text [ en-US ] = "~Category" ; 105 }; 106 ListBox LB_REGION 107 { 108 HelpID = "sfx2:ListBox:TP_MANAGE_STYLES:LB_REGION"; 109 Border = TRUE ; 110 Pos = MAP_APPFONT ( 70 , 60 ) ; 111 Size = MAP_APPFONT ( 184 , 64 ) ; 112 DropDown = TRUE ; 113 }; 114 FixedText FT_DESC 115 { 116 Pos = MAP_APPFONT ( 12 , 88 ) ; 117 Size = MAP_APPFONT ( 236 , 85 ) ; 118 WordBreak = TRUE ; 119 Hide = TRUE ; 120 }; 121 MultiLineEdit ED_DESC 122 { 123 HelpID = "sfx2:MultiLineEdit:TP_MANAGE_STYLES:ED_DESC"; 124 Pos = MAP_APPFONT ( 12 , 88 ) ; 125 Size = MAP_APPFONT ( 236 , 85 ) ; 126 ReadOnly = TRUE ; 127 IgnoreTab = TRUE; 128 }; 129 FixedLine GB_DESC 130 { 131 Pos = MAP_APPFONT ( 6 , 77 ) ; 132 Size = MAP_APPFONT ( 248 , 8 ) ; 133 Text [ en-US ] = "Contains" ; 134 }; 135}; 136 // ********************************************************************** EOF 137 138 139 140 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