TDME2
1.9.121
src
tdme
tools
editor
tabviews
TabView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/tools/editor/tabviews/fwd-tdme.h
>
5
6
#include <string>
7
#include <vector>
8
9
#include <
tdme/engine/fwd-tdme.h
>
10
#include <
tdme/gui/events/GUIInputEventHandler.h
>
11
#include <
tdme/tools/editor/tabcontrollers/TabController.h
>
12
#include <
tdme/utilities/MutableString.h
>
13
14
using
std::string;
15
using
std::vector;
16
17
using
tdme::engine::Engine
;
18
using
tdme::gui::events::GUIInputEventHandler
;
19
using
tdme::tools::editor::tabcontrollers::TabController
;
20
using
tdme::utilities::MutableString
;
21
22
/**
23
* Tab view interface
24
* @author Andreas Drewke
25
* @version $Id$
26
*/
27
struct
tdme::tools::editor::tabviews::TabView
:
public
GUIInputEventHandler
28
{
29
struct
OutlinerState
{
30
vector<string>
expandedOutlinerParentOptionValues
;
31
MutableString
value
;
32
float
renderOffsetX
{ 0.0f };
33
float
renderOffsetY
{ 0.0f };
34
};
35
36
/**
37
* @return tab id
38
*/
39
virtual
const
string
&
getTabId
() = 0;
40
41
/**
42
* Initiates the view
43
*/
44
virtual
void
initialize
() = 0;
45
46
/**
47
* Renders the view
48
*/
49
virtual
void
display
() = 0;
50
51
/**
52
* Disposes the view
53
*/
54
virtual
void
dispose
() = 0;
55
56
/**
57
* Activate
58
*/
59
virtual
void
activate
() = 0;
60
61
/**
62
* Deactivate
63
*/
64
virtual
void
deactivate
() = 0;
65
66
/**
67
* @return engine
68
*/
69
virtual
Engine
*
getEngine
() = 0;
70
71
/**
72
* @return associated tab controller
73
*/
74
virtual
TabController
*
getTabController
() = 0;
75
76
/**
77
* Update rendering
78
* @deprecated This should be removed
79
*/
80
virtual
void
updateRendering
() = 0;
81
82
/**
83
* Reload outliner
84
* @param newSelectionValue new selection value
85
*
86
*/
87
virtual
void
reloadOutliner
() = 0;
88
89
/**
90
* If this viewport framebuffer has a fixed size
91
*/
92
virtual
bool
hasFixedSize
() = 0;
93
94
/**
95
* Destructor
96
*/
97
virtual
~TabView
() {}
98
99
};
GUIInputEventHandler.h
MutableString.h
TabController.h
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::utilities::MutableString
Mutable string class.
Definition:
MutableString.h:16
fwd-tdme.h
tdme::gui::events::GUIInputEventHandler
GUI input event handler interface.
Definition:
GUIInputEventHandler.h:12
tdme::tools::editor::tabcontrollers::TabController
Tab controller, which connects UI with logic.
Definition:
TabController.h:23
tdme::tools::editor::tabviews::TabView::OutlinerState
Definition:
TabView.h:29
tdme::tools::editor::tabviews::TabView::OutlinerState::renderOffsetX
float renderOffsetX
Definition:
TabView.h:32
tdme::tools::editor::tabviews::TabView::OutlinerState::value
MutableString value
Definition:
TabView.h:31
tdme::tools::editor::tabviews::TabView::OutlinerState::expandedOutlinerParentOptionValues
vector< string > expandedOutlinerParentOptionValues
Definition:
TabView.h:30
tdme::tools::editor::tabviews::TabView::OutlinerState::renderOffsetY
float renderOffsetY
Definition:
TabView.h:33
tdme::tools::editor::tabviews::TabView
Tab view interface.
Definition:
TabView.h:28
tdme::tools::editor::tabviews::TabView::deactivate
virtual void deactivate()=0
Deactivate.
tdme::tools::editor::tabviews::TabView::hasFixedSize
virtual bool hasFixedSize()=0
If this viewport framebuffer has a fixed size.
tdme::tools::editor::tabviews::TabView::~TabView
virtual ~TabView()
Destructor.
Definition:
TabView.h:97
tdme::tools::editor::tabviews::TabView::activate
virtual void activate()=0
Activate.
tdme::tools::editor::tabviews::TabView::getEngine
virtual Engine * getEngine()=0
tdme::tools::editor::tabviews::TabView::updateRendering
virtual void updateRendering()=0
Update rendering.
tdme::tools::editor::tabviews::TabView::display
virtual void display()=0
Renders the view.
tdme::tools::editor::tabviews::TabView::reloadOutliner
virtual void reloadOutliner()=0
Reload outliner.
tdme::tools::editor::tabviews::TabView::initialize
virtual void initialize()=0
Initiates the view.
tdme::tools::editor::tabviews::TabView::getTabController
virtual TabController * getTabController()=0
tdme::tools::editor::tabviews::TabView::dispose
virtual void dispose()=0
Disposes the view.
tdme::tools::editor::tabviews::TabView::getTabId
virtual const string & getTabId()=0
tdme.h
fwd-tdme.h
Generated by
1.9.3