libsuit
0.1.1
SFML User Interface Toolkit
|
A mouse button control. More...
#include <ui/Control.h>
Public Member Functions | |
MouseButtonControl (sf::Mouse::Button button) | |
Construct a mouse button control. More... | |
virtual void | update (const sf::Event &event) override |
Update the state of the control thanks to an event. More... | |
Public Member Functions inherited from ui::Control | |
Control (std::string name, std::string controller_name) | |
Construct a control with a name and its controller name. More... | |
virtual | ~Control () |
Destroy the control. More... | |
bool | isActive () |
Tell whether the control is active. More... | |
void | setActive (bool active=true) |
Change the active state of the control. More... | |
void | reset () |
Desactivate the control. More... | |
A mouse button control.
ui::MouseButtonControl::MouseButtonControl | ( | sf::Mouse::Button | button | ) |
Construct a mouse button control.
button | the button of the mouse. |
|
overridevirtual |
Update the state of the control thanks to an event.
event | the event to update the control. |
Implements ui::Control.