xref: /trunk/main/sd/source/ui/dlg/morphdlg.src (revision ffd38472365e95f6a578737bc9a5eb0fac624a86)
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#include "app.hrc"
23#include "morphdlg.hrc"
24#include "helpids.h"
25
26ModalDialog DLG_MORPH
27{
28    HelpID = CMD_SID_POLYGON_MORPHING ;
29    HelpID = ".uno:Morphing" ;
30    OutputSize = TRUE ;
31    SVLook = TRUE ;
32    Size = MAP_APPFONT ( 196, 68 ) ;
33    Moveable = TRUE ;
34    Closeable = TRUE ;
35    OKButton BTN_OK
36    {
37        Pos = MAP_APPFONT ( 141, 6 ) ;
38        Size = MAP_APPFONT ( 50, 14 ) ;
39        TabStop = TRUE ;
40        DefButton = TRUE ;
41    };
42    CancelButton BTN_CANCEL
43    {
44        Pos = MAP_APPFONT ( 141, 23 ) ;
45        Size = MAP_APPFONT ( 50, 14 ) ;
46        TabStop = TRUE ;
47    };
48    HelpButton BTN_HELP
49    {
50        Pos = MAP_APPFONT ( 140, 43 ) ;
51        Size = MAP_APPFONT ( 50, 14 ) ;
52        TabStop = TRUE ;
53    };
54    FixedLine GRP_PRESET
55    {
56        Pos = MAP_APPFONT ( 6, 3 ) ;
57        Size = MAP_APPFONT ( 129, 8 ) ;
58        Text [ en-US ] = "Settings" ;
59    };
60    FixedText FT_STEPS
61    {
62        Pos = MAP_APPFONT ( 12, 16 ) ;
63        Size = MAP_APPFONT ( 40, 10 ) ;
64        Text [ en-US ] = "Increments" ;
65    };
66    MetricField MTF_STEPS
67    {
68        HelpID = "sd:MetricField:DLG_MORPH:MTF_STEPS" ;
69        Border = TRUE ;
70        Pos = MAP_APPFONT ( 56, 14 ) ;
71        Size = MAP_APPFONT ( 30, 12 ) ;
72        TabStop = TRUE ;
73        Spin = TRUE ;
74        Repeat = TRUE ;
75        Minimum = 1 ;
76        Maximum = 256 ;
77        First = 1 ;
78        Last = 256 ;
79    };
80    CheckBox CBX_ATTRIBUTES
81    {
82        HelpID = "sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES" ;
83        Pos = MAP_APPFONT ( 12, 29 ) ;
84        Size = MAP_APPFONT ( 121, 12 ) ;
85        TabStop = TRUE ;
86        Text [ en-US ] = "Cross-fade attributes" ;
87    };
88    CheckBox CBX_ORIENTATION
89    {
90        HelpID = "sd:CheckBox:DLG_MORPH:CBX_ORIENTATION" ;
91        Pos = MAP_APPFONT ( 12, 44 ) ;
92        Size = MAP_APPFONT ( 121, 12 ) ;
93        TabStop = TRUE ;
94        Text [ en-US ] = "Same orientation" ;
95    };
96    Text [ en-US ] = "Cross-fading" ;
97};
98
99// ********************************************************************** EOF
100