xref: /AOO42X/main/sd/source/ui/animations/CustomAnimationPane.src (revision 4ca6e4aeb305718a0ddc4a3d96546f7d1ebe67a8)
166220049SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
366220049SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
466220049SAndrew Rist * or more contributor license agreements.  See the NOTICE file
566220049SAndrew Rist * distributed with this work for additional information
666220049SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
766220049SAndrew Rist * to you under the Apache License, Version 2.0 (the
866220049SAndrew Rist * "License"); you may not use this file except in compliance
966220049SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
1166220049SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
1366220049SAndrew Rist * Unless required by applicable law or agreed to in writing,
1466220049SAndrew Rist * software distributed under the License is distributed on an
1566220049SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1666220049SAndrew Rist * KIND, either express or implied.  See the License for the
1766220049SAndrew Rist * specific language governing permissions and limitations
1866220049SAndrew Rist * under the License.
19cdf0e10cSrcweir *
2066220049SAndrew Rist *************************************************************/
2166220049SAndrew Rist
22cdf0e10cSrcweir#include "CustomAnimationPane.hrc"
23cdf0e10cSrcweir#include "CustomAnimation.hrc"
24cdf0e10cSrcweir#include "helpids.h"
25cdf0e10cSrcweir
26cdf0e10cSrcweirControl DLG_CUSTOMANIMATIONPANE
27cdf0e10cSrcweir{
28cdf0e10cSrcweir    OutputSize = TRUE ;
29cdf0e10cSrcweir    DialogControl = TRUE ;
30cdf0e10cSrcweir    Border = FALSE ;
31cdf0e10cSrcweir
32cdf0e10cSrcweir    Size = MAP_APPFONT ( 160, 300 ) ;
33cdf0e10cSrcweir    Text [ en-US ] = "Custom Animation" ;
34cdf0e10cSrcweir
35cdf0e10cSrcweir    FixedLine FL_EFFECT
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        OutputSize = TRUE ;
38cdf0e10cSrcweir        Size = MAP_APPFONT ( 260, 8 ) ;
39cdf0e10cSrcweir
40cdf0e10cSrcweir        Text [ en-US ] = "Effect" ;
41cdf0e10cSrcweir    };
42cdf0e10cSrcweir
43cdf0e10cSrcweir    PushButton PB_ADD_EFFECT
44cdf0e10cSrcweir    {
45cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT ;
46cdf0e10cSrcweir        OutputSize = TRUE ;
47cdf0e10cSrcweir        TabStop = TRUE ;
48cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
49cdf0e10cSrcweir
50cdf0e10cSrcweir        Text [ en-US ] = "~Add..." ;
51cdf0e10cSrcweir    };
52cdf0e10cSrcweir
53cdf0e10cSrcweir    PushButton PB_CHANGE_EFFECT
54cdf0e10cSrcweir    {
55cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT ;
56cdf0e10cSrcweir        OutputSize = TRUE ;
57cdf0e10cSrcweir        TabStop = TRUE ;
58cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
59cdf0e10cSrcweir
60cdf0e10cSrcweir        Text [ en-US ] = "~Change..." ;
61cdf0e10cSrcweir    };
62cdf0e10cSrcweir
63cdf0e10cSrcweir    PushButton PB_REMOVE_EFFECT
64cdf0e10cSrcweir    {
65cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT ;
66cdf0e10cSrcweir        OutputSize = TRUE ;
67cdf0e10cSrcweir        TabStop = TRUE ;
68cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
69cdf0e10cSrcweir
70cdf0e10cSrcweir        Text [ en-US ] = "~Remove" ;
71cdf0e10cSrcweir    };
72cdf0e10cSrcweir
73cdf0e10cSrcweir    FixedLine FL_MODIFY
74cdf0e10cSrcweir    {
75cdf0e10cSrcweir        OutputSize = TRUE ;
76cdf0e10cSrcweir        Size = MAP_APPFONT ( 260, 8 ) ;
77cdf0e10cSrcweir
78cdf0e10cSrcweir        Text [ en-US ] = "Modify effect" ;
79cdf0e10cSrcweir    };
80cdf0e10cSrcweir
81cdf0e10cSrcweir    FixedText FT_START
82cdf0e10cSrcweir    {
83cdf0e10cSrcweir        OutputSize = TRUE ;
84cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 8 ) ;
85cdf0e10cSrcweir
86cdf0e10cSrcweir        Text [ en-US ] = "~Start" ;
87cdf0e10cSrcweir    };
88cdf0e10cSrcweir
89cdf0e10cSrcweir    ListBox LB_START
90cdf0e10cSrcweir    {
91cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_LB_START ;
92cdf0e10cSrcweir        Size = MAP_APPFONT ( 120, 48 ) ;
93cdf0e10cSrcweir        TabStop = TRUE ;
94cdf0e10cSrcweir        Border = TRUE ;
95cdf0e10cSrcweir        DropDown = TRUE ;
96cdf0e10cSrcweir
97cdf0e10cSrcweir        StringList [ en-US ] =
98cdf0e10cSrcweir        {
99cdf0e10cSrcweir            < "On click" ;          > ;
100cdf0e10cSrcweir            < "With previous" ;     > ;
101cdf0e10cSrcweir            < "After previous" ;    > ;
102cdf0e10cSrcweir        };
103cdf0e10cSrcweir    };
104cdf0e10cSrcweir
105cdf0e10cSrcweir    FixedText FT_PROPERTY
106cdf0e10cSrcweir    {
107cdf0e10cSrcweir        OutputSize = TRUE ;
108cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 8 ) ;
109cdf0e10cSrcweir
110cdf0e10cSrcweir        Text [ en-US ] = "Property" ;
111cdf0e10cSrcweir    };
112cdf0e10cSrcweir
113cdf0e10cSrcweir    ListBox LB_PROPERTY
114cdf0e10cSrcweir    {
115cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY ;
116cdf0e10cSrcweir        Size = MAP_APPFONT ( 120, 48 ) ;
117cdf0e10cSrcweir        TabStop = TRUE ;
118cdf0e10cSrcweir        Border = TRUE ;
119cdf0e10cSrcweir        DropDown = TRUE ;
120cdf0e10cSrcweir    };
121cdf0e10cSrcweir
122cdf0e10cSrcweir    PushButton PB_PROPERTY_MORE
123cdf0e10cSrcweir    {
124cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE ;
125cdf0e10cSrcweir        OutputSize = TRUE ;
126cdf0e10cSrcweir        TabStop = TRUE ;
127cdf0e10cSrcweir        Size = MAP_APPFONT ( 16, 14 ) ;
128cdf0e10cSrcweir
129*4ca6e4aeSmseidel        Text = "~..." ;
130cdf0e10cSrcweir
131cdf0e10cSrcweir        QuickHelpText [en-US ] = "Effect Options" ;
132cdf0e10cSrcweir    };
133cdf0e10cSrcweir
134cdf0e10cSrcweir    FixedText FT_SPEED
135cdf0e10cSrcweir    {
136cdf0e10cSrcweir        OutputSize = TRUE ;
137cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 8 ) ;
138cdf0e10cSrcweir
139cdf0e10cSrcweir        Text [ en-US ] = "Sp~eed" ;
140cdf0e10cSrcweir    };
141cdf0e10cSrcweir
142cdf0e10cSrcweir    ComboBox CB_SPEED
143cdf0e10cSrcweir    {
144cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_CB_SPEED ;
145cdf0e10cSrcweir        Size = MAP_APPFONT ( 120, 48 ) ;
146cdf0e10cSrcweir        TabStop = TRUE ;
147cdf0e10cSrcweir        Border = TRUE ;
148cdf0e10cSrcweir        DropDown = TRUE ;
149cdf0e10cSrcweir    };
150cdf0e10cSrcweir
151cdf0e10cSrcweir    Control CT_CUSTOM_ANIMATION_LIST
152cdf0e10cSrcweir    {
153cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST ;
154cdf0e10cSrcweir        TabStop = TRUE ;
155cdf0e10cSrcweir        Border = TRUE ;
156cdf0e10cSrcweir    };
157cdf0e10cSrcweir
158cdf0e10cSrcweir    FixedText FT_CHANGE_ORDER
159cdf0e10cSrcweir    {
160cdf0e10cSrcweir        OutputSize = TRUE ;
161cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 8 ) ;
162cdf0e10cSrcweir
163cdf0e10cSrcweir        Text [ en-US ] = "Change order:" ;
164cdf0e10cSrcweir    };
165cdf0e10cSrcweir
166cdf0e10cSrcweir    PushButton PB_MOVE_UP
167cdf0e10cSrcweir    {
168cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP ;
169cdf0e10cSrcweir        OutputSize = TRUE ;
170cdf0e10cSrcweir        TabStop = TRUE ;
171cdf0e10cSrcweir        Size = MAP_APPFONT ( 16, 14 ) ;
172cdf0e10cSrcweir    };
173cdf0e10cSrcweir
174cdf0e10cSrcweir    PushButton PB_MOVE_DOWN
175cdf0e10cSrcweir    {
176cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN ;
177cdf0e10cSrcweir        OutputSize = TRUE ;
178cdf0e10cSrcweir        TabStop = TRUE ;
179cdf0e10cSrcweir        Size = MAP_APPFONT ( 16, 14 ) ;
180cdf0e10cSrcweir    };
181cdf0e10cSrcweir
182cdf0e10cSrcweir    FixedLine FL_SEPERATOR1
183cdf0e10cSrcweir    {
184cdf0e10cSrcweir        OutputSize = TRUE ;
185cdf0e10cSrcweir        Size = MAP_APPFONT ( 8, 8 ) ;
186cdf0e10cSrcweir    };
187cdf0e10cSrcweir
188cdf0e10cSrcweir    PushButton PB_PLAY
189cdf0e10cSrcweir    {
190cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_PLAY ;
191cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
192cdf0e10cSrcweir        TabStop = TRUE ;
193cdf0e10cSrcweir
194cdf0e10cSrcweir        Text [ en-US ] = "~Play" ;
195cdf0e10cSrcweir    };
196cdf0e10cSrcweir
197cdf0e10cSrcweir    PushButton PB_SLIDE_SHOW
198cdf0e10cSrcweir    {
199cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW ;
200cdf0e10cSrcweir        Size = MAP_APPFONT ( 80, 14 ) ;
201cdf0e10cSrcweir        TabStop = TRUE ;
202cdf0e10cSrcweir
203cdf0e10cSrcweir        Text [ en-US ] = "Slide Sho~w" ;
204cdf0e10cSrcweir    };
205cdf0e10cSrcweir
206cdf0e10cSrcweir    FixedLine FL_SEPERATOR2
207cdf0e10cSrcweir    {
208cdf0e10cSrcweir        Size = MAP_APPFONT ( 8, 8 ) ;
209cdf0e10cSrcweir    };
210cdf0e10cSrcweir
211cdf0e10cSrcweir    CheckBox CB_AUTOPREVIEW
212cdf0e10cSrcweir    {
213cdf0e10cSrcweir        HelpId = HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW ;
214cdf0e10cSrcweir        Size = MAP_APPFONT ( 120, 10 ) ;
215cdf0e10cSrcweir        TabStop = TRUE ;
216cdf0e10cSrcweir        Text [ en-US ] = "Automatic pre~view" ;
217cdf0e10cSrcweir    };
218cdf0e10cSrcweir};
219cdf0e10cSrcweir
22061060e70Smseidel// ********************************************************************** EOF
221