You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
902 B
C++
34 lines
902 B
C++
12 years ago
|
#ifndef MWGUI_IMAGEBUTTON_H
|
||
|
#define MWGUI_IMAGEBUTTON_H
|
||
|
|
||
12 years ago
|
#include <MyGUI_ImageBox.h>
|
||
12 years ago
|
|
||
10 years ago
|
namespace Gui
|
||
12 years ago
|
{
|
||
|
|
||
|
/**
|
||
|
* @brief allows using different image textures depending on the button state
|
||
|
*/
|
||
|
class ImageButton : public MyGUI::ImageBox
|
||
|
{
|
||
|
MYGUI_RTTI_DERIVED(ImageButton)
|
||
|
|
||
|
public:
|
||
11 years ago
|
MyGUI::IntSize getRequestedSize(bool logError = true);
|
||
12 years ago
|
|
||
|
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
|