TDME2 1.9.121
GUICheckbox.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>
11
12using std::string;
13using std::unordered_map;
14
20
21/**
22 * GUI check box element
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27 : public GUIElement
28{
29
30private:
31 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 check box element.
Definition: GUICheckbox.h:28
GUINodeController * createController(GUINode *node) override
Create controller which is attached to this node.
Definition: GUICheckbox.cpp:49
unordered_map< string, string > getAttributes(GUIScreenNode *screenNode) override
Get default attributes.
Definition: GUICheckbox.cpp:39
GUICheckbox()
Public constructor.
Definition: GUICheckbox.cpp:25
const string & getName() override
Definition: GUICheckbox.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: GUICheckbox.cpp:34
GUI element base class.
Definition: GUIElement.h:24
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