|
std::shared_ptr< KnobRenderer > | getRenderer () const |
| Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
|
|
virtual void | setPosition (const Layout2d &position) override |
| Set the position of the knob. More...
|
|
virtual void | setSize (const Layout2d &size) override |
| Changes the size of the knob. More...
|
|
virtual sf::Vector2f | getFullSize () const override |
| Returns the full size of the knob. More...
|
|
void | setStartRotation (float startRotation) |
| Set the start rotation, which is the place where the value should be minimal. More...
|
|
void | setEndRotation (float endRotation) |
| Set the end rotation, which is the place where the value should be maximal. More...
|
|
float | getStartRotation () |
| Returns the start rotation, which is the place where the value should be minimal. More...
|
|
float | getEndRotation () |
| Set the end rotation, which is the place where the value should be maximal. More...
|
|
virtual void | setMinimum (int minimum) |
| Sets the value for when the knob would be rotated in the direction of StartRotation. More...
|
|
virtual void | setMaximum (int maximum) |
| Sets the value for when the knob would be rotated in the direction of EndRotation. More...
|
|
virtual void | setValue (int value) |
| Changes the current value. More...
|
|
int | getMinimum () const |
| Returns the value when the knob would be rotated in the direction of StartRotation. More...
|
|
int | getMaximum () const |
| Returns the value when the knob would be rotated in the direction of EndRotation. More...
|
|
int | getValue () const |
| Returns the current value. More...
|
|
void | setClockwiseTurning (bool clockwise) |
| Should the value increase when turning the knob clockwise? More...
|
|
bool | getClockwiseTurning () |
| Returns whether the value increases when turning the knob clockwise? More...
|
|
virtual void | setOpacity (float opacity) override |
| Changes the opacity of the widget. More...
|
|
virtual sf::Vector2f | getWidgetOffset () const override |
| Returns the distance between the position where the widget is drawn and where the widget is placed. More...
|
|
virtual void | setPosition (const Layout2d &position) |
| set the position of the widget More...
|
|
void | setPosition (const Layout &x, const Layout &y) |
| set the position of the widget More...
|
|
virtual void | setSize (const Layout2d &size) |
| Changes the size of the widget. More...
|
|
void | setSize (const Layout &width, const Layout &height) |
| Changes the size of the widget. More...
|
|
| Widget () |
| Default constructor.
|
|
| Widget (const Widget ©) |
| Copy constructor. More...
|
|
| ~Widget () |
| Destructor.
|
|
Widget & | operator= (const Widget &right) |
| Overload of assignment operator. More...
|
|
std::shared_ptr< WidgetRenderer > | getRenderer () const |
| Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
|
|
virtual sf::Vector2f | getAbsolutePosition () const |
| Get the absolute position of the widget instead of the relative position to its parent. More...
|
|
virtual void | show () |
| Shows the widget. More...
|
|
virtual void | showWithEffect (ShowAnimationType type, sf::Time duration) |
| Shows the widget by introducing it with an animation. More...
|
|
virtual void | hide () |
| Hides the widget. More...
|
|
virtual void | hideWithEffect (ShowAnimationType type, sf::Time duration) |
| Hides the widget by making it leave with an animation. More...
|
|
bool | isVisible () const |
| Returns true when the widget is visible. More...
|
|
virtual void | enable () |
| Enables the widget. More...
|
|
virtual void | disable (bool blockMouseEvents=true) |
| Disables the widget. More...
|
|
bool | isEnabled () const |
| Returns true when the widget is enabled. More...
|
|
virtual void | focus () |
| Focus the widget. More...
|
|
virtual void | unfocus () |
| Unfocus the widget. More...
|
|
bool | isFocused () const |
| Returns true when the widget is focused and false otherwise. More...
|
|
const std::string & | getWidgetType () const |
| Returns the type of the widget. More...
|
|
Container * | getParent () const |
| Returns a pointer to the parent widget. More...
|
|
float | getOpacity () const |
| Returns the opacity of the widget. More...
|
|
virtual void | moveToFront () |
| Places the widget before all other widgets.
|
|
virtual void | moveToBack () |
| Places the widget behind all other widgets.
|
|
void | setToolTip (Widget::Ptr toolTip) |
| Sets the tool tip that should be displayed when hovering over the widget. More...
|
|
Widget::Ptr | getToolTip () |
| Returns the tool tip that is displayed when hovering over the widget. More...
|
|
virtual void | setFont (const Font &font) |
| Changes the font of the text in the widget. More...
|
|
std::shared_ptr< sf::Font > | getFont () const |
| Returns the font associated with the widget (if any) More...
|
|
void | detachTheme () |
| Detach the theme from the widget. More...
|
|
std::shared_ptr< BaseTheme > | getTheme () const |
| Returns the theme to which the widget is currently connected. More...
|
|
std::string | getPrimaryLoadingParameter () const |
| Returns the primary parameter that was passed to the loader to load this widget. More...
|
|
std::string | getSecondaryLoadingParameter () const |
| Returns the secondary parameter that was passed to the loader to load this widget. More...
|
|
void | setPosition (const Layout &x, const Layout &y) |
| set the position of the widget More...
|
|
void | setSize (const Layout &width, const Layout &height) |
| Changes the size of the widget. More...
|
|
virtual | ~Transformable () |
| Virtual destructor.
|
|
void | setPosition (const Layout &x, const Layout &y) |
| set the position of the widget More...
|
|
sf::Vector2f | getPosition () const |
| get the position of the widget More...
|
|
void | move (const Layout2d &offset) |
| Move the widget by a given offset. More...
|
|
void | move (const Layout &x, const Layout &y) |
| Move the widget by a given offset. More...
|
|
void | setSize (const Layout &width, const Layout &height) |
| Changes the size of the widget. More...
|
|
virtual sf::Vector2f | getSize () const |
| Returns the size of the widget. More...
|
|
void | scale (const Layout2d &factors) |
| Scale the widget. More...
|
|
void | scale (const Layout &x, const Layout &y) |
| Scale the widget. More...
|
|
| SignalWidgetBase ()=default |
| Default constructor.
|
|
| SignalWidgetBase (const SignalWidgetBase ©) |
| Copy constructor. More...
|
|
SignalWidgetBase & | operator= (const SignalWidgetBase &right) |
| Overload of assignment operator. More...
|
|
template<typename Func , typename... Args> |
unsigned int | connect (const std::string &signalNames, Func func, Args... args) |
| Connects a signal handler function to one or more signals. More...
|
|
template<typename Func , typename... Args> |
unsigned int | connectEx (const std::string &signalName, Func func, Args... args) |
| Connects a signal handler function to one or more signals. More...
|
|
void | disconnect (unsigned int id) |
| Disconnects a connection. More...
|
|
void | disconnectAll (const std::string &signalName) |
| Disconnect all connections from a certain signal. More...
|
|
void | disconnectAll () |
| Disconnect all connections from a all signals.
|
|