2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_GUI_IMAGE_H_INCLUDED
|
|
|
|
#define IRR_C_GUI_IMAGE_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
|
|
|
#include "IGUIImage.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
|
|
|
|
class CGUIImage : public IGUIImage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CGUIImage(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle);
|
|
|
|
|
|
|
|
//! destructor
|
|
|
|
virtual ~CGUIImage();
|
|
|
|
|
|
|
|
//! sets an image
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setImage(video::ITexture* image) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the image texture
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual video::ITexture* getImage() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets the color of the image
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setColor(video::SColor color) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets if the image should scale to fit the element
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setScaleImage(bool scale) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! draws the element and its children
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void draw() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets if the image should use its alpha channel to draw itself
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setUseAlphaChannel(bool use) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the color of the image
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual video::SColor getColor() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns true if the image is scaled to fit, false if not
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isImageScaled() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns true if the image is using the alpha channel, false if not
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isAlphaChannelUsed() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets the source rectangle of the image. By default the full image is used.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setSourceRect(const core::rect<s32>& sourceRect) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the customized source rectangle of the image to be used.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual core::rect<s32> getSourceRect() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Restrict drawing-area.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setDrawBounds(const core::rect<f32>& drawBoundUVs) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get drawing-area restrictions.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual core::rect<f32> getDrawBounds() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets whether to draw a background color (EGDC_3D_DARK_SHADOW) when no texture is set
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setDrawBackground(bool draw) IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
DrawBackground = draw;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Checks if a background is drawn when no texture is set
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isDrawBackgroundEnabled() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return DrawBackground;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Writes attributes of the element.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the element
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void checkBounds(core::rect<s32>& rect)
|
|
|
|
{
|
|
|
|
f32 clipWidth = (f32)rect.getWidth();
|
|
|
|
f32 clipHeight = (f32)rect.getHeight();
|
|
|
|
|
|
|
|
rect.UpperLeftCorner.X += core::round32(DrawBounds.UpperLeftCorner.X*clipWidth);
|
|
|
|
rect.UpperLeftCorner.Y += core::round32(DrawBounds.UpperLeftCorner.Y*clipHeight);
|
|
|
|
rect.LowerRightCorner.X -= core::round32((1.f-DrawBounds.LowerRightCorner.X)*clipWidth);
|
|
|
|
rect.LowerRightCorner.Y -= core::round32((1.f-DrawBounds.LowerRightCorner.Y)*clipHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
video::ITexture* Texture;
|
|
|
|
video::SColor Color;
|
|
|
|
bool UseAlphaChannel;
|
|
|
|
bool ScaleImage;
|
|
|
|
core::rect<s32> SourceRect;
|
|
|
|
core::rect<f32> DrawBounds;
|
|
|
|
bool DrawBackground;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#endif // IRR_C_GUI_IMAGE_H_INCLUDED
|