TDME2 1.9.121
GUIButton.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
13
14using std::string;
15using std::unordered_map;
16
22
23/**
24 * GUI button element
25 * @author Andreas Drewke
26 * @version $Id$
27 */
29 : public GUIElement
30{
31
32private:
33 STATIC_DLL_IMPEXT static string NAME;
34
35public:
36 /**
37 * Public constructor
38 */
39 GUIButton();
40
41 // overridden methods
42 const string& getName() override;
43 const string getTemplate(const string& applicationPathName, const string& applicationSubPathName, const string& fileName = string()) override;
44 unordered_map<string, string> getAttributes(GUIScreenNode* screenNode) override;
46
47};
GUI button element.
Definition: GUIButton.h:30
GUINodeController * createController(GUINode *node) override
Create controller which is attached to this node.
Definition: GUIButton.cpp:49
unordered_map< string, string > getAttributes(GUIScreenNode *screenNode) override
Get default attributes.
Definition: GUIButton.cpp:39
GUIButton()
Public constructor.
Definition: GUIButton.cpp:25
const string & getName() override
Definition: GUIButton.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: GUIButton.cpp:34
static STATIC_DLL_IMPEXT string NAME
Definition: GUIButton.h:33
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
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11