aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h150
1 files changed, 75 insertions, 75 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h b/libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h
index fc6007c..66d9023 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h
+++ b/libraries/irrlicht-1.8/source/Irrlicht/CGUIImage.h
@@ -1,75 +1,75 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __C_GUI_IMAGE_H_INCLUDED__ 5#ifndef __C_GUI_IMAGE_H_INCLUDED__
6#define __C_GUI_IMAGE_H_INCLUDED__ 6#define __C_GUI_IMAGE_H_INCLUDED__
7 7
8#include "IrrCompileConfig.h" 8#include "IrrCompileConfig.h"
9#ifdef _IRR_COMPILE_WITH_GUI_ 9#ifdef _IRR_COMPILE_WITH_GUI_
10 10
11#include "IGUIImage.h" 11#include "IGUIImage.h"
12 12
13namespace irr 13namespace irr
14{ 14{
15namespace gui 15namespace gui
16{ 16{
17 17
18 class CGUIImage : public IGUIImage 18 class CGUIImage : public IGUIImage
19 { 19 {
20 public: 20 public:
21 21
22 //! constructor 22 //! constructor
23 CGUIImage(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle); 23 CGUIImage(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle);
24 24
25 //! destructor 25 //! destructor
26 virtual ~CGUIImage(); 26 virtual ~CGUIImage();
27 27
28 //! sets an image 28 //! sets an image
29 virtual void setImage(video::ITexture* image); 29 virtual void setImage(video::ITexture* image);
30 30
31 //! Gets the image texture 31 //! Gets the image texture
32 virtual video::ITexture* getImage() const; 32 virtual video::ITexture* getImage() const;
33 33
34 //! sets the color of the image 34 //! sets the color of the image
35 virtual void setColor(video::SColor color); 35 virtual void setColor(video::SColor color);
36 36
37 //! sets if the image should scale to fit the element 37 //! sets if the image should scale to fit the element
38 virtual void setScaleImage(bool scale); 38 virtual void setScaleImage(bool scale);
39 39
40 //! draws the element and its children 40 //! draws the element and its children
41 virtual void draw(); 41 virtual void draw();
42 42
43 //! sets if the image should use its alpha channel to draw itself 43 //! sets if the image should use its alpha channel to draw itself
44 virtual void setUseAlphaChannel(bool use); 44 virtual void setUseAlphaChannel(bool use);
45 45
46 //! Gets the color of the image 46 //! Gets the color of the image
47 virtual video::SColor getColor() const; 47 virtual video::SColor getColor() const;
48 48
49 //! Returns true if the image is scaled to fit, false if not 49 //! Returns true if the image is scaled to fit, false if not
50 virtual bool isImageScaled() const; 50 virtual bool isImageScaled() const;
51 51
52 //! Returns true if the image is using the alpha channel, false if not 52 //! Returns true if the image is using the alpha channel, false if not
53 virtual bool isAlphaChannelUsed() const; 53 virtual bool isAlphaChannelUsed() const;
54 54
55 //! Writes attributes of the element. 55 //! Writes attributes of the element.
56 virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const; 56 virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const;
57 57
58 //! Reads attributes of the element 58 //! Reads attributes of the element
59 virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options); 59 virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options);
60 60
61 private: 61 private:
62 video::ITexture* Texture; 62 video::ITexture* Texture;
63 video::SColor Color; 63 video::SColor Color;
64 bool UseAlphaChannel; 64 bool UseAlphaChannel;
65 bool ScaleImage; 65 bool ScaleImage;
66 66
67 }; 67 };
68 68
69 69
70} // end namespace gui 70} // end namespace gui
71} // end namespace irr 71} // end namespace irr
72 72
73#endif // _IRR_COMPILE_WITH_GUI_ 73#endif // _IRR_COMPILE_WITH_GUI_
74 74
75#endif // __C_GUI_IMAGE_H_INCLUDED__ 75#endif // __C_GUI_IMAGE_H_INCLUDED__