TDME2 1.9.121
GUIPositionEffect.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
9
14
15/**
16 * GUI position effect
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22
23public:
24 /**
25 * Reset effect state regarding position effect
26 * @param effectState effect state
27 */
28 inline static void resetEffectState(GUIEffectState* effectState) {
29 effectState->positionX = 0.0f;
30 effectState->positionY = 0.0f;
31 }
32
33 /**
34 * Public constructor
35 * @param guiNode GUI node
36 */
37 GUIPositionEffect(GUINode* guiNode);
38
39 /**
40 * @return position X
41 */
42 inline float getPositionX() const {
44 }
45
46 /**
47 * Set position X
48 * @param positionX position X
49 */
50 inline void setPositionX(float positionX) {
51 originalEndState.positionX = positionX;
52 }
53
54 /**
55 * @return position Y
56 */
57 inline float getPositionY() const {
59 }
60
61 /**
62 * Set position Y
63 * @param positionX position Y
64 */
65 inline void setPositionY(float positionY) {
66 originalEndState.positionY = positionY;
67 }
68
69 /**
70 * @return start position X
71 */
72 inline float getStartPositionX() const {
74 }
75
76 /**
77 * Set start position X
78 * @param positionX start position X
79 */
80 inline void setStartPositionX(float positionX) {
81 originalStartState.positionX = positionX;
82 }
83
84 /**
85 * @return start position Y
86 */
87 inline float getStartPositionY() const {
89 }
90
91 /**
92 * Set start position Y
93 * @param positionX start position Y
94 */
95 inline void setStartPositionY(float positionY) {
96 originalStartState.positionY = positionY;
97 }
98
99 // override methods
100 void apply(GUIRenderer* guiRenderer) override;
101
102};
GUI effect base class.
Definition: GUIEffect.h:23
GUIEffectState originalEndState
Definition: GUIEffect.h:43
GUIEffectState originalStartState
Definition: GUIEffect.h:42
GUIPositionEffect(GUINode *guiNode)
Public constructor.
void setPositionY(float positionY)
Set position Y.
void apply(GUIRenderer *guiRenderer) override
Apply effect.
static void resetEffectState(GUIEffectState *effectState)
Reset effect state regarding position effect.
void setStartPositionX(float positionX)
Set start position X.
void setStartPositionY(float positionY)
Set start position Y.
void setPositionX(float positionX)
Set position X.
GUI node base class.
Definition: GUINode.h:63