Crazy Eddies GUI System
0.7.9
Main Page
Related Pages
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
CEGUIAnimation_xmlHandler.h
1
/***********************************************************************
2
filename: CEGUIAnimation_xmlHandler.h
3
created: Wed Aug 11 2010
4
author: Paul D Turner <paul@cegui.org.uk>
5
*************************************************************************/
6
/***************************************************************************
7
* Copyright (C) 2004 - 2010 Paul D Turner & The CEGUI Development Team
8
*
9
* Permission is hereby granted, free of charge, to any person obtaining
10
* a copy of this software and associated documentation files (the
11
* "Software"), to deal in the Software without restriction, including
12
* without limitation the rights to use, copy, modify, merge, publish,
13
* distribute, sublicense, and/or sell copies of the Software, and to
14
* permit persons to whom the Software is furnished to do so, subject to
15
* the following conditions:
16
*
17
* The above copyright notice and this permission notice shall be
18
* included in all copies or substantial portions of the Software.
19
*
20
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26
* OTHER DEALINGS IN THE SOFTWARE.
27
***************************************************************************/
28
#ifndef _CEGUIAnimation_xmlHandler_h_
29
#define _CEGUIAnimation_xmlHandler_h_
30
31
#include "CEGUIChainedXMLHandler.h"
32
#include "CEGUIString.h"
33
34
// Start of CEGUI namespace section
35
namespace
CEGUI
36
{
38
class
CEGUIEXPORT
Animation_xmlHandler
:
public
ChainedXMLHandler
39
{
40
public
:
41
Animation_xmlHandler
();
42
~
Animation_xmlHandler
();
43
44
protected
:
45
// implement ChainedXMLHandler interface.
46
void
elementStartLocal(
const
String
& element,
47
const
XMLAttributes
& attributes);
48
void
elementEndLocal(
const
String
& element);
49
};
50
51
//----------------------------------------------------------------------------//
53
class
CEGUIEXPORT
AnimationDefinitionHandler
:
public
ChainedXMLHandler
54
{
55
public
:
57
static
const
String
ElementName
;
58
59
AnimationDefinitionHandler
(
const
XMLAttributes
& attributes,
60
const
String
& name_prefix);
61
~
AnimationDefinitionHandler
();
62
63
protected
:
64
// implement ChainedXMLHandler interface.
65
void
elementStartLocal(
const
String
& element,
66
const
XMLAttributes
& attributes);
67
void
elementEndLocal(
const
String
& element);
68
70
Animation
*
d_anim
;
71
};
72
73
//----------------------------------------------------------------------------//
75
class
CEGUIEXPORT
AnimationAffectorHandler
:
public
ChainedXMLHandler
76
{
77
public
:
79
static
const
String
ElementName
;
80
81
AnimationAffectorHandler
(
const
XMLAttributes
& attributes,
82
Animation
& anim);
83
~
AnimationAffectorHandler
();
84
85
protected
:
86
// implement ChainedXMLHandler interface.
87
void
elementStartLocal(
const
String
& element,
88
const
XMLAttributes
& attributes);
89
void
elementEndLocal(
const
String
& element);
90
92
Affector
*
d_affector
;
93
};
94
95
//----------------------------------------------------------------------------//
97
class
CEGUIEXPORT
AnimationKeyFrameHandler
:
public
ChainedXMLHandler
98
{
99
public
:
101
static
const
String
ElementName
;
102
103
AnimationKeyFrameHandler
(
const
XMLAttributes
& attributes,
104
Affector
& affector);
105
~
AnimationKeyFrameHandler
();
106
107
protected
:
108
// implement ChainedXMLHandler interface.
109
void
elementStartLocal(
const
String
& element,
110
const
XMLAttributes
& attributes);
111
void
elementEndLocal(
const
String
& element);
112
};
113
114
//----------------------------------------------------------------------------//
116
class
CEGUIEXPORT
AnimationSubscriptionHandler
:
public
ChainedXMLHandler
117
{
118
public
:
120
static
const
String
ElementName
;
121
122
AnimationSubscriptionHandler
(
const
XMLAttributes
& attributes,
123
Animation
& anim);
124
~
AnimationSubscriptionHandler
();
125
126
protected
:
127
// implement ChainedXMLHandler interface.
128
void
elementStartLocal(
const
String
& element,
129
const
XMLAttributes
& attributes);
130
void
elementEndLocal(
const
String
& element);
131
};
132
133
}
// End of CEGUI namespace section
134
135
#endif // end of guard _CEGUIAnimation_xmlHandler_h_
136
cegui
include
CEGUIAnimation_xmlHandler.h
Generated by
1.8.3.1