xref: /aoo4110/main/sd/source/ui/dlg/morphdlg.src (revision b1cdbd2c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "app.hrc"
25#include "morphdlg.hrc"
26#include "helpids.h"
27
28/******************************************************************************
29|*
30|*
31|*
32\******************************************************************************/
33ModalDialog DLG_MORPH
34{
35	HelpID = CMD_SID_POLYGON_MORPHING ;
36	HelpID = ".uno:Morphing" ;
37	OutputSize = TRUE ;
38	SVLook = TRUE ;
39	Size = MAP_APPFONT ( 196 , 68 ) ;
40	/* ### ACHTUNG: Neuer Text in Resource? �berblenden : �berblenden */
41	Moveable = TRUE ;
42	Closeable = TRUE ;
43	OKButton BTN_OK
44	{
45		Pos = MAP_APPFONT ( 141 , 6 ) ;
46		Size = MAP_APPFONT ( 50 , 14 ) ;
47		TabStop = TRUE ;
48		DefButton = TRUE ;
49	};
50	CancelButton BTN_CANCEL
51	{
52		Pos = MAP_APPFONT ( 141 , 23 ) ;
53		Size = MAP_APPFONT ( 50 , 14 ) ;
54		TabStop = TRUE ;
55	};
56	HelpButton BTN_HELP
57	{
58		Pos = MAP_APPFONT ( 140 , 43 ) ;
59		Size = MAP_APPFONT ( 50 , 14 ) ;
60		TabStop = TRUE ;
61	};
62	FixedLine GRP_PRESET
63	{
64		Pos = MAP_APPFONT ( 6 , 3 ) ;
65		Size = MAP_APPFONT ( 129 , 8 ) ;
66		Text [ en-US ] = "Settings" ;
67	};
68	FixedText FT_STEPS
69	{
70		Pos = MAP_APPFONT ( 12 , 16 ) ;
71		Size = MAP_APPFONT ( 40 , 10 ) ;
72		Text [ en-US ] = "Increments" ;
73	};
74	MetricField MTF_STEPS
75	{
76	    HelpID = "sd:MetricField:DLG_MORPH:MTF_STEPS";
77		Border = TRUE ;
78		Pos = MAP_APPFONT ( 56 , 14 ) ;
79		Size = MAP_APPFONT ( 30 , 12 ) ;
80		TabStop = TRUE ;
81		Spin = TRUE ;
82		Repeat = TRUE ;
83		Minimum = 1 ;
84		Maximum = 256 ;
85		First = 1 ;
86		Last = 256 ;
87	};
88	CheckBox CBX_ATTRIBUTES
89	{
90	    HelpID = "sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES";
91		Pos = MAP_APPFONT ( 12 , 29 ) ;
92		Size = MAP_APPFONT ( 121 , 12 ) ;
93		/* ### ACHTUNG: Neuer Text in Resource? Attributierung �berblenden : Attributierung �berblenden */
94		TabStop = TRUE ;
95		Text [ en-US ] = "Cross-fade attributes" ;
96	};
97	CheckBox CBX_ORIENTATION
98	{
99	    HelpID = "sd:CheckBox:DLG_MORPH:CBX_ORIENTATION";
100		Pos = MAP_APPFONT ( 12 , 44 ) ;
101		Size = MAP_APPFONT ( 121 , 12 ) ;
102		TabStop = TRUE ;
103		Text [ en-US ] = "Same orientation" ;
104	};
105	Text [ en-US ] = "Cross-fading" ;
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
131
132
133
134
135
136
137
138
139
140