JugiMap Framework
|
The GuiWidgetCallback class is the base callback class for widgets. More...
#include <jmGuiCommon.h>
Public Member Functions | |
virtual void | OnPressed (GuiWidget *) |
A function call when the cursor is pressed. /// This callback is available for GuiButton. More... | |
virtual void | OnCursorOver (GuiWidget *) |
A function call when the cursor is over the widget. /// This callback is available for GuiButton. More... | |
virtual void | OnCursorDown (GuiWidget *) |
A function call when the cursor is hold down. More... | |
virtual void | OnValueChanged (GuiWidget *) |
A function call when the value of a widget is changed. More... | |
virtual void | OnValueChangedViaButton (GuiWidget *) |
A function call when a slider's value is changed via increment or decrement button. More... | |
The GuiWidgetCallback class is the base callback class for widgets.
|
inlinevirtual |
A function call when the cursor is pressed. /// This callback is available for GuiButton.
|
inlinevirtual |
A function call when the cursor is over the widget. /// This callback is available for GuiButton.
|
inlinevirtual |
A function call when the cursor is hold down.
This callback is available for GuiButton.
|
inlinevirtual |
A function call when the value of a widget is changed.
This callback is available for GuiSlider and GuiTextInput.
|
inlinevirtual |
A function call when a slider's value is changed via increment or decrement button.
This callback is available for GuiSlider.