4#include <unordered_map>
5#include <unordered_set>
30using std::unordered_map;
31using std::unordered_set;
50template<
typename T,
typename U>
53 auto t =
dynamic_cast<T
>(u);
80 unordered_map<string, GUIScreenNode*>
screens;
230 static GUIFont*
getFont(
const string& applicationRootPath,
const string& fileName);
239 static Texture*
getImage(
const string& applicationRootPath,
const string& fileName);
247 auto screensIt =
screens.find(
id);
248 if (screensIt ==
screens.end()) {
251 return screensIt->second;
283 if (renderScreen->getId() == screenId)
return true;
362 void onChar(
unsigned int key,
int x,
int y)
override;
370 void onKeyDown (
unsigned char key,
int keyCode,
int x,
int y)
override;
379 void onKeyUp(
unsigned char key,
int keyCode,
int x,
int y)
override;
411 void onMouseWheel(
int button,
int direction,
int x,
int y)
override;
static T required_dynamic_cast(U u)
void addMouseOutClickCandidateElementNode(GUINode *node)
Add node that is a possible mouse click out candidate as it received a mouse click.
unordered_map< string, unordered_set< string > > mousePressedEventNodeIds
GUIColor unfocussedNodeBorderTopColor
bool hasRenderScreen(const string &screenId)
Returns if given screen is beeing rendered.
void onMouseMoved(int x, int y) override
On mouse moved.
GUIElementNode * getFocussedNode()
void addMouseOutCandidateElementNode(GUINode *node)
Add node that is a possible mouse out candidate as it received a mouse over.
vector< GUIScreenNode * > renderScreens
string focussedNodeScreenId
unordered_map< string, unordered_set< string > > mouseOutCandidateEventNodeIds
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
void onMouseDragged(int x, int y) override
On mouse dragged.
void focusPreviousNode()
Focus next node.
bool isHavingMouseInteraction(GUINode *node)
Reports if node has currently mouse interaction like dragging or pressing.
void applyRenderScreensChange()
Render screens change.
void removeRenderScreen(const string &screenId)
Remove render screen.
vector< GUIScreenNode * > focusableScreenNodes
vector< GUIElementNode * > focusableNodes
void onMouseButton(int button, int state, int x, int y) override
On mouse moved.
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.
unordered_map< string, bool > mouseIsDragging
void determineFocussedNodes()
Determine focussed nodes.
void onMouseWheel(int button, int direction, int x, int y) override
On mouse wheel.
GUIColor foccussedBorderColor
GUI(Engine *engine, GUIRenderer *guiRenderer)
Public constructor.
unordered_map< string, GUIScreenNode * > screens
GUIRenderer * guiRenderer
static STATIC_DLL_IMPEXT unordered_map< string, Texture * > * imageCache
void handleEvents()
Handle screen events.
void reshape(int width, int height)
Reshape.
static STATIC_DLL_IMPEXT unordered_map< string, GUIFont * > * fontCache
string focussedNodeNodeId
void unfocusNode()
Unfocus current focussed node.
void render()
Render GUIs.
GUIColor & getFoccussedBorderColor()
void onKeyUp(unsigned char key, int keyCode, int x, int y) override
On key up.
void onKeyDown(unsigned char key, int keyCode, int x, int y) override
On key down.
vector< GUIKeyboardEvent > keyboardEvents
void setFoccussedNode(GUIElementNode *newFoccussedNode)
Set focussed node.
unordered_map< string, unordered_set< string > > mouseOutClickCandidateEventNodeIds
void focusNode()
Focus current focussed node.
void fakeKeyboardModifierEvent()
Fake a keyboard modifier event.
GUIColor unfocussedNodeBorderRightColor
GUIScreenNode * getScreen(const string &id)
Get screen.
void addRenderScreen(const string &screenId)
Add render screen.
vector< GUIMouseEvent > & getMouseEvents()
void removeScreen(const string &id)
Removes an screen.
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
void invalidateFocussedNode()
Invalidate focussed node.
void reshapeScreen(GUIScreenNode *screenNode)
Reshape screen.
unordered_map< string, unordered_set< string > > mouseDraggingEventNodeIds
void fakeMouseMovedEvent()
Fake mouse moved event.
void focusNextNode()
Focus next node.
GUIColor unfocussedNodeBorderLeftColor
void reset()
Removes all screens and caches.
vector< GUIKeyboardEvent > & getKeyboardEvents()
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle mouse event for given node.
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
void resetRenderScreens()
Reset render screens.
void onChar(unsigned int key, int x, int y) override
On char.
GUIColor unfocussedNodeBorderBottomColor
vector< GUIMouseEvent > mouseEvents
GUI drop down controller.
GUIScreenNode * getScreenNode()
GUI screen node that represents a screen that can be rendered via GUI system.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
std::exception Exception
Exception base class.
#define STATIC_DLL_IMPEXT