mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
34 lines
884 B
C++
34 lines
884 B
C++
|
#ifndef MWGUI_IMAGEBUTTON_H
|
||
|
#define MWGUI_IMAGEBUTTON_H
|
||
|
|
||
|
#include "MyGUI_ImageBox.h"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @brief allows using different image textures depending on the button state
|
||
|
*/
|
||
|
class ImageButton : public MyGUI::ImageBox
|
||
|
{
|
||
|
MYGUI_RTTI_DERIVED(ImageButton)
|
||
|
|
||
|
public:
|
||
|
MyGUI::IntSize getRequestedSize();
|
||
|
|
||
|
protected:
|
||
|
virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
|
||
|
virtual void onMouseLostFocus(MyGUI::Widget* _new);
|
||
|
virtual void onMouseSetFocus(MyGUI::Widget* _old);
|
||
|
virtual void onMouseButtonPressed(int _left, int _top, MyGUI::MouseButton _id);
|
||
|
virtual void onMouseButtonReleased(int _left, int _top, MyGUI::MouseButton _id);
|
||
|
|
||
|
std::string mImageHighlighted;
|
||
|
std::string mImageNormal;
|
||
|
std::string mImagePushed;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|