TDME2 1.9.121
FontTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
8#include <tdme/gui/GUI.h>
15
16using std::string;
17
19
22using tdme::gui::GUI;
28
29FontTabView::FontTabView(EditorView* editorView, const string& tabId, GUIScreenNode* screenNode)
30{
31 this->editorView = editorView;
32 this->tabId = tabId;
33 this->popUps = editorView->getPopUps();
34 engine = Engine::createOffScreenInstance(512, 512, true, false, false);
35 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
36 engine->getGUI()->addScreen(screenNode->getId(), screenNode);
37 engine->getGUI()->addRenderScreen(screenNode->getId());
38}
39
41 delete fontTabController;
42 delete engine;
43}
44
46{
48}
49
51{
52 engine->display();
53 engine->getGUI()->render();
54}
55
57{
58 try {
61 } catch (Exception& exception) {
62 Console::print(string("FontTabView::initialize(): An error occurred: "));
63 Console::println(string(exception.what()));
64 }
65 // TODO: load settings
66 // TODO: reloadTabOutliner
67}
68
70{
71 engine->dispose();
72}
73
75}
76
78 return engine;
79}
80
86}
87
90}
91
95}
96
Engine main class.
Definition: Engine.h:122
void display()
Renders the scene.
Definition: Engine.cpp:1269
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Color 4 definition.
Definition: Color4.h:20
GUI module class.
Definition: GUI.h:66
void handleEvents()
Handle screen events.
Definition: GUI.cpp:588
void render()
Render GUIs.
Definition: GUI.cpp:414
void addRenderScreen(const string &screenId)
Add render screen.
Definition: GUI.cpp:254
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
Definition: GUI.cpp:186
const string & getId()
Definition: GUINode.h:329
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void setDetailsContent(const string &xml)
Set details content.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void initialize(GUIScreenNode *screenNode) override
Init.
void dispose() override
Disposes the view.
Definition: FontTabView.cpp:69
void display() override
Renders the view.
Definition: FontTabView.cpp:50
void reloadOutliner() override
Reload outliner.
Definition: FontTabView.cpp:92
void initialize() override
Initiates the view.
Definition: FontTabView.cpp:56
void deactivate() override
Deactivate.
Definition: FontTabView.cpp:88
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition: FontTabView.cpp:45
void updateRendering() override
Update rendering.
Definition: FontTabView.cpp:74
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
std::exception Exception
Exception base class.
Definition: Exception.h:19