xref: /aoo41x/main/sd/source/ui/dlg/dlg_char.src (revision cdf0e10c)
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 "dlg_char.hrc"
30TabDialog TAB_CHAR
31{
32	OutputSize = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 289 , 176 ) ;
35	Text [ en-US ] = "Character" ;
36	Moveable = TRUE ;
37	 // Closeable = TRUE;	// Dieser Dialog enthaelt 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_CHAR_NAME ;
48				Text [ en-US ] = "Font" ;
49				PageResID = RID_SVXPAGE_CHAR_NAME ;
50			};
51			PageItem
52			{
53				Identifier = RID_SVXPAGE_CHAR_EFFECTS ;
54				Text [ en-US ] = "Font Effects" ;
55				PageResID = RID_SVXPAGE_CHAR_EFFECTS ;
56			};
57			PageItem
58			{
59				Identifier = RID_SVXPAGE_CHAR_POSITION ;
60				PageResID = RID_SVXPAGE_CHAR_POSITION ;
61				Text [ en-US ] = "Position";
62			};
63		};
64	};
65	OKButton 1
66	{
67		Pos = MAP_APPFONT ( 6 , 151 ) ;
68		Size = MAP_APPFONT ( 50 , 14 ) ;
69		TabStop = TRUE ;
70	};
71	CancelButton 1
72	{
73		Pos = MAP_APPFONT ( 60 , 151 ) ;
74		Size = MAP_APPFONT ( 50 , 14 ) ;
75		TabStop = TRUE ;
76	};
77	HelpButton 1
78	{
79		Pos = MAP_APPFONT ( 114 , 151 ) ;
80		Size = MAP_APPFONT ( 50 , 14 ) ;
81		TabStop = TRUE ;
82	};
83	PushButton 1
84	{
85		Pos = MAP_APPFONT ( 169 , 151 ) ;
86		Size = MAP_APPFONT ( 50 , 14 ) ;
87		/* ### ACHTUNG: Neuer Text in Resource? Zur�ck : Zur�ck */
88		Text [ en-US ] = "Return" ;
89		TabStop = TRUE ;
90	};
91};
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130