xref: /trunk/main/sc/source/ui/src/textdlgs.src (revision 70057e82711e983023853aef88f334a36d55e46e)
182177cdbSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
382177cdbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
482177cdbSAndrew Rist * or more contributor license agreements.  See the NOTICE file
582177cdbSAndrew Rist * distributed with this work for additional information
682177cdbSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
782177cdbSAndrew Rist * to you under the Apache License, Version 2.0 (the
882177cdbSAndrew Rist * "License"); you may not use this file except in compliance
982177cdbSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
1182177cdbSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
1382177cdbSAndrew Rist * Unless required by applicable law or agreed to in writing,
1482177cdbSAndrew Rist * software distributed under the License is distributed on an
1582177cdbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1682177cdbSAndrew Rist * KIND, either express or implied.  See the License for the
1782177cdbSAndrew Rist * specific language governing permissions and limitations
1882177cdbSAndrew Rist * under the License.
19cdf0e10cSrcweir *
2082177cdbSAndrew Rist *************************************************************/
2182177cdbSAndrew Rist
2282177cdbSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svx/dialogs.hrc>
25cdf0e10cSrcweir#include "sc.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweirTabDialog RID_SCDLG_CHAR
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    OutputSize = TRUE ;
30cdf0e10cSrcweir    SVLook = TRUE ;
31cdf0e10cSrcweir    Size = MAP_APPFONT ( 289, 176 ) ;
32cdf0e10cSrcweir    Text [ en-US ] = "Character" ;
33cdf0e10cSrcweir    Moveable = TRUE ;
34cdf0e10cSrcweir    Closeable = TRUE ;
35cdf0e10cSrcweir    TabControl 1
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        OutputSize = TRUE ;
38cdf0e10cSrcweir        Pos = MAP_APPFONT ( 3, 3 ) ;
39cdf0e10cSrcweir        Size = MAP_APPFONT ( 260, 135 ) ;
40cdf0e10cSrcweir        PageList =
41cdf0e10cSrcweir        {
42cdf0e10cSrcweir            PageItem
43cdf0e10cSrcweir            {
44cdf0e10cSrcweir                Identifier = RID_SVXPAGE_CHAR_NAME ;
45cdf0e10cSrcweir                Text [ en-US ] = "Font" ;
46cdf0e10cSrcweir            };
47cdf0e10cSrcweir            PageItem
48cdf0e10cSrcweir            {
49cdf0e10cSrcweir                Identifier = RID_SVXPAGE_CHAR_EFFECTS ;
50cdf0e10cSrcweir                Text [ en-US ] = "Font Effects" ;
51cdf0e10cSrcweir            };
52cdf0e10cSrcweir            PageItem
53cdf0e10cSrcweir            {
54cdf0e10cSrcweir                Identifier = RID_SVXPAGE_CHAR_POSITION ;
55cdf0e10cSrcweir                Text [ en-US ] = "Font Position" ;
56cdf0e10cSrcweir            };
57cdf0e10cSrcweir        };
58cdf0e10cSrcweir    };
59cdf0e10cSrcweir    OKButton 1
60cdf0e10cSrcweir    {
61cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 151 ) ;
62cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
63cdf0e10cSrcweir        TabStop = TRUE ;
64cdf0e10cSrcweir    };
65cdf0e10cSrcweir    CancelButton 1
66cdf0e10cSrcweir    {
67cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60, 151 ) ;
68cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
69cdf0e10cSrcweir        TabStop = TRUE ;
70cdf0e10cSrcweir    };
71cdf0e10cSrcweir    HelpButton 1
72cdf0e10cSrcweir    {
73cdf0e10cSrcweir        Pos = MAP_APPFONT ( 114, 151 ) ;
74cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
75cdf0e10cSrcweir        TabStop = TRUE ;
76cdf0e10cSrcweir    };
77cdf0e10cSrcweir    PushButton 1
78cdf0e10cSrcweir    {
79cdf0e10cSrcweir        Pos = MAP_APPFONT ( 169, 151 ) ;
80cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
81cdf0e10cSrcweir        Text [ en-US ] = "Back" ;
82cdf0e10cSrcweir        TabStop = TRUE ;
83cdf0e10cSrcweir    };
84cdf0e10cSrcweir};
85cdf0e10cSrcweir
86cdf0e10cSrcweirTabDialog RID_SCDLG_PARAGRAPH
87cdf0e10cSrcweir{
88cdf0e10cSrcweir    OutputSize = TRUE ;
89cdf0e10cSrcweir    SVLook = TRUE ;
90cdf0e10cSrcweir    Size = MAP_APPFONT ( 289, 176 ) ;
91cdf0e10cSrcweir    Text [ en-US ] = "Paragraph" ;
92cdf0e10cSrcweir    Moveable = TRUE ;
93cdf0e10cSrcweir    Closeable = TRUE ;
94cdf0e10cSrcweir    TabControl 1
95cdf0e10cSrcweir    {
96cdf0e10cSrcweir        OutputSize = TRUE ;
97cdf0e10cSrcweir        Pos = MAP_APPFONT ( 3, 3 ) ;
98cdf0e10cSrcweir        Size = MAP_APPFONT ( 260, 135 ) ;
99cdf0e10cSrcweir        PageList =
100cdf0e10cSrcweir        {
101cdf0e10cSrcweir            PageItem
102cdf0e10cSrcweir            {
103cdf0e10cSrcweir                Identifier = RID_SVXPAGE_STD_PARAGRAPH ;
104cdf0e10cSrcweir                Text [ en-US ] = "Indents & Spacing" ;
105cdf0e10cSrcweir                PageResID = RID_SVXPAGE_STD_PARAGRAPH ;
106cdf0e10cSrcweir            };
107cdf0e10cSrcweir            /*
108*70057e82Smseidel            PageItem
109*70057e82Smseidel            {
110cdf0e10cSrcweir                Identifier = RID_SVXPAGE_EXT_PARAGRAPH ;
111cdf0e10cSrcweir                Text [ en-US ] = "Paragraph (Extensions)" ;
112cdf0e10cSrcweir                PageResID = RID_SVXPAGE_EXT_PARAGRAPH ;
113cdf0e10cSrcweir            };
114cdf0e10cSrcweir            */
115cdf0e10cSrcweir            PageItem
116cdf0e10cSrcweir            {
117cdf0e10cSrcweir                Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH ;
118cdf0e10cSrcweir                PageResID = RID_SVXPAGE_ALIGN_PARAGRAPH ;
119cdf0e10cSrcweir                Text [ en-US ] = "Alignment" ;
120cdf0e10cSrcweir            };
121cdf0e10cSrcweir            PageItem
122cdf0e10cSrcweir            {
123cdf0e10cSrcweir                Identifier = RID_SVXPAGE_PARA_ASIAN ;
124cdf0e10cSrcweir                Text [ en-US ] = "Asian Typography" ;
125cdf0e10cSrcweir            };
126cdf0e10cSrcweir            PageItem
127cdf0e10cSrcweir            {
128cdf0e10cSrcweir                Identifier = RID_SVXPAGE_TABULATOR ;
129cdf0e10cSrcweir                Text [ en-US ] = "Tab" ;
130cdf0e10cSrcweir                PageResID = RID_SVXPAGE_TABULATOR ;
131cdf0e10cSrcweir            };
132cdf0e10cSrcweir        };
133cdf0e10cSrcweir    };
134cdf0e10cSrcweir    OKButton 1
135cdf0e10cSrcweir    {
136cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 151 ) ;
137cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
138cdf0e10cSrcweir        TabStop = TRUE ;
139cdf0e10cSrcweir    };
140cdf0e10cSrcweir    CancelButton 1
141cdf0e10cSrcweir    {
142cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60, 151 ) ;
143cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
144cdf0e10cSrcweir        TabStop = TRUE ;
145cdf0e10cSrcweir    };
146cdf0e10cSrcweir    HelpButton 1
147cdf0e10cSrcweir    {
148cdf0e10cSrcweir        Pos = MAP_APPFONT ( 114, 151 ) ;
149cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
150cdf0e10cSrcweir        TabStop = TRUE ;
151cdf0e10cSrcweir    };
152cdf0e10cSrcweir    PushButton 1
153cdf0e10cSrcweir    {
154cdf0e10cSrcweir        Pos = MAP_APPFONT ( 169, 151 ) ;
155cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
156cdf0e10cSrcweir        Text [ en-US ] = "Back" ;
157cdf0e10cSrcweir        TabStop = TRUE ;
158cdf0e10cSrcweir    };
159cdf0e10cSrcweir};
160cdf0e10cSrcweir
161*70057e82Smseidel// ********************************************************************** EOF
162