TDME2 1.9.121
TextEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
14
15#include <ext/tinyxml/tinyxml.h>
16
17using std::string;
18
30
34
35/**
36 * Text editor tab controller
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41 : public TabController
42{
43
44private:
45 TextEditorTabView* view { nullptr };
47 PopUps* popUps { nullptr };
48
49public:
50 /**
51 * Public constructor
52 * @param view view
53 */
55
56 /**
57 * Destructor
58 */
60
61 /**
62 * Get view
63 */
65
66 // overridden method
67 GUIScreenNode* getScreenNode() override;
68
69 // overridden methods
70 void initialize(GUIScreenNode* screenNode) override;
71 void dispose() override;
72 void save() override;
73 void saveAs() override;
74
75 // overridden methods
76 void onValueChanged(GUIElementNode* node) override;
78 void onFocus(GUIElementNode* node) override;
79 void onUnfocus(GUIElementNode* node) override;
80 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
81
82 /**
83 * Set outliner content
84 */
85 void setOutlinerContent();
86
87 /**
88 * Set outliner add drop down content
89 */
91
92 /**
93 * Shows the error pop up
94 * @param caption caption
95 * @param message message
96 */
97 void showErrorPopUp(const string& caption, const string& message);
98
99};
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Pop ups controller accessor class.
Definition: PopUps.h:19
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void initialize(GUIScreenNode *screenNode) override
Init.
TextEditorTabController(TextEditorTabView *view)
Public constructor.
Mutable string class.
Definition: MutableString.h:16
An attribute is a name-value pair.
Definition: tinyxml.h:734
Always the top level node.
Definition: tinyxml.h:1317
The element is a container class.
Definition: tinyxml.h:886
GUI action listener interface.
GUI change listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23