TDME2 1.9.121
|
#include <tdme/gui/GUI.h>
Public Member Functions | |
GUI (Engine *engine, GUIRenderer *guiRenderer) | |
Public constructor. More... | |
~GUI () | |
Destructor. More... | |
int | getWidth () |
int | getHeight () |
void | initialize () |
Init. More... | |
void | reshape (int width, int height) |
Reshape. More... | |
void | dispose () |
Dispose. More... | |
vector< GUIMouseEvent > & | getMouseEvents () |
vector< GUIKeyboardEvent > & | getKeyboardEvents () |
GUIScreenNode * | getScreen (const string &id) |
Get screen. More... | |
void | addScreen (const string &id, GUIScreenNode *screen) |
Add screen. More... | |
void | removeScreen (const string &id) |
Removes an screen. More... | |
void | reset () |
Removes all screens and caches. More... | |
void | resetRenderScreens () |
Reset render screens. More... | |
bool | hasRenderScreen (const string &screenId) |
Returns if given screen is beeing rendered. More... | |
void | addRenderScreen (const string &screenId) |
Add render screen. More... | |
void | removeRenderScreen (const string &screenId) |
Remove render screen. More... | |
GUIColor & | getFoccussedBorderColor () |
void | invalidateFocussedNode () |
Invalidate focussed node. More... | |
GUIElementNode * | getFocussedNode () |
void | unfocusNode () |
Unfocus current focussed node. More... | |
void | focusNode () |
Focus current focussed node. More... | |
void | setFoccussedNode (GUIElementNode *newFoccussedNode) |
Set focussed node. More... | |
void | focusNextNode () |
Focus next node. More... | |
void | focusPreviousNode () |
Focus next node. More... | |
void | render () |
Render GUIs. More... | |
bool | isHavingMouseInteraction (GUINode *node) |
Reports if node has currently mouse interaction like dragging or pressing. More... | |
void | onChar (unsigned int key, int x, int y) override |
On char. More... | |
void | onKeyDown (unsigned char key, int keyCode, int x, int y) override |
On key down. More... | |
void | onKeyUp (unsigned char key, int keyCode, int x, int y) override |
On key up. More... | |
void | onMouseDragged (int x, int y) override |
On mouse dragged. More... | |
void | onMouseMoved (int x, int y) override |
On mouse moved. More... | |
void | onMouseButton (int button, int state, int x, int y) override |
On mouse moved. More... | |
void | onMouseWheel (int button, int direction, int x, int y) override |
On mouse wheel. More... | |
void | handleEvents () |
Handle screen events. More... | |
![]() | |
virtual | ~InputEventHandler () |
Destructor. More... | |
virtual void | onChar (unsigned int key, int x, int y)=0 |
On char. More... | |
virtual void | onKeyDown (unsigned char key, int keyCode, int x, int y)=0 |
On key down. More... | |
virtual void | onKeyUp (unsigned char key, int keyCode, int x, int y)=0 |
On key up. More... | |
virtual void | onMouseDragged (int x, int y)=0 |
On mouse dragged. More... | |
virtual void | onMouseMoved (int x, int y)=0 |
On mouse moved. More... | |
virtual void | onMouseButton (int button, int state, int x, int y)=0 |
On mouse moved. More... | |
virtual void | onMouseWheel (int button, int direction, int x, int y)=0 |
On mouse wheen. More... | |
Static Public Member Functions | |
static GUIFont * | getFont (const string &applicationRootPath, const string &fileName) |
Get font. More... | |
static Texture * | getImage (const string &applicationRootPath, const string &fileName) |
Get image. More... | |
Private Member Functions | |
void | addMouseOutCandidateElementNode (GUINode *node) |
Add node that is a possible mouse out candidate as it received a mouse over. More... | |
void | addMouseOutClickCandidateElementNode (GUINode *node) |
Add node that is a possible mouse click out candidate as it received a mouse click. More... | |
void | determineFocussedNodes () |
Determine focussed nodes. More... | |
void | handleMouseEvent (GUINode *node, GUIMouseEvent *event, const unordered_set< string > &mouseOutCandidateEventNodeIds, const unordered_set< string > &mouseOutClickCandidateEventNodeIds, unordered_set< string > &mousePressedEventNodeIds, bool floatingNodes) |
Handle mouse event for given node. More... | |
void | handleKeyboardEvent (GUIKeyboardEvent *event) |
Handle mouse event for given node. More... | |
void | reshapeScreen (GUIScreenNode *screenNode) |
Reshape screen. More... | |
void | fakeMouseMovedEvent () |
Fake mouse moved event. More... | |
void | fakeKeyboardModifierEvent () |
Fake a keyboard modifier event. More... | |
void | applyRenderScreensChange () |
Render screens change. More... | |
Static Private Attributes | |
static STATIC_DLL_IMPEXT unordered_map< string, GUIFont * > * | fontCache = new unordered_map<string, GUIFont*>() |
static STATIC_DLL_IMPEXT unordered_map< string, Texture * > * | imageCache = new unordered_map<string, Texture*>() |
GUI | ( | Engine * | engine, |
GUIRenderer * | guiRenderer | ||
) |
|
inlineprivate |
|
inlineprivate |
void addRenderScreen | ( | const string & | screenId | ) |
void addScreen | ( | const string & | id, |
GUIScreenNode * | screen | ||
) |
|
private |
|
private |
|
private |
|
private |
|
inline |
GUIElementNode * getFocussedNode | ( | ) |
|
static |
Get font.
applicationRootPath | application root path |
fileName | file name |
tdme::os::filesystem::FileSystemException |
|
static |
Get image.
applicationRootPath | application root path |
fileName | file name |
tdme::os::filesystem::FileSystemException |
|
inline |
|
inline |
|
inline |
|
private |
|
private |
Handle mouse event for given node.
node | node |
event | event |
mouseOutCandidateEventNodeIds | mouse out candidate event node ids |
mouseOutClickCandidateEventNodeIds | mouse out click candidate event node ids |
mousePressedEventNodeIds | mouse pressed event node ids |
floatingNodes | check if to gather floating nodes only |
|
inline |
bool isHavingMouseInteraction | ( | GUINode * | node | ) |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
void removeRenderScreen | ( | const string & | screenId | ) |
void removeScreen | ( | const string & | id | ) |
void reshape | ( | int | width, |
int | height | ||
) |
|
private |
void setFoccussedNode | ( | GUIElementNode * | newFoccussedNode | ) |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |