TDME2 1.9.121
TextureTabView.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
29TextureTabView::TextureTabView(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, false, 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
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("TextureTabView::initialize(): An error occurred: "));
63 Console::println(string(exception.what()));
64 }
65 // TODO: load settings
66}
67
69{
70 engine->dispose();
71}
72
74}
75
77 return engine;
78}
79
85}
86
89}
90
94}
95
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.
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
void initialize() override
Initiates the view.
void handleInputEvents() override
Handle input events that have not yet been processed.
void updateRendering() override
Update rendering.
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
std::exception Exception
Exception base class.
Definition: Exception.h:19