TDME2 1.9.121
GUIMenuItem.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>
12
13using std::string;
14using std::unordered_map;
15
21
22/**
23 * GUI menu item element
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29
30private:
31 STATIC_DLL_IMPEXT static string NAME;
32
33public:
34 /**
35 * Public constructor
36 */
38
39 // overridden methods
40 const string& getName() override;
41 const string getTemplate(const string& applicationPathName, const string& applicationSubPathName, const string& fileName = string()) override;
42 unordered_map<string, string> getAttributes(GUIScreenNode* screenNode) override;
44
45};
GUI element base class.
Definition: GUIElement.h:24
GUI menu item element.
Definition: GUIMenuItem.h:28
GUINodeController * createController(GUINode *node) override
Create controller which is attached to this node.
Definition: GUIMenuItem.cpp:46
unordered_map< string, string > getAttributes(GUIScreenNode *screenNode) override
Get default attributes.
Definition: GUIMenuItem.cpp:39
const string & getName() override
Definition: GUIMenuItem.cpp:29
const string getTemplate(const string &applicationPathName, const string &applicationSubPathName, const string &fileName=string()) override
Retrieve template from given path name and optional file name.
Definition: GUIMenuItem.cpp:34
static STATIC_DLL_IMPEXT string NAME
Definition: GUIMenuItem.h:31
GUIMenuItem()
Public constructor.
Definition: GUIMenuItem.cpp:25
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11