xref: /trunk/main/cui/source/options/fontsubs.src (revision 3009d07a)
10e2af6afSAndrew Rist/**************************************************************
2*3009d07aSmseidel *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10*3009d07aSmseidel *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*3009d07aSmseidel *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19*3009d07aSmseidel *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
22ecd860a2SMatthias Seidel// include ------------------------------------------------------------------
23cdf0e10cSrcweir#include "fontsubs.hrc"
24cdf0e10cSrcweir#include "helpid.hrc"
25ecd860a2SMatthias Seidel// pragma -------------------------------------------------------------------
26cdf0e10cSrcweir
27cdf0e10cSrcweirTabPage RID_SVX_FONT_SUBSTITUTION
28cdf0e10cSrcweir{
29cdf0e10cSrcweir	HelpID = HID_OFA_FONT_SUBSTITUTION ;
30cdf0e10cSrcweir	SVLook = TRUE ;
31cdf0e10cSrcweir	Hide = TRUE ;
32ecd860a2SMatthias Seidel	Size = MAP_APPFONT ( 260, 185 ) ;
33cdf0e10cSrcweir	CheckBox CB_USETABLE
34cdf0e10cSrcweir	{
35*3009d07aSmseidel		HelpID = "cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_USETABLE" ;
36ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 6 ) ;
37ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 248, 10 ) ;
38cdf0e10cSrcweir		TabStop = TRUE ;
39ecd860a2SMatthias Seidel		Text [ en-US ] = "~Apply replacement table" ;
40cdf0e10cSrcweir	};
41ecd860a2SMatthias Seidel	FixedText FT_FONT1
42cdf0e10cSrcweir	{
43ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 20 ) ;
44ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 100, 8 ) ;
45cdf0e10cSrcweir		Left = TRUE ;
46ecd860a2SMatthias Seidel		Text [ en-US ] = "~Font" ;
47cdf0e10cSrcweir	};
48cdf0e10cSrcweir	ComboBox CB_FONT1
49cdf0e10cSrcweir	{
50*3009d07aSmseidel		HelpID = "cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT1" ;
51cdf0e10cSrcweir		Border = TRUE ;
52ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 33 ) ;
53ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 100, 100 ) ;
54cdf0e10cSrcweir		TabStop = TRUE ;
55cdf0e10cSrcweir		AutoSize = TRUE ;
56cdf0e10cSrcweir		AutoHScroll = TRUE ;
57cdf0e10cSrcweir		DDExtraWidth = TRUE ;
58ecd860a2SMatthias Seidel		DropDown = TRUE ;
59ecd860a2SMatthias Seidel		Sort = TRUE ;
60cdf0e10cSrcweir	};
61cdf0e10cSrcweir	FixedText FT_FONT2
62cdf0e10cSrcweir	{
63ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 110, 20 ) ;
64ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 100, 8 ) ;
65cdf0e10cSrcweir		Left = TRUE ;
66ecd860a2SMatthias Seidel		Text [ en-US ] = "Re~place with" ;
67cdf0e10cSrcweir	};
68cdf0e10cSrcweir	ComboBox CB_FONT2
69cdf0e10cSrcweir	{
70*3009d07aSmseidel		HelpID = "cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT2" ;
71cdf0e10cSrcweir		Border = TRUE ;
72ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 110, 33 ) ;
73ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 100, 100 ) ;
74cdf0e10cSrcweir		TabStop = TRUE ;
75cdf0e10cSrcweir		AutoSize = TRUE ;
76cdf0e10cSrcweir		AutoHScroll = TRUE ;
77cdf0e10cSrcweir		DDExtraWidth = TRUE ;
78ecd860a2SMatthias Seidel		DropDown = TRUE ;
79ecd860a2SMatthias Seidel		Sort = TRUE ;
80cdf0e10cSrcweir	};
81cdf0e10cSrcweir	ImageList IL_ICON
82cdf0e10cSrcweir	{
83*3009d07aSmseidel		Prefix = "nu" ;
8498ab5aa0SMatthias Seidel		MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
85cdf0e10cSrcweir		IdList =
86cdf0e10cSrcweir		{
87cdf0e10cSrcweir			BT_SUBSTAPPLY ;
88cdf0e10cSrcweir			BT_SUBSTDELETE ;
89cdf0e10cSrcweir		};
9098ab5aa0SMatthias Seidel		IdCount = { 2 ; };
91cdf0e10cSrcweir	};
92cdf0e10cSrcweir	ToolBox TBX_SUBSTNEWDEL
93cdf0e10cSrcweir	{
94ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 214, 33 ) ;
95cdf0e10cSrcweir		SVLook = TRUE ;
96cdf0e10cSrcweir		Border = FALSE ;
97cdf0e10cSrcweir		ItemList =
98cdf0e10cSrcweir		{
99cdf0e10cSrcweir			ToolBoxItem
100cdf0e10cSrcweir			{
101cdf0e10cSrcweir				Identifier = BT_SUBSTAPPLY ;
102cdf0e10cSrcweir				HelpID = HID_OFA_SUBST_APPLY ;
103cdf0e10cSrcweir				Text [ en-US ] = "Apply" ;
104cdf0e10cSrcweir			};
105cdf0e10cSrcweir			ToolBoxItem
106cdf0e10cSrcweir			{
107cdf0e10cSrcweir				Identifier = BT_SUBSTDELETE ;
108cdf0e10cSrcweir				HelpID = HID_OFA_SUBST_DELETE ;
109cdf0e10cSrcweir				Text [ en-US ] = "Delete" ;
110cdf0e10cSrcweir			};
111cdf0e10cSrcweir		};
112cdf0e10cSrcweir	};
113ecd860a2SMatthias Seidel	Control CLB_SUBSTITUTES
114cdf0e10cSrcweir	{
115ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 48 ) ;
116ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 248, 75 ) ;
117cdf0e10cSrcweir		Border = TRUE ;
118cdf0e10cSrcweir		TabStop = TRUE ;
119cdf0e10cSrcweir	};
120ecd860a2SMatthias Seidel	FixedLine FL_SOURCEVIEW
121ecd860a2SMatthias Seidel	{
122ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 129 ) ;
123ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
124ecd860a2SMatthias Seidel		Text [ en-US ] = "Font settings for HTML, Basic and SQL sources" ;
125ecd860a2SMatthias Seidel	};
126ecd860a2SMatthias Seidel	FixedText FT_FONTNAME
127ecd860a2SMatthias Seidel	{
128ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 142 ) ;
129ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 57, 8 ) ;
130ecd860a2SMatthias Seidel		Text [ en-US ] = "Fonts" ;
131ecd860a2SMatthias Seidel	};
132ecd860a2SMatthias Seidel	ListBox LB_FONTNAME
133ecd860a2SMatthias Seidel	{
134*3009d07aSmseidel		HelpID = "cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTNAME" ;
135ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 65, 140 ) ;
136ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 100, 68 ) ;
137cdf0e10cSrcweir		Border = TRUE ;
138cdf0e10cSrcweir		TabStop = TRUE ;
139ecd860a2SMatthias Seidel		DropDown = TRUE ;
140cdf0e10cSrcweir	};
141ecd860a2SMatthias Seidel	CheckBox CB_NONPROP
142ecd860a2SMatthias Seidel	{
143*3009d07aSmseidel		HelpID = "cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_NONPROP" ;
144ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 65, 155 ) ;
145ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 180, 10 ) ;
146cdf0e10cSrcweir		TabStop = TRUE ;
147ecd860a2SMatthias Seidel		Text [ en-US ] = "Non-proportional fonts only" ;
148ecd860a2SMatthias Seidel	};
149ecd860a2SMatthias Seidel	FixedText FT_FONTHEIGHT
150ecd860a2SMatthias Seidel	{
151ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 6, 171 ) ;
152ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 57, 8 ) ;
153ecd860a2SMatthias Seidel		Text [ en-US ] ="~Size" ;
154ecd860a2SMatthias Seidel	};
155ecd860a2SMatthias Seidel	ListBox LB_FONTHEIGHT
156ecd860a2SMatthias Seidel	{
157*3009d07aSmseidel		HelpID = "cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTHEIGHT" ;
158ecd860a2SMatthias Seidel		Pos = MAP_APPFONT ( 65, 169 ) ;
159ecd860a2SMatthias Seidel		Size = MAP_APPFONT ( 30, 68 ) ;
160cdf0e10cSrcweir		Border = TRUE ;
161cdf0e10cSrcweir		TabStop = TRUE ;
162ecd860a2SMatthias Seidel		DropDown = TRUE ;
163ecd860a2SMatthias Seidel	};
164ecd860a2SMatthias Seidel	String STR_HEADER1
165cdf0e10cSrcweir	{
166ecd860a2SMatthias Seidel		Text [ en-US ] = "Always" ;
167cdf0e10cSrcweir	};
168cdf0e10cSrcweir	String STR_HEADER2
169cdf0e10cSrcweir	{
170ecd860a2SMatthias Seidel		Text [ en-US ] = "Screen only" ;
171cdf0e10cSrcweir	};
172cdf0e10cSrcweir	String STR_HEADER3
173cdf0e10cSrcweir	{
174ecd860a2SMatthias Seidel		Text [ en-US ] = "Font" ;
175cdf0e10cSrcweir	};
176cdf0e10cSrcweir	String STR_HEADER4
177cdf0e10cSrcweir	{
178ecd860a2SMatthias Seidel		Text [ en-US ] = "Replace with" ;
179cdf0e10cSrcweir	};
180ecd860a2SMatthias Seidel	String STR_AUTOMATIC
181ecd860a2SMatthias Seidel	{
182ecd860a2SMatthias Seidel		Text [ en-US ] = "Automatic" ;
183cdf0e10cSrcweir	};
184cdf0e10cSrcweir};
185cdf0e10cSrcweir
186ecd860a2SMatthias Seidel// ******************************************************************* EOF
187