TDME2
1.9.121
src
tdme
gui
elements
GUIContextMenu.cpp
Go to the documentation of this file.
1
#include <
tdme/gui/elements/GUIContextMenu.h
>
2
3
#include <string>
4
#include <unordered_map>
5
6
#include <
tdme/tdme.h
>
7
#include <
tdme/gui/elements/GUIContextMenuController.h
>
8
#include <
tdme/gui/nodes/GUIScreenNode.h
>
9
#include <
tdme/os/filesystem/FileSystem.h
>
10
#include <
tdme/os/filesystem/FileSystemException.h
>
11
#include <
tdme/os/filesystem/FileSystemInterface.h
>
12
13
using
tdme::gui::elements::GUIContextMenu
;
14
15
using
std::string;
16
using
std::unordered_map;
17
18
using
tdme::gui::elements::GUIContextMenuController
;
19
using
tdme::gui::nodes::GUIScreenNode
;
20
using
tdme::os::filesystem::FileSystem
;
21
using
tdme::os::filesystem::FileSystemException
;
22
using
tdme::os::filesystem::FileSystemInterface
;
23
24
string
GUIContextMenu::NAME =
"context-menu"
;
25
26
GUIContextMenu::GUIContextMenu()
27
{
28
}
29
30
const
string
&
GUIContextMenu::getName
()
31
{
32
return
NAME
;
33
}
34
35
const
string
GUIContextMenu::getTemplate
(
const
string
& applicationPathName,
const
string
& applicationSubPathName,
const
string
& fileName)
36
{
37
return
FileSystem::getInstance()->getContentAsString(applicationPathName +
"/resources/"
+ applicationSubPathName +
"/gui/definitions"
, fileName.empty() ==
true
?
"context-menu.xml"
:fileName);
38
}
39
40
unordered_map<string, string>
GUIContextMenu::getAttributes
(
GUIScreenNode
* screenNode)
41
{
42
unordered_map<string, string> attributes;
43
attributes[
"id"
] = screenNode->
allocateNodeId
();
44
attributes[
"text"
] =
"10"
;
45
return
attributes;
46
}
47
48
GUINodeController
*
GUIContextMenu::createController
(
GUINode
* node)
49
{
50
return
new
GUIContextMenuController
(node);
51
}
52
FileSystemException.h
FileSystemInterface.h
FileSystem.h
GUIContextMenuController.h
GUIContextMenu.h
GUIScreenNode.h
tdme::gui::elements::GUIContextMenuController
GUI context menu controller.
Definition:
GUIContextMenuController.h:32
tdme::gui::elements::GUIContextMenu
GUI context menu element.
Definition:
GUIContextMenu.h:28
tdme::gui::elements::GUIContextMenu::createController
GUINodeController * createController(GUINode *node) override
Create controller which is attached to this node.
Definition:
GUIContextMenu.cpp:48
tdme::gui::elements::GUIContextMenu::getAttributes
unordered_map< string, string > getAttributes(GUIScreenNode *screenNode) override
Get default attributes.
Definition:
GUIContextMenu.cpp:40
tdme::gui::elements::GUIContextMenu::getName
const string & getName() override
Definition:
GUIContextMenu.cpp:30
tdme::gui::elements::GUIContextMenu::getTemplate
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:
GUIContextMenu.cpp:35
tdme::gui::elements::GUIContextMenu::NAME
static STATIC_DLL_IMPEXT string NAME
Definition:
GUIContextMenu.h:31
tdme::gui::nodes::GUINodeController
GUI node controller base class.
Definition:
GUINodeController.h:19
tdme::gui::nodes::GUINode
GUI node base class.
Definition:
GUINode.h:63
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::gui::nodes::GUIScreenNode::allocateNodeId
const string allocateNodeId()
Allocate node id.
Definition:
GUIScreenNode.h:373
tdme::os::filesystem::FileSystemException
File system exception.
Definition:
FileSystemException.h:16
tdme::os::filesystem::FileSystem
File system singleton class.
Definition:
FileSystem.h:14
tdme::os::filesystem::FileSystemInterface
File system interface.
Definition:
FileSystemInterface.h:24
tdme.h
Generated by
1.9.3