mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 00:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef MWGUI_IMAGEBUTTON_H
 | |
| #define MWGUI_IMAGEBUTTON_H
 | |
| 
 | |
| #include <MyGUI_ImageBox.h>
 | |
| 
 | |
| namespace Gui
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @brief allows using different image textures depending on the button state
 | |
|      */
 | |
|     class ImageButton : public MyGUI::ImageBox
 | |
|     {
 | |
|         MYGUI_RTTI_DERIVED(ImageButton)
 | |
| 
 | |
|     public:
 | |
|         MyGUI::IntSize getRequestedSize(bool logError = true);
 | |
| 
 | |
|     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
 |