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.
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
#ifndef OPENMW_WIDGETS_SHAREDSTATEBUTTON_HPP
|
|
#define OPENMW_WIDGETS_SHAREDSTATEBUTTON_HPP
|
|
|
|
#include <MyGUI_Button.h>
|
|
|
|
namespace Gui
|
|
{
|
|
|
|
class SharedStateButton;
|
|
|
|
typedef std::vector<SharedStateButton*> ButtonGroup;
|
|
|
|
/// @brief A button that applies its own state changes to other widgets, to do this you define it as part of a ButtonGroup.
|
|
class SharedStateButton : public MyGUI::Button
|
|
{
|
|
MYGUI_RTTI_DERIVED(SharedStateButton)
|
|
|
|
public:
|
|
SharedStateButton();
|
|
|
|
protected:
|
|
void updateButtonState();
|
|
|
|
virtual void onMouseButtonPressed(int _left, int _top, MyGUI::MouseButton _id);
|
|
virtual void onMouseButtonReleased(int _left, int _top, MyGUI::MouseButton _id);
|
|
virtual void onMouseSetFocus(MyGUI::Widget* _old);
|
|
virtual void onMouseLostFocus(MyGUI::Widget* _new);
|
|
virtual void baseUpdateEnable();
|
|
|
|
virtual void shutdownOverride();
|
|
|
|
bool _setState(const std::string &_value);
|
|
|
|
public:
|
|
void shareStateWith(ButtonGroup shared);
|
|
|
|
/// @note The ButtonGroup connection will be destroyed when any widget in the group gets destroyed.
|
|
static void createButtonGroup(ButtonGroup group);
|
|
|
|
//! Set button selected state
|
|
void setStateSelected(bool _value);
|
|
|
|
private:
|
|
ButtonGroup mSharedWith;
|
|
|
|
bool mIsMousePressed;
|
|
bool mIsMouseFocus;
|
|
};
|
|
}
|
|
|
|
#endif
|