TDME2 1.9.121
ContextMenuScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
13
14using std::string;
15using std::unordered_map;
16
24
25/**
26 * Context menu screen controller
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31 : public ScreenController
32 , public virtual GUIActionListener
33 , public virtual GUIFocusListener
34{
35
36private:
39 unordered_map<string, Action*> actions;
40
41public:
42 /**
43 * Public constructor
44 */
46
47 /**
48 * Destructor
49 */
51
52 /**
53 * Clear
54 */
55 void clear();
56
57 /**
58 * Add menu item
59 * @param text text
60 * @param id id
61 * @param action action
62 */
63 void addMenuItem(const string& text, const string& id, Action* action = nullptr);
64
65 /**
66 * Add menu separator
67 */
68 void addMenuSeparator();
69
70 // overriden methods
71 GUIScreenNode* getScreenNode() override;
72 void initialize() override;
73 void dispose() override;
75 void onFocus(GUIElementNode* node) override;
76 void onUnfocus(GUIElementNode* node) override;
77
78 /**
79 * Shows the pop up
80 * @param mouseX mouse X
81 * @param mouseY mouse Y
82 */
83 void show(int mouseX, int mouseY);
84
85 /**
86 * Closes the pop up
87 */
88 void close();
89
90};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
GUI action listener interface.
GUI focus listener interface.
Screen controller, which connects GUI screen definition with code.
Action Interface.
Definition: Action.h:12