|
FifeGUI 0.2.0
A C++ GUI library designed for games.
|
#include <selectionlistener.hpp>
Public Member Functions | |
| SelectionListener & | operator= (SelectionListener &&)=default |
| SelectionListener & | operator= (SelectionListener const &)=default |
| SelectionListener (SelectionListener &&)=default | |
| SelectionListener (SelectionListener const &)=default | |
| virtual void | valueChanged (SelectionEvent const &event) |
Protected Member Functions | |
| SelectionListener ()=default | |
Interface for listening to selection change events.
Definition at line 25 of file selectionlistener.hpp.
|
protecteddefault |
Constructor.
Instances should not be created directly, therefore the constructor is declared protected.
|
inlinevirtual |
Called when the value of a selection has been changed in a Widget.
It is used to be able to receive a notification that a value has been changed.
| event | The event of the value change. |
Reimplemented in fcn::DropDown.
Definition at line 42 of file selectionlistener.hpp.