TDME2 1.9.121
GUIElement.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>
10
11using std::string;
12using std::unordered_map;
13
17
18/**
19 * GUI element base class
20 * @author Andreas Drewke
21 * @version $Id$
22 */
24{
25
26public:
27 /**
28 * Public constructor
29 */
30 GUIElement();
31
32 /**
33 * Destructor
34 */
35 virtual ~GUIElement();
36
37 /**
38 * @return name
39 */
40 virtual const string& getName() = 0;
41
42 /**
43 * Retrieve template from given path name and optional file name
44 * @param applicationPathName application path name
45 * @param applicationSubPathName sub path name which is usually "project" or "engine"
46 * @param fileName file name
47 * @throws tdme::os::filesystem::FileSystemException
48 * @return template
49 */
50 virtual const string getTemplate(const string& applicationPathName, const string& applicationSubPathName, const string& fileName = string()) = 0;
51
52 /**
53 * Get default attributes
54 * @param screenNode screen node
55 * @return default attributes
56 */
57 virtual unordered_map<string, string> getAttributes(GUIScreenNode* screenNode) = 0;
58
59 /**
60 * Create controller which is attached to this node
61 * @param node node
62 * @return
63 */
65
66};
GUI element base class.
Definition: GUIElement.h:24
virtual unordered_map< string, string > getAttributes(GUIScreenNode *screenNode)=0
Get default attributes.
virtual const string getTemplate(const string &applicationPathName, const string &applicationSubPathName, const string &fileName=string())=0
Retrieve template from given path name and optional file name.
virtual ~GUIElement()
Destructor.
Definition: GUIElement.cpp:10
GUIElement()
Public constructor.
Definition: GUIElement.cpp:6
virtual GUINodeController * createController(GUINode *node)=0
Create controller which is attached to this node.
virtual const string & getName()=0
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