2019-03-15 19:39:23 +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
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
#include <IGUIStaticText.h>
|
|
|
|
#include "irrlicht_changes/static_text.h"
|
2019-03-15 19:39:23 +01:00
|
|
|
#include "IGUIButton.h"
|
|
|
|
#include "IGUISpriteBank.h"
|
|
|
|
#include "ITexture.h"
|
|
|
|
#include "SColor.h"
|
|
|
|
#include "guiSkin.h"
|
|
|
|
|
|
|
|
using namespace irr;
|
|
|
|
|
2019-09-06 18:29:29 +02:00
|
|
|
#if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR <= 8)
|
2019-03-15 19:39:23 +01:00
|
|
|
namespace irr { namespace gui {
|
|
|
|
|
|
|
|
//! State of buttons used for drawing texture images.
|
|
|
|
//! Note that only a single state is active at a time
|
|
|
|
//! Also when no image is defined for a state it will use images from another state
|
|
|
|
//! and if that state is not set from the replacement for that,etc.
|
|
|
|
//! So in many cases setting EGBIS_IMAGE_UP and EGBIS_IMAGE_DOWN is sufficient.
|
|
|
|
enum EGUI_BUTTON_IMAGE_STATE {
|
|
|
|
//! When no other states have images they will all use this one.
|
|
|
|
EGBIS_IMAGE_UP,
|
|
|
|
//! When not set EGBIS_IMAGE_UP is used.
|
|
|
|
EGBIS_IMAGE_UP_MOUSEOVER,
|
|
|
|
//! When not set EGBIS_IMAGE_UP_MOUSEOVER is used.
|
|
|
|
EGBIS_IMAGE_UP_FOCUSED,
|
|
|
|
//! When not set EGBIS_IMAGE_UP_FOCUSED is used.
|
|
|
|
EGBIS_IMAGE_UP_FOCUSED_MOUSEOVER,
|
|
|
|
//! When not set EGBIS_IMAGE_UP is used.
|
|
|
|
EGBIS_IMAGE_DOWN,
|
|
|
|
//! When not set EGBIS_IMAGE_DOWN is used.
|
|
|
|
EGBIS_IMAGE_DOWN_MOUSEOVER,
|
|
|
|
//! When not set EGBIS_IMAGE_DOWN_MOUSEOVER is used.
|
|
|
|
EGBIS_IMAGE_DOWN_FOCUSED,
|
|
|
|
//! When not set EGBIS_IMAGE_DOWN_FOCUSED is used.
|
|
|
|
EGBIS_IMAGE_DOWN_FOCUSED_MOUSEOVER,
|
|
|
|
//! When not set EGBIS_IMAGE_UP or EGBIS_IMAGE_DOWN are used (depending on button state).
|
|
|
|
EGBIS_IMAGE_DISABLED,
|
|
|
|
//! not used, counts the number of enumerated items
|
|
|
|
EGBIS_COUNT
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Names for gui button image states
|
|
|
|
const c8 *const GUIButtonImageStateNames[EGBIS_COUNT + 1] =
|
|
|
|
{
|
|
|
|
"Image", // not "ImageUp" as it otherwise breaks serialization of old files
|
|
|
|
"ImageUpOver",
|
|
|
|
"ImageUpFocused",
|
|
|
|
"ImageUpFocusedOver",
|
|
|
|
"PressedImage", // not "ImageDown" as it otherwise breaks serialization of old files
|
|
|
|
"ImageDownOver",
|
|
|
|
"ImageDownFocused",
|
|
|
|
"ImageDownFocusedOver",
|
|
|
|
"ImageDisabled",
|
|
|
|
0 // count
|
|
|
|
};
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
class ISimpleTextureSource;
|
|
|
|
class StyleSpec;
|
|
|
|
|
2019-03-15 19:39:23 +01:00
|
|
|
class GUIButton : public gui::IGUIButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
GUIButton(gui::IGUIEnvironment* environment, gui::IGUIElement* parent,
|
|
|
|
s32 id, core::rect<s32> rectangle, bool noclip=false);
|
|
|
|
|
|
|
|
//! destructor
|
|
|
|
virtual ~GUIButton();
|
|
|
|
|
|
|
|
//! called if an event happened.
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool OnEvent(const SEvent& event) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! draws the element and its children
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void draw() override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! sets another skin independent font. if this is set to zero, the button uses the font of the skin.
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setOverrideFont(gui::IGUIFont* font=0) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Gets the override font (if any)
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual gui::IGUIFont* getOverrideFont() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Get the font which is used right now for drawing
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual gui::IGUIFont* getActiveFont() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets another color for the button text.
|
|
|
|
virtual void setOverrideColor(video::SColor color);
|
|
|
|
|
|
|
|
//! Gets the override color
|
|
|
|
virtual video::SColor getOverrideColor(void) const;
|
|
|
|
|
|
|
|
//! Sets if the button text should use the override color or the color in the gui skin.
|
|
|
|
virtual void enableOverrideColor(bool enable);
|
|
|
|
|
|
|
|
//! Checks if an override color is enabled
|
|
|
|
virtual bool isOverrideColorEnabled(void) const;
|
|
|
|
|
2019-10-12 18:44:23 +02:00
|
|
|
// PATCH
|
2019-03-15 19:39:23 +01:00
|
|
|
//! Sets an image which should be displayed on the button when it is in the given state.
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setImage(gui::EGUI_BUTTON_IMAGE_STATE state,
|
2019-10-12 18:44:23 +02:00
|
|
|
video::ITexture* image=nullptr,
|
2019-10-05 17:13:50 +02:00
|
|
|
const core::rect<s32>& sourceRect=core::rect<s32>(0,0,0,0));
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in normal state.
|
2019-10-12 18:44:23 +02:00
|
|
|
virtual void setImage(video::ITexture* image=nullptr) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in normal state.
|
2019-10-12 18:44:23 +02:00
|
|
|
virtual void setImage(video::ITexture* image, const core::rect<s32>& pos) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in pressed state.
|
2019-10-12 18:44:23 +02:00
|
|
|
virtual void setPressedImage(video::ITexture* image=nullptr) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in pressed state.
|
2019-10-12 18:44:23 +02:00
|
|
|
virtual void setPressedImage(video::ITexture* image, const core::rect<s32>& pos) override;
|
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in hovered state.
|
|
|
|
virtual void setHoveredImage(video::ITexture* image=nullptr);
|
2019-12-09 21:06:51 +01:00
|
|
|
|
|
|
|
//! Sets the text displayed by the button
|
|
|
|
virtual void setText(const wchar_t* text) override;
|
2019-10-12 18:44:23 +02:00
|
|
|
// END PATCH
|
|
|
|
|
|
|
|
//! Sets an image which should be displayed on the button when it is in hovered state.
|
|
|
|
virtual void setHoveredImage(video::ITexture* image, const core::rect<s32>& pos);
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets the sprite bank used by the button
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setSpriteBank(gui::IGUISpriteBank* bank=0) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets the animated sprite for a specific button state
|
|
|
|
/** \param index: Number of the sprite within the sprite bank, use -1 for no sprite
|
|
|
|
\param state: State of the button to set the sprite for
|
|
|
|
\param index: The sprite number from the current sprite bank
|
|
|
|
\param color: The color of the sprite
|
|
|
|
*/
|
|
|
|
virtual void setSprite(gui::EGUI_BUTTON_STATE state, s32 index,
|
|
|
|
video::SColor color=video::SColor(255,255,255,255),
|
|
|
|
bool loop=false, bool scale=false);
|
|
|
|
|
2019-09-06 18:29:29 +02:00
|
|
|
#if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR <= 8)
|
2019-03-15 19:39:23 +01:00
|
|
|
void setSprite(gui::EGUI_BUTTON_STATE state, s32 index, video::SColor color, bool loop) override {
|
|
|
|
setSprite(state, index, color, loop, false);
|
|
|
|
}
|
2019-09-06 18:29:29 +02:00
|
|
|
#endif
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Get the sprite-index for the given state or -1 when no sprite is set
|
|
|
|
virtual s32 getSpriteIndex(gui::EGUI_BUTTON_STATE state) const;
|
|
|
|
|
|
|
|
//! Get the sprite color for the given state. Color is only used when a sprite is set.
|
|
|
|
virtual video::SColor getSpriteColor(gui::EGUI_BUTTON_STATE state) const;
|
|
|
|
|
|
|
|
//! Returns if the sprite in the given state does loop
|
|
|
|
virtual bool getSpriteLoop(gui::EGUI_BUTTON_STATE state) const;
|
|
|
|
|
|
|
|
//! Returns if the sprite in the given state is scaled
|
|
|
|
virtual bool getSpriteScale(gui::EGUI_BUTTON_STATE state) const;
|
|
|
|
|
|
|
|
//! Sets if the button should behave like a push button. Which means it
|
|
|
|
//! can be in two states: Normal or Pressed. With a click on the button,
|
|
|
|
//! the user can change the state of the button.
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setIsPushButton(bool isPushButton=true) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Checks whether the button is a push button
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool isPushButton() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets the pressed state of the button if this is a pushbutton
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setPressed(bool pressed=true) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Returns if the button is currently pressed
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool isPressed() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
// PATCH
|
|
|
|
//! Returns if this element (or one of its direct children) is hovered
|
|
|
|
bool isHovered() const;
|
|
|
|
// END PATCH
|
|
|
|
|
2019-03-15 19:39:23 +01:00
|
|
|
//! Sets if the button should use the skin to draw its border
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setDrawBorder(bool border=true) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Checks if the button face and border are being drawn
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool isDrawingBorder() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets if the alpha channel should be used for drawing images on the button (default is false)
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setUseAlphaChannel(bool useAlphaChannel=true) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Checks if the alpha channel should be used for drawing images on the button
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool isAlphaChannelUsed() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Sets if the button should scale the button images to fit
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void setScaleImage(bool scaleImage=true) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Checks whether the button scales the used images
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual bool isScalingImage() const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Get if the shift key was pressed in last EGET_BUTTON_CLICKED event
|
|
|
|
virtual bool getClickShiftState() const
|
|
|
|
{
|
|
|
|
return ClickShiftState;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get if the control key was pressed in last EGET_BUTTON_CLICKED event
|
|
|
|
virtual bool getClickControlState() const
|
|
|
|
{
|
|
|
|
return ClickControlState;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Writes attributes of the element.
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the element
|
2019-10-05 17:13:50 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) override;
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void setColor(video::SColor color);
|
2019-10-12 18:44:23 +02:00
|
|
|
// PATCH
|
|
|
|
void setHoveredColor(video::SColor color);
|
|
|
|
void setPressedColor(video::SColor color);
|
2019-12-09 21:06:51 +01:00
|
|
|
|
|
|
|
//! Set element properties from a StyleSpec
|
|
|
|
virtual void setFromStyle(const StyleSpec& style, ISimpleTextureSource *tsrc);
|
2019-10-12 18:44:23 +02:00
|
|
|
// END PATCH
|
2019-03-15 19:39:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
//! Do not drop returned handle
|
|
|
|
static GUIButton* addButton(gui::IGUIEnvironment *environment, const core::rect<s32>& rectangle,
|
|
|
|
IGUIElement* parent, s32 id, const wchar_t* text, const wchar_t *tooltiptext=L"");
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void drawSprite(gui::EGUI_BUTTON_STATE state, u32 startTime, const core::position2di& center);
|
|
|
|
gui::EGUI_BUTTON_IMAGE_STATE getImageState(bool pressed) const;
|
|
|
|
|
|
|
|
struct ButtonImage
|
|
|
|
{
|
|
|
|
ButtonImage() : Texture(0), SourceRect(core::rect<s32>(0,0,0,0))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ButtonImage(const ButtonImage& other) : Texture(0), SourceRect(core::rect<s32>(0,0,0,0))
|
|
|
|
{
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ButtonImage()
|
|
|
|
{
|
|
|
|
if ( Texture )
|
|
|
|
Texture->drop();
|
|
|
|
}
|
|
|
|
|
|
|
|
ButtonImage& operator=(const ButtonImage& other)
|
|
|
|
{
|
|
|
|
if ( this == &other )
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
if (other.Texture)
|
|
|
|
other.Texture->grab();
|
|
|
|
if ( Texture )
|
|
|
|
Texture->drop();
|
|
|
|
Texture = other.Texture;
|
|
|
|
SourceRect = other.SourceRect;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ButtonImage& other) const
|
|
|
|
{
|
|
|
|
return Texture == other.Texture && SourceRect == other.SourceRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
video::ITexture* Texture;
|
|
|
|
core::rect<s32> SourceRect;
|
|
|
|
};
|
|
|
|
|
2019-12-09 21:06:51 +01:00
|
|
|
gui::EGUI_BUTTON_IMAGE_STATE getImageState(bool pressed, const ButtonImage* images) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
struct ButtonSprite
|
|
|
|
{
|
|
|
|
ButtonSprite() : Index(-1), Loop(false), Scale(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ButtonSprite& other) const
|
|
|
|
{
|
|
|
|
return Index == other.Index && Color == other.Color && Loop == other.Loop && Scale == other.Scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 Index;
|
|
|
|
video::SColor Color;
|
|
|
|
bool Loop;
|
|
|
|
bool Scale;
|
|
|
|
};
|
|
|
|
|
|
|
|
ButtonSprite ButtonSprites[gui::EGBS_COUNT];
|
|
|
|
gui::IGUISpriteBank* SpriteBank;
|
|
|
|
|
2019-03-15 19:39:23 +01:00
|
|
|
ButtonImage ButtonImages[gui::EGBIS_COUNT];
|
|
|
|
|
|
|
|
gui::IGUIFont* OverrideFont;
|
|
|
|
|
|
|
|
bool OverrideColorEnabled;
|
|
|
|
video::SColor OverrideColor;
|
|
|
|
|
|
|
|
u32 ClickTime, HoverTime, FocusTime;
|
|
|
|
|
|
|
|
bool ClickShiftState;
|
|
|
|
bool ClickControlState;
|
|
|
|
|
|
|
|
bool IsPushButton;
|
|
|
|
bool Pressed;
|
|
|
|
bool UseAlphaChannel;
|
|
|
|
bool DrawBorder;
|
|
|
|
bool ScaleImage;
|
|
|
|
|
|
|
|
video::SColor Colors[4];
|
2019-10-12 18:44:23 +02:00
|
|
|
// PATCH
|
|
|
|
video::SColor HoveredColors[4];
|
|
|
|
video::SColor PressedColors[4];
|
2019-12-09 21:06:51 +01:00
|
|
|
|
|
|
|
gui::IGUIStaticText *StaticText;
|
2019-10-12 18:44:23 +02:00
|
|
|
// END PATCH
|
2019-03-15 19:39:23 +01:00
|
|
|
};
|