libsuit
0.1.1
SFML User Interface Toolkit
|
A video configuration widget. More...
#include <ui/VideoConfigWidget.h>
Public Member Functions | |
VideoConfigWidget (sf::Window &window, const std::string &window_title) | |
Construct a video configuration widget. More... | |
Public Member Functions inherited from ui::Bin | |
void | setChild (Widget *child) |
Set the child of the widget. More... | |
bool | hasChild () const |
Tell whether the widget already has a child. More... | |
Widget * | getChild () |
Get the child of the widget. More... | |
virtual void | onPrimaryAction () override |
Do something if a primary action has been triggered. More... | |
virtual void | onSecondaryAction () override |
Do something if a secondary action has been triggered. More... | |
virtual void | onClick (sf::Mouse::Button button, const sf::Vector2f &mouse) override |
Do something when the widget is clicked. More... | |
virtual void | layoutRequest () override |
Compute the size hint of the widget. More... | |
virtual void | layoutAllocation () override |
Compute the size of the widget. More... | |
virtual void | accept (WidgetVisitor &visitor) override |
Accept the visitor. More... | |
Public Member Functions inherited from ui::Widget | |
Widget () | |
Construct a widget. More... | |
Widget (const Widget &)=delete | |
Widget & | operator= (const Widget &)=delete |
Widget (Widget &&)=delete | |
Widget & | operator= (Widget &&)=delete |
virtual | ~Widget () |
Destroy a widget. More... | |
void | setSizeHint (float width, float height) |
Set the size hint of the widget. More... | |
sf::Vector2f | getSizeHint () const |
Get the size hint of the widget. More... | |
void | setHorizontalPolicy (SizePolicy policy) |
Set the horizontal size policy. More... | |
void | setVerticalPolicy (SizePolicy policy) |
Set the vertical size policy. More... | |
void | setSizePolicy (SizePolicy horizontal, SizePolicy vertical) |
Set the size policy. More... | |
void | setHorizontalAlignment (Alignment alignment) |
Set the horizontal alignment policy. More... | |
void | setVerticalAlignment (Alignment alignment) |
Set the vertical alignment policy. More... | |
const Geometry & | getHorizontalGeometry () const |
Get the horizontal geometry. More... | |
Geometry & | getHorizontalGeometry () |
Get the horizontal geometry. More... | |
const Geometry & | getVerticalGeometry () const |
Get the vertical geometry. More... | |
Geometry & | getVerticalGeometry () |
Get the vertical geometry. More... | |
void | setGeometry (const sf::FloatRect &geometry) |
Set the vertical geometry thanks to a rectangle. More... | |
const sf::FloatRect | getGeometry () const |
Get the geometry of the widget. More... | |
sf::Vector2f | getCenter () const |
Get the center of the widget. More... | |
A video configuration widget.
A video configuration widget is a widget that configure the size of the window.
ui::VideoConfigWidget::VideoConfigWidget | ( | sf::Window & | window, |
const std::string & | window_title | ||
) |
Construct a video configuration widget.
window | the window to configure |
window_title | the title of the window |