TDME2 1.9.121
GUISliderV.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
12
13using std::string;
14using std::unordered_map;
15
22
23string GUISliderV::NAME = "slider-vertical";
24
25GUISliderV::GUISliderV()
26{
27}
28
29const string& GUISliderV::getName()
30{
31 return NAME;
32}
33
34const string GUISliderV::getTemplate(const string& applicationPathName, const string& applicationSubPathName, const string& fileName)
35{
36 return FileSystem::getInstance()->getContentAsString(applicationPathName + "/resources/" + applicationSubPathName + "/gui/definitions", fileName.empty() == true?"slider-v.xml":fileName);
37}
38
39unordered_map<string, string> GUISliderV::getAttributes(GUIScreenNode* screenNode)
40{
41 unordered_map<string, string> attributes;
42 attributes["id"] = screenNode->allocateNodeId();
43 attributes["disabled"] = "false";
44 attributes["value"] = "0.0";
45 return attributes;
46}
47
49{
50 return new GUISliderVController(node);
51}
52
GUI vertical slider element.
Definition: GUISliderV.h:29
GUINodeController * createController(GUINode *node) override
Create controller which is attached to this node.
Definition: GUISliderV.cpp:48
unordered_map< string, string > getAttributes(GUIScreenNode *screenNode) override
Get default attributes.
Definition: GUISliderV.cpp:39
const string & getName() override
Definition: GUISliderV.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: GUISliderV.cpp:34
static STATIC_DLL_IMPEXT string NAME
Definition: GUISliderV.h:32
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
const string allocateNodeId()
Allocate node id.
File system singleton class.
Definition: FileSystem.h:14