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