diff options
author | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
commit | 7028cbe09c688437910a25623098762bf0fa592d (patch) | |
tree | 10b5af58277d9880380c2251f109325542c4e6eb /src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h | |
parent | Move lemon to the src/others directory. (diff) | |
download | SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.zip SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.gz SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.bz2 SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.xz |
Move Irrlicht to src/others.
Diffstat (limited to 'src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h')
-rw-r--r-- | src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h b/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h new file mode 100644 index 0000000..4bd6aa9 --- /dev/null +++ b/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIInOutFader.h | |||
@@ -0,0 +1,75 @@ | |||
1 | // Copyright (C) 2002-2012 Nikolaus Gebhardt | ||
2 | // This file is part of the "Irrlicht Engine". | ||
3 | // For conditions of distribution and use, see copyright notice in irrlicht.h | ||
4 | |||
5 | #ifndef __C_GUI_IN_OUT_FADER_H_INCLUDED__ | ||
6 | #define __C_GUI_IN_OUT_FADER_H_INCLUDED__ | ||
7 | |||
8 | #include "IrrCompileConfig.h" | ||
9 | #ifdef _IRR_COMPILE_WITH_GUI_ | ||
10 | |||
11 | #include "IGUIInOutFader.h" | ||
12 | |||
13 | namespace irr | ||
14 | { | ||
15 | namespace gui | ||
16 | { | ||
17 | |||
18 | class CGUIInOutFader : public IGUIInOutFader | ||
19 | { | ||
20 | public: | ||
21 | |||
22 | //! constructor | ||
23 | CGUIInOutFader(IGUIEnvironment* environment, IGUIElement* parent, | ||
24 | s32 id, core::rect<s32> rectangle); | ||
25 | |||
26 | //! draws the element and its children | ||
27 | virtual void draw(); | ||
28 | |||
29 | //! Gets the color to fade out to or to fade in from. | ||
30 | virtual video::SColor getColor() const; | ||
31 | |||
32 | //! Sets the color to fade out to or to fade in from. | ||
33 | virtual void setColor(video::SColor color ); | ||
34 | virtual void setColor(video::SColor source, video::SColor dest); | ||
35 | |||
36 | //! Starts the fade in process. | ||
37 | virtual void fadeIn(u32 time); | ||
38 | |||
39 | //! Starts the fade out process. | ||
40 | virtual void fadeOut(u32 time); | ||
41 | |||
42 | //! Returns if the fade in or out process is done. | ||
43 | virtual bool isReady() const; | ||
44 | |||
45 | //! Writes attributes of the element. | ||
46 | virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const; | ||
47 | |||
48 | //! Reads attributes of the element | ||
49 | virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options); | ||
50 | |||
51 | private: | ||
52 | |||
53 | enum EFadeAction | ||
54 | { | ||
55 | EFA_NOTHING = 0, | ||
56 | EFA_FADE_IN, | ||
57 | EFA_FADE_OUT | ||
58 | }; | ||
59 | |||
60 | u32 StartTime; | ||
61 | u32 EndTime; | ||
62 | EFadeAction Action; | ||
63 | |||
64 | video::SColor Color[2]; | ||
65 | video::SColor FullColor; | ||
66 | video::SColor TransColor; | ||
67 | }; | ||
68 | |||
69 | } // end namespace gui | ||
70 | } // end namespace irr | ||
71 | |||
72 | #endif // _IRR_COMPILE_WITH_GUI_ | ||
73 | |||
74 | #endif // __C_GUI_IN_OUT_FADER_H_INCLUDED__ | ||
75 | |||