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		DefButton = TRUE;
85	};
86	CancelButton 1
87	{
88		Pos = MAP_APPFONT ( 56 , 223 ) ;
89		Size = MAP_APPFONT ( 50 , 14 ) ;
90		TabStop = TRUE ;
91		DefButton = TRUE;
92	};
93	HelpButton 1
94	{
95		Pos = MAP_APPFONT ( 109 , 223 ) ;
96		Size = MAP_APPFONT ( 50 , 14 ) ;
97		TabStop = TRUE ;
98	};
99};
100
101TabPage RID_TP_CUSTOMANIMATION_ENTRANCE
102{
103    HelpID = "sd:TabPage:RID_TP_CUSTOMANIMATION_ENTRANCE";
104	Hide = TRUE;
105	Size = MAP_APPFONT ( 156, 217 );
106
107	ListBox LB_EFFECTS
108	{
109	    HelpID = "sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS";
110		Pos = MAP_APPFONT ( 3 , 3  ) ;
111		Size = MAP_APPFONT( 144, 160 );
112		OutputSize = TRUE;
113		TabStop = TRUE ;
114		Border = TRUE ;
115	};
116
117	FixedText FT_SPEED
118	{
119		OutputSize = TRUE;
120		Pos = MAP_APPFONT ( 3 , 167  ) ;
121		Size = MAP_APPFONT( 42, 8 );
122
123		Text [ en-US ] = "Speed";
124	};
125
126	ComboBox CB_SPEED
127	{
128	    HelpID = "sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED";
129		Pos = MAP_APPFONT ( 48 , 166 ) ;
130        Size = MAP_APPFONT ( 101, 48 );
131		TabStop = TRUE ;
132		Border = TRUE ;
133		DropDown = TRUE ;
134	};
135
136	CheckBox CBX_PREVIEW
137	{
138	    HelpID = "sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW";
139        Pos = MAP_APPFONT ( 3 , 181 ) ;
140        Size = MAP_APPFONT ( 143 , 10 ) ;
141		TabStop = TRUE ;
142		Text [ en-US ] = "Automatic preview" ;
143	};
144
145	String STR_USERPATH
146	{
147		Text [ en-US ] = "User paths";
148	};
149};
150
151