1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "CustomAnimationCreateDialog.hrc"
29#include "CustomAnimation.hrc"
30
31TabDialog DLG_CUSTOMANIMATION_CREATE
32{
33	Size = MAP_APPFONT ( 162 , 244 ) ;
34	OutputSize = TRUE ;
35	SVLook = TRUE ;
36	Moveable = TRUE ;
37	Closeable = TRUE ;
38
39	Text [ en-US ] = "Custom Animation" ;
40
41	TabControl 1
42	{
43		OutputSize = TRUE ;
44		Pos = MAP_APPFONT ( 3 , 3 ) ;
45		Size = MAP_APPFONT ( 156, 217 ) ;
46		PageList =
47		{
48			PageItem
49			{
50				Identifier = RID_TP_CUSTOMANIMATION_ENTRANCE ;
51				Text [ en-US ] = "Entrance" ;
52			};
53
54			PageItem
55			{
56				Identifier = RID_TP_CUSTOMANIMATION_EMPHASIS;
57				Text [ en-US ] = "Emphasis";
58			};
59
60			PageItem
61			{
62				Identifier = RID_TP_CUSTOMANIMATION_EXIT;
63				Text [ en-US ] = "Exit";
64			};
65
66			PageItem
67			{
68				Identifier = RID_TP_CUSTOMANIMATION_MOTIONPATH;
69				Text [ en-US ] = "Motion Paths";
70			};
71
72			PageItem
73			{
74				Identifier = RID_TP_CUSTOMANIMATION_MISCEFFECTS;
75				Text [ en-US ] = "Misc Effects";
76			};
77		};
78	};
79	OKButton 1
80	{
81		Pos = MAP_APPFONT ( 3 , 223 ) ;
82		Size = MAP_APPFONT ( 50 , 14 ) ;
83		TabStop = TRUE ;
84	};
85	CancelButton 1
86	{
87		Pos = MAP_APPFONT ( 56 , 223 ) ;
88		Size = MAP_APPFONT ( 50 , 14 ) ;
89		TabStop = TRUE ;
90	};
91	HelpButton 1
92	{
93		Pos = MAP_APPFONT ( 109 , 223 ) ;
94		Size = MAP_APPFONT ( 50 , 14 ) ;
95		TabStop = TRUE ;
96	};
97};
98
99TabPage RID_TP_CUSTOMANIMATION_ENTRANCE
100{
101    HelpID = "sd:TabPage:RID_TP_CUSTOMANIMATION_ENTRANCE";
102	Hide = TRUE;
103	Size = MAP_APPFONT ( 156, 217 );
104
105	ListBox LB_EFFECTS
106	{
107	    HelpID = "sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS";
108		Pos = MAP_APPFONT ( 3 , 3  ) ;
109		Size = MAP_APPFONT( 144, 160 );
110		OutputSize = TRUE;
111		TabStop = TRUE ;
112		Border = TRUE ;
113	};
114
115	FixedText FT_SPEED
116	{
117		OutputSize = TRUE;
118		Pos = MAP_APPFONT ( 3 , 167  ) ;
119		Size = MAP_APPFONT( 42, 8 );
120
121		Text [ en-US ] = "Speed";
122	};
123
124	ComboBox CB_SPEED
125	{
126	    HelpID = "sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED";
127		Pos = MAP_APPFONT ( 48 , 166 ) ;
128        Size = MAP_APPFONT ( 101, 48 );
129		TabStop = TRUE ;
130		Border = TRUE ;
131		DropDown = TRUE ;
132	};
133
134	CheckBox CBX_PREVIEW
135	{
136	    HelpID = "sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW";
137        Pos = MAP_APPFONT ( 3 , 181 ) ;
138        Size = MAP_APPFONT ( 143 , 10 ) ;
139		TabStop = TRUE ;
140		Text [ en-US ] = "Automatic preview" ;
141	};
142
143	String STR_USERPATH
144	{
145		Text [ en-US ] = "User paths";
146	};
147};
148
149