xref: /trunk/main/cui/source/dialogs/grfflt.src (revision 2a325322)
10e2af6afSAndrew Rist/**************************************************************
2*2a325322Smseidel *
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*2a325322Smseidel *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*2a325322Smseidel *
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*2a325322Smseidel *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svtools/controldims.hrc>
25cdf0e10cSrcweir#include <cuires.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include "grfflt.hrc"
28cdf0e10cSrcweir#include <svx/dialogs.hrc>
29cdf0e10cSrcweir
30cdf0e10cSrcweir// --------------------
31cdf0e10cSrcweir// - DLG_FILTERMOSAIC -
32cdf0e10cSrcweir// --------------------
33cdf0e10cSrcweir
34cdf0e10cSrcweirModalDialog RID_SVX_GRFFILTER_DLG_MOSAIC
35cdf0e10cSrcweir{
36*2a325322Smseidel	HelpID = CMD_SID_GRFFILTER_MOSAIC ;
37*2a325322Smseidel	OutputSize = TRUE ;
38*2a325322Smseidel	Moveable = TRUE ;
39*2a325322Smseidel	SVLook = TRUE ;
40*2a325322Smseidel	Size = MAP_APPFONT ( 250, 100 ) ;
41cdf0e10cSrcweir
42*2a325322Smseidel	Text [ en-US ] = "Mosaic" ;
43cdf0e10cSrcweir
44*2a325322Smseidel	FixedLine FL_PARAMETER
45*2a325322Smseidel	{
46*2a325322Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
47*2a325322Smseidel		Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
48*2a325322Smseidel		Text [ en-US ] = "Parameters" ;
49cdf0e10cSrcweir	};
50cdf0e10cSrcweir	Control CTL_PREVIEW
51cdf0e10cSrcweir	{
52*2a325322Smseidel		Pos = MAP_APPFONT ( 104, 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
53*2a325322Smseidel		Size = MAP_APPFONT ( 81, 73 ) ;
54cdf0e10cSrcweir	};
55cdf0e10cSrcweir#define MA_Y0	3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
56*2a325322Smseidel	FixedText DLG_FILTERMOSAIC_FT_WIDTH
57*2a325322Smseidel	{
58*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y0 ) ;
59*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
60*2a325322Smseidel		Text [ en-US ] = "~Width" ;
61cdf0e10cSrcweir	};
62cdf0e10cSrcweir#define MA_Y1	MA_Y0 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
63*2a325322Smseidel	MetricField DLG_FILTERMOSAIC_MTR_WIDTH
64*2a325322Smseidel	{
65*2a325322Smseidel		HelpID = "cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_WIDTH" ;
66*2a325322Smseidel		Border = TRUE ;
67*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y1 ) ;
68*2a325322Smseidel		Size = MAP_APPFONT ( 35, 12 ) ;
69*2a325322Smseidel		TabStop = TRUE ;
70*2a325322Smseidel		Repeat = TRUE ;
71*2a325322Smseidel		Spin = TRUE ;
72*2a325322Smseidel		Minimum = 1 ;
73*2a325322Smseidel		Maximum = 999 ;
74*2a325322Smseidel		StrictFormat = TRUE ;
75*2a325322Smseidel		Unit = FUNIT_CUSTOM ;
76*2a325322Smseidel		CustomUnitText = " Pixel" ;
77*2a325322Smseidel		First = 1 ;
78*2a325322Smseidel		Last = 999 ;
79*2a325322Smseidel		SpinSize = 1 ;
80*2a325322Smseidel	};
81cdf0e10cSrcweir#define MA_Y2	MA_Y1 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y
82*2a325322Smseidel	FixedText DLG_FILTERMOSAIC_FT_HEIGHT
83*2a325322Smseidel	{
84*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y2 ) ;
85*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
86*2a325322Smseidel		Text [ en-US ] = "H~eight" ;
87cdf0e10cSrcweir	};
88cdf0e10cSrcweir#define MA_Y3	MA_Y2 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
89*2a325322Smseidel	MetricField DLG_FILTERMOSAIC_MTR_HEIGHT
90*2a325322Smseidel	{
91*2a325322Smseidel		HelpID = "cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_HEIGHT" ;
92*2a325322Smseidel		Border = TRUE ;
93*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y3 ) ;
94*2a325322Smseidel		Size = MAP_APPFONT ( 35, 12 ) ;
95*2a325322Smseidel		TabStop = TRUE ;
96*2a325322Smseidel		Repeat = TRUE ;
97*2a325322Smseidel		Spin = TRUE ;
98*2a325322Smseidel		Minimum = 1 ;
99*2a325322Smseidel		Maximum = 999 ;
100*2a325322Smseidel		StrictFormat = TRUE ;
101*2a325322Smseidel		Unit = FUNIT_CUSTOM ;
102*2a325322Smseidel		CustomUnitText = " Pixel" ;
103*2a325322Smseidel		First = 1 ;
104*2a325322Smseidel		Last = 999 ;
105*2a325322Smseidel		SpinSize = 1 ;
106*2a325322Smseidel	};
107cdf0e10cSrcweir#define MA_Y4	MA_Y3 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_Y
108cdf0e10cSrcweir	CheckBox DLG_FILTERMOSAIC_CBX_EDGES
109*2a325322Smseidel	{
110*2a325322Smseidel		HelpID = "cui:CheckBox:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_CBX_EDGES" ;
111*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y4 ) ;
112*2a325322Smseidel		Size = MAP_APPFONT ( 91, 12 ) ;
113*2a325322Smseidel		TabStop = TRUE ;
114*2a325322Smseidel		Text [ en-US ] = "E~nhance edges" ;
115cdf0e10cSrcweir	};
116cdf0e10cSrcweir	OKButton BTN_OK
117*2a325322Smseidel	{
118*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 6 ) ;
119*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
120*2a325322Smseidel		TabStop = TRUE ;
121*2a325322Smseidel		DefButton = TRUE ;
122*2a325322Smseidel	};
123*2a325322Smseidel	CancelButton BTN_CANCEL
124*2a325322Smseidel	{
125*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 23 ) ;
126*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
127*2a325322Smseidel		TabStop = TRUE ;
128*2a325322Smseidel	};
129*2a325322Smseidel	HelpButton BTN_HELP
130*2a325322Smseidel	{
131*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 43 ) ;
132*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
133*2a325322Smseidel		TabStop = TRUE ;
134*2a325322Smseidel	};
135cdf0e10cSrcweir};
136cdf0e10cSrcweir
137cdf0e10cSrcweir// ----------------------
138cdf0e10cSrcweir// - DLG_FILTERSOLARIZE -
139cdf0e10cSrcweir// ----------------------
140cdf0e10cSrcweir
141cdf0e10cSrcweirModalDialog RID_SVX_GRFFILTER_DLG_SOLARIZE
142cdf0e10cSrcweir{
143*2a325322Smseidel	HelpID = CMD_SID_GRFFILTER_SOLARIZE ;
144*2a325322Smseidel	OutputSize = TRUE ;
145*2a325322Smseidel	Moveable = TRUE ;
146*2a325322Smseidel	SVLook = TRUE ;
147*2a325322Smseidel	Size = MAP_APPFONT ( 250, 100 ) ;
148cdf0e10cSrcweir
149*2a325322Smseidel	Text [ en-US ] = "Solarization" ;
150cdf0e10cSrcweir
151*2a325322Smseidel	FixedLine FL_PARAMETER
152*2a325322Smseidel	{
153*2a325322Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
154*2a325322Smseidel		Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
155*2a325322Smseidel		Text [ en-US ] = "Parameters" ;
156cdf0e10cSrcweir	};
157cdf0e10cSrcweir	Control CTL_PREVIEW
158cdf0e10cSrcweir	{
159*2a325322Smseidel		Pos = MAP_APPFONT ( 104, 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
160*2a325322Smseidel		Size = MAP_APPFONT ( 81, 73 ) ;
161cdf0e10cSrcweir	};
162cdf0e10cSrcweir#define MA_Y5	3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
163*2a325322Smseidel	FixedText DLG_FILTERSOLARIZE_FT_THRESHOLD
164*2a325322Smseidel	{
165*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y5 ) ;
166*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
167*2a325322Smseidel		Text [ en-US ] = "Threshold ~value" ;
168cdf0e10cSrcweir	};
169cdf0e10cSrcweir#define MA_Y6	MA_Y5 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
170*2a325322Smseidel	MetricField DLG_FILTERSOLARIZE_MTR_THRESHOLD
171*2a325322Smseidel	{
172*2a325322Smseidel		HelpID = "cui:MetricField:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_MTR_THRESHOLD" ;
173*2a325322Smseidel		Border = TRUE ;
174*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y6 ) ;
175*2a325322Smseidel		Size = MAP_APPFONT ( 35, 12 ) ;
176*2a325322Smseidel		TabStop = TRUE ;
177*2a325322Smseidel		Repeat = TRUE ;
178*2a325322Smseidel		Spin = TRUE ;
179*2a325322Smseidel		Maximum = 100 ;
180*2a325322Smseidel		StrictFormat = TRUE ;
181*2a325322Smseidel		Unit = FUNIT_PERCENT ;
182*2a325322Smseidel		Last = 100 ;
183*2a325322Smseidel		SpinSize = 1 ;
184*2a325322Smseidel	};
185cdf0e10cSrcweir#define MA_Y7	MA_Y6 + RSC_CD_TEXTBOX_HEIGHT + RSC_SP_CTRL_GROUP_Y
186cdf0e10cSrcweir	CheckBox DLG_FILTERSOLARIZE_CBX_INVERT
187*2a325322Smseidel	{
188*2a325322Smseidel		HelpID = "cui:CheckBox:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_CBX_INVERT" ;
189*2a325322Smseidel		Pos = MAP_APPFONT ( 12, 46 ) ;
190*2a325322Smseidel		Size = MAP_APPFONT ( 77, 12 ) ;
191*2a325322Smseidel		TabStop = TRUE ;
192*2a325322Smseidel		Text [ en-US ] = "~Invert" ;
193cdf0e10cSrcweir	};
194cdf0e10cSrcweir	OKButton BTN_OK
195*2a325322Smseidel	{
196*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 6 ) ;
197*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
198*2a325322Smseidel		TabStop = TRUE ;
199*2a325322Smseidel		DefButton = TRUE ;
200*2a325322Smseidel	};
201*2a325322Smseidel	CancelButton BTN_CANCEL
202*2a325322Smseidel	{
203*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 23 ) ;
204*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
205*2a325322Smseidel		TabStop = TRUE ;
206*2a325322Smseidel	};
207*2a325322Smseidel	HelpButton BTN_HELP
208*2a325322Smseidel	{
209*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 43 ) ;
210*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
211*2a325322Smseidel		TabStop = TRUE ;
212*2a325322Smseidel	};
213cdf0e10cSrcweir};
214cdf0e10cSrcweir
215cdf0e10cSrcweir// ----------------------
216cdf0e10cSrcweir// - DLG_FILTERSOLARIZE -
217cdf0e10cSrcweir// ----------------------
218cdf0e10cSrcweir
219cdf0e10cSrcweirModalDialog RID_SVX_GRFFILTER_DLG_SEPIA
220cdf0e10cSrcweir{
221*2a325322Smseidel	HelpID = CMD_SID_GRFFILTER_SEPIA ;
222*2a325322Smseidel	OutputSize = TRUE ;
223*2a325322Smseidel	Moveable = TRUE ;
224*2a325322Smseidel	SVLook = TRUE ;
225*2a325322Smseidel	Size = MAP_APPFONT ( 250, 100 ) ;
226cdf0e10cSrcweir
227*2a325322Smseidel	Text [ en-US ] = "Aging" ;
228cdf0e10cSrcweir
229*2a325322Smseidel	FixedLine FL_PARAMETER
230*2a325322Smseidel	{
231*2a325322Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
232*2a325322Smseidel		Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
233*2a325322Smseidel		Text [ en-US ] = "Parameters" ;
234cdf0e10cSrcweir	};
235cdf0e10cSrcweir	Control CTL_PREVIEW
236cdf0e10cSrcweir	{
237*2a325322Smseidel		Pos = MAP_APPFONT ( 104, 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
238*2a325322Smseidel		Size = MAP_APPFONT ( 81, 73 ) ;
239cdf0e10cSrcweir	};
240cdf0e10cSrcweir#define MA_Y8	3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
241*2a325322Smseidel	FixedText DLG_FILTERSEPIA_FT_SEPIA
242*2a325322Smseidel	{
243*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y8 ) ;
244*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
245*2a325322Smseidel		Text [ en-US ] = "Aging degree" ;
246cdf0e10cSrcweir	};
247cdf0e10cSrcweir#define MA_Y9	MA_Y8 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
248*2a325322Smseidel	MetricField DLG_FILTERSEPIA_MTR_SEPIA
249*2a325322Smseidel	{
250*2a325322Smseidel		HelpID = "cui:MetricField:RID_SVX_GRFFILTER_DLG_SEPIA:DLG_FILTERSEPIA_MTR_SEPIA" ;
251*2a325322Smseidel		Border = TRUE ;
252*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y9 ) ;
253*2a325322Smseidel		Size = MAP_APPFONT ( 35, 12 ) ;
254*2a325322Smseidel		TabStop = TRUE ;
255*2a325322Smseidel		Right = TRUE ;
256*2a325322Smseidel		Repeat = TRUE ;
257*2a325322Smseidel		Spin = TRUE ;
258*2a325322Smseidel		Minimum = 1 ;
259*2a325322Smseidel		Maximum = 100 ;
260*2a325322Smseidel		StrictFormat = TRUE ;
261*2a325322Smseidel		Unit = FUNIT_PERCENT ;
262*2a325322Smseidel		First = 1 ;
263*2a325322Smseidel		Last = 100 ;
264*2a325322Smseidel		SpinSize = 1 ;
265*2a325322Smseidel	};
266cdf0e10cSrcweir	OKButton BTN_OK
267*2a325322Smseidel	{
268*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 6 ) ;
269*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
270*2a325322Smseidel		TabStop = TRUE ;
271*2a325322Smseidel		DefButton = TRUE ;
272*2a325322Smseidel	};
273*2a325322Smseidel	CancelButton BTN_CANCEL
274*2a325322Smseidel	{
275*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 23 ) ;
276*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
277*2a325322Smseidel		TabStop = TRUE ;
278*2a325322Smseidel	};
279*2a325322Smseidel	HelpButton BTN_HELP
280*2a325322Smseidel	{
281*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 43 ) ;
282*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
283*2a325322Smseidel		TabStop = TRUE ;
284*2a325322Smseidel	};
285cdf0e10cSrcweir};
286cdf0e10cSrcweir
287cdf0e10cSrcweir// --------------------
288cdf0e10cSrcweir// - DLG_FILTERPOSTER -
289cdf0e10cSrcweir// --------------------
290cdf0e10cSrcweir
291cdf0e10cSrcweirModalDialog RID_SVX_GRFFILTER_DLG_POSTER
292cdf0e10cSrcweir{
293*2a325322Smseidel	HelpID = CMD_SID_GRFFILTER_POSTER ;
294*2a325322Smseidel	OutputSize = TRUE ;
295*2a325322Smseidel	Moveable = TRUE ;
296*2a325322Smseidel	SVLook = TRUE ;
297*2a325322Smseidel	Size = MAP_APPFONT ( 250, 100 ) ;
298*2a325322Smseidel
299*2a325322Smseidel	Text [ en-US ] = "Posterize" ;
300cdf0e10cSrcweir
301*2a325322Smseidel	FixedLine FL_PARAMETER
302*2a325322Smseidel	{
303*2a325322Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
304*2a325322Smseidel		Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
305*2a325322Smseidel		Text [ en-US ] = "Parameters" ;
306cdf0e10cSrcweir	};
307cdf0e10cSrcweir	Control CTL_PREVIEW
308cdf0e10cSrcweir	{
309*2a325322Smseidel		Pos = MAP_APPFONT ( 104, 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
310*2a325322Smseidel		Size = MAP_APPFONT ( 81, 73 ) ;
311cdf0e10cSrcweir	};
312cdf0e10cSrcweir#define MA_Y10	3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
313*2a325322Smseidel	FixedText DLG_FILTERPOSTER_FT_POSTER
314*2a325322Smseidel	{
315*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y10 ) ;
316*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
317*2a325322Smseidel		Text [ en-US ] = "Poster colors" ;
318cdf0e10cSrcweir	};
319cdf0e10cSrcweir#define MA_Y11	MA_Y10 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
320*2a325322Smseidel	NumericField DLG_FILTERPOSTER_NUM_POSTER
321*2a325322Smseidel	{
322*2a325322Smseidel		HelpID = "cui:NumericField:RID_SVX_GRFFILTER_DLG_POSTER:DLG_FILTERPOSTER_NUM_POSTER" ;
323*2a325322Smseidel		Border = TRUE ;
324*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y11 ) ;
325*2a325322Smseidel		Size = MAP_APPFONT ( 35, 12 ) ;
326*2a325322Smseidel		TabStop = TRUE ;
327*2a325322Smseidel		Repeat = TRUE ;
328*2a325322Smseidel		Spin = TRUE ;
329*2a325322Smseidel		Minimum = 2 ;
330*2a325322Smseidel		Maximum = 64 ;
331*2a325322Smseidel		StrictFormat = TRUE ;
332*2a325322Smseidel		First = 2 ;
333*2a325322Smseidel		Last = 64 ;
334*2a325322Smseidel		SpinSize = 1 ;
335*2a325322Smseidel	};
336cdf0e10cSrcweir	OKButton BTN_OK
337*2a325322Smseidel	{
338*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 6 ) ;
339*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
340*2a325322Smseidel		TabStop = TRUE ;
341*2a325322Smseidel		DefButton = TRUE ;
342*2a325322Smseidel	};
343*2a325322Smseidel	CancelButton BTN_CANCEL
344*2a325322Smseidel	{
345*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 23 ) ;
346*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
347*2a325322Smseidel		TabStop = TRUE ;
348*2a325322Smseidel	};
349*2a325322Smseidel	HelpButton BTN_HELP
350*2a325322Smseidel	{
351*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 43 ) ;
352*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
353*2a325322Smseidel		TabStop = TRUE ;
354*2a325322Smseidel	};
355cdf0e10cSrcweir};
356cdf0e10cSrcweir
357cdf0e10cSrcweir// --------------------
358cdf0e10cSrcweir// - DLG_FILTEREMBOSS -
359cdf0e10cSrcweir// --------------------
360cdf0e10cSrcweir
361cdf0e10cSrcweirTabPage RID_SVX_GRFFILTER_DLG_EMBOSS_TAB
362cdf0e10cSrcweir{
363*2a325322Smseidel	HelpID = "cui:TabPage:RID_SVX_GRFFILTER_DLG_EMBOSS_TAB" ;
364*2a325322Smseidel	Pos = MAP_APPFONT ( 0, 0 ) ;
365*2a325322Smseidel	Size = MAP_APPFONT ( 0, 0 ) ;
366cdf0e10cSrcweir};
367cdf0e10cSrcweir
368cdf0e10cSrcweirModalDialog RID_SVX_GRFFILTER_DLG_EMBOSS
369cdf0e10cSrcweir{
370*2a325322Smseidel	HelpID = CMD_SID_GRFFILTER_EMBOSS ;
371*2a325322Smseidel	OutputSize = TRUE ;
372*2a325322Smseidel	Moveable = TRUE ;
373*2a325322Smseidel	SVLook = TRUE ;
374*2a325322Smseidel	Size = MAP_APPFONT ( 250, 100 ) ;
375*2a325322Smseidel
376*2a325322Smseidel	Text [ en-US ] = "Relief" ;
377cdf0e10cSrcweir
378*2a325322Smseidel	FixedLine FL_PARAMETER
379*2a325322Smseidel	{
380*2a325322Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
381*2a325322Smseidel		Size = MAP_APPFONT ( 182, RSC_CD_FIXEDLINE_HEIGHT ) ;
382*2a325322Smseidel		Text [ en-US ] = "Parameters" ;
383cdf0e10cSrcweir	};
384cdf0e10cSrcweir	Control CTL_PREVIEW
385cdf0e10cSrcweir	{
386*2a325322Smseidel		Pos = MAP_APPFONT ( 104, 3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP ) ;
387*2a325322Smseidel		Size = MAP_APPFONT ( 81, 73 ) ;
388cdf0e10cSrcweir	};
389cdf0e10cSrcweir#define MA_Y12	3 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP
390*2a325322Smseidel	FixedText DLG_FILTEREMBOSS_FT_LIGHT
391*2a325322Smseidel	{
392*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y12 ) ;
393*2a325322Smseidel		Size = MAP_APPFONT ( 77, 10 ) ;
394*2a325322Smseidel		Text [ en-US ] = "Light source" ;
395cdf0e10cSrcweir	};
396cdf0e10cSrcweir#define MA_Y13	MA_Y12 + RSC_CD_FIXEDTEXT_HEIGHT + RSC_SP_CTRL_DESC_Y
397*2a325322Smseidel	Control DLG_FILTEREMBOSS_CTL_LIGHT
398*2a325322Smseidel	{
399cdf0e10cSrcweir		HelpID = HID_GRFFILTER_EMBOSS_LIGHT ;
400*2a325322Smseidel		Border = TRUE ;
401*2a325322Smseidel		Pos = MAP_APPFONT ( 12, MA_Y13 ) ;
402*2a325322Smseidel		Size = MAP_APPFONT ( 77, 60 ) ;
403*2a325322Smseidel		TabStop = TRUE ;
404*2a325322Smseidel	};
405cdf0e10cSrcweir	OKButton BTN_OK
406*2a325322Smseidel	{
407*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 6 ) ;
408*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
409*2a325322Smseidel		TabStop = TRUE ;
410*2a325322Smseidel		DefButton = TRUE ;
411*2a325322Smseidel	};
412*2a325322Smseidel	CancelButton BTN_CANCEL
413*2a325322Smseidel	{
414*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 23 ) ;
415*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
416*2a325322Smseidel		TabStop = TRUE ;
417*2a325322Smseidel	};
418*2a325322Smseidel	HelpButton BTN_HELP
419*2a325322Smseidel	{
420*2a325322Smseidel		Pos = MAP_APPFONT ( 194, 43 ) ;
421*2a325322Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
422*2a325322Smseidel		TabStop = TRUE ;
423*2a325322Smseidel	};
424cdf0e10cSrcweir};
425cdf0e10cSrcweir
426*2a325322Smseidel// ********************************************************************** EOF
427