4#include <unordered_map>
28using std::unordered_map;
47ContextMenuScreenController::ContextMenuScreenController()
53 for (
auto& actionIt:
actions)
delete actionIt.second;
66 screenNode = GUIParser::parse(
"resources/engine/gui",
"popup_contextmenu.xml");
72 Console::print(
string(
"ContextMenuScreenController::initialize(): An error occurred: "));
73 Console::println(
string(exception.what()));
83 auto x =
static_cast<int>((float)mouseX * (
float)
screenNode->
getScreenWidth() / (float)Engine::getInstance()->getGUI()->getWidth());
84 auto y =
static_cast<int>((float)mouseY * (
float)
screenNode->
getScreenHeight() / (float)Engine::getInstance()->getGUI()->getHeight());
106 if (actionIt !=
actions.end() && actionIt->second !=
nullptr) actionIt->second->performAction();
118 for (
auto& actionIt:
actions)
delete actionIt.second;
124 "<context-menu-item text=\"" + GUIParser::escapeQuotes(text) +
"\" id=\"" + GUIParser::escapeQuotes(
id) +
"\" />",
127 auto actionIt =
actions.find(
id);
128 if (actionIt !=
actions.end() && actionIt->second !=
nullptr)
delete actionIt->second;
129 if (action !=
nullptr)
actions[id] = action;
134 "<menu-separator />",
GUI node requested constraints requested constraints type enum.
GUINode_RequestedConstraints & getRequestsConstraints()
GUINode_ComputedConstraints & getComputedConstraints()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
void setVisible(bool visible)
Set visible.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void layout() override
Layout.
void addActionListener(GUIActionListener *listener)
Add action listener.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
void addFocusListener(GUIFocusListener *listener)
Add focus listener.
std::exception Exception
Exception base class.
GUI node requested constraints entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType