TDME2
1.9.121
src
tdme
tools
editor
tabviews
SoundTabView.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/audio/fwd-tdme.h
>
7
#include <
tdme/engine/fwd-tdme.h
>
8
#include <
tdme/gui/nodes/fwd-tdme.h
>
9
#include <
tdme/tools/editor/misc/PopUps.h
>
10
#include <
tdme/tools/editor/tabcontrollers/fwd-tdme.h
>
11
#include <
tdme/tools/editor/tabcontrollers/SoundTabController.h
>
12
#include <
tdme/tools/editor/tabcontrollers/TabController.h
>
13
#include <
tdme/tools/editor/tabviews/fwd-tdme.h
>
14
#include <
tdme/tools/editor/tabviews/TabView.h
>
15
#include <
tdme/tools/editor/views/fwd-tdme.h
>
16
17
using
std::string;
18
19
using
tdme::audio::Audio
;
20
using
tdme::audio::AudioEntity
;
21
using
tdme::engine::Engine
;
22
using
tdme::engine::FrameBuffer
;
23
using
tdme::gui::nodes::GUIScreenNode
;
24
using
tdme::tools::editor::misc::PopUps
;
25
using
tdme::tools::editor::tabcontrollers::SoundTabController
;
26
using
tdme::tools::editor::tabcontrollers::TabController
;
27
using
tdme::tools::editor::tabviews::TabView
;
28
using
tdme::tools::editor::views::EditorView
;
29
30
/**
31
* Sound tab view
32
* @author Andreas Drewke
33
* @version $Id$
34
*/
35
class
tdme::tools::editor::tabviews::SoundTabView
final
36
:
public
TabView
37
{
38
protected
:
39
Engine
*
engine
{
nullptr
};
40
Audio
*
audio
{
nullptr
};
41
42
private
:
43
EditorView
*
editorView
{
nullptr
};
44
string
tabId
;
45
PopUps
*
popUps
{
nullptr
};
46
GUIScreenNode
*
uiScreenNode
{
nullptr
};
47
SoundTabController
*
soundTabController
{
nullptr
};
48
TabView::OutlinerState
outlinerState
;
49
AudioEntity
*
audioEntity
{
nullptr
};
50
51
public
:
52
/**
53
* Public constructor
54
* @param editorView editor view
55
* @param tabId tab id
56
* @param screenNode screenNode
57
* @param audioEntity audioEntity
58
*/
59
SoundTabView
(
EditorView
*
editorView
,
const
string
&
tabId
,
GUIScreenNode
* screenNode,
AudioEntity
*
audioEntity
);
60
61
/**
62
* Destructor
63
*/
64
~SoundTabView
();
65
66
/**
67
* @return editor view
68
*/
69
inline
EditorView
*
getEditorView
() {
70
return
editorView
;
71
}
72
73
/**
74
* @return associated tab controller
75
*/
76
inline
TabController
*
getTabController
()
override
{
77
return
soundTabController
;
78
}
79
80
/**
81
* @return pop up views
82
*/
83
inline
PopUps
*
getPopUps
() {
84
return
popUps
;
85
}
86
87
// overridden methods
88
void
handleInputEvents
()
override
;
89
void
display
()
override
;
90
inline
const
string
&
getTabId
()
override
{
91
return
tabId
;
92
}
93
void
initialize
()
override
;
94
void
dispose
()
override
;
95
Engine
*
getEngine
()
override
;
96
void
activate
()
override
;
97
void
deactivate
()
override
;
98
void
reloadOutliner
()
override
;
99
inline
bool
hasFixedSize
()
override
{
return
false
; };
100
void
updateRendering
()
override
;
101
102
/**
103
* Play
104
*/
105
void
play
();
106
107
/**
108
* Stop
109
*/
110
void
stop
();
111
};
PopUps.h
SoundTabController.h
TabController.h
TabView.h
fwd-tdme.h
tdme::audio::AudioEntity
Audio entity base class.
Definition:
AudioEntity.h:20
tdme::audio::Audio
Interface to audio module.
Definition:
Audio.h:30
tdme::engine::Engine
Engine main class.
Definition:
Engine.h:122
tdme::engine::FrameBuffer
Frame buffer class.
Definition:
FrameBuffer.h:21
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::tabcontrollers::SoundTabController
Sound tab controller.
Definition:
SoundTabController.h:42
tdme::tools::editor::tabviews::SoundTabView
Sound tab view.
Definition:
SoundTabView.h:37
tdme::tools::editor::tabviews::SoundTabView::engine
Engine * engine
Definition:
SoundTabView.h:39
tdme::tools::editor::tabviews::SoundTabView::dispose
void dispose() override
Disposes the view.
Definition:
SoundTabView.cpp:77
tdme::tools::editor::tabviews::SoundTabView::SoundTabView
SoundTabView(EditorView *editorView, const string &tabId, GUIScreenNode *screenNode, AudioEntity *audioEntity)
Public constructor.
Definition:
SoundTabView.cpp:33
tdme::tools::editor::tabviews::SoundTabView::hasFixedSize
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
Definition:
SoundTabView.h:99
tdme::tools::editor::tabviews::SoundTabView::display
void display() override
Renders the view.
Definition:
SoundTabView.cpp:58
tdme::tools::editor::tabviews::SoundTabView::audio
Audio * audio
Definition:
SoundTabView.h:40
tdme::tools::editor::tabviews::SoundTabView::reloadOutliner
void reloadOutliner() override
Reload outliner.
Definition:
SoundTabView.cpp:102
tdme::tools::editor::tabviews::SoundTabView::getTabController
TabController * getTabController() override
Definition:
SoundTabView.h:76
tdme::tools::editor::tabviews::SoundTabView::tabId
string tabId
Definition:
SoundTabView.h:44
tdme::tools::editor::tabviews::SoundTabView::initialize
void initialize() override
Initiates the view.
Definition:
SoundTabView.cpp:64
tdme::tools::editor::tabviews::SoundTabView::soundTabController
SoundTabController * soundTabController
Definition:
SoundTabView.h:47
tdme::tools::editor::tabviews::SoundTabView::deactivate
void deactivate() override
Deactivate.
Definition:
SoundTabView.cpp:98
tdme::tools::editor::tabviews::SoundTabView::getEngine
Engine * getEngine() override
Definition:
SoundTabView.cpp:86
tdme::tools::editor::tabviews::SoundTabView::handleInputEvents
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition:
SoundTabView.cpp:53
tdme::tools::editor::tabviews::SoundTabView::audioEntity
AudioEntity * audioEntity
Definition:
SoundTabView.h:49
tdme::tools::editor::tabviews::SoundTabView::outlinerState
TabView::OutlinerState outlinerState
Definition:
SoundTabView.h:48
tdme::tools::editor::tabviews::SoundTabView::play
void play()
Play.
Definition:
SoundTabView.cpp:107
tdme::tools::editor::tabviews::SoundTabView::getPopUps
PopUps * getPopUps()
Definition:
SoundTabView.h:83
tdme::tools::editor::tabviews::SoundTabView::uiScreenNode
GUIScreenNode * uiScreenNode
Definition:
SoundTabView.h:46
tdme::tools::editor::tabviews::SoundTabView::activate
void activate() override
Activate.
Definition:
SoundTabView.cpp:90
tdme::tools::editor::tabviews::SoundTabView::stop
void stop()
Stop.
Definition:
SoundTabView.cpp:112
tdme::tools::editor::tabviews::SoundTabView::getTabId
const string & getTabId() override
Definition:
SoundTabView.h:90
tdme::tools::editor::tabviews::SoundTabView::popUps
PopUps * popUps
Definition:
SoundTabView.h:45
tdme::tools::editor::tabviews::SoundTabView::updateRendering
void updateRendering() override
Update rendering.
Definition:
SoundTabView.cpp:83
tdme::tools::editor::tabviews::SoundTabView::~SoundTabView
~SoundTabView()
Destructor.
Definition:
SoundTabView.cpp:48
tdme::tools::editor::tabviews::SoundTabView::editorView
EditorView * editorView
Definition:
SoundTabView.h:43
tdme::tools::editor::tabviews::SoundTabView::getEditorView
EditorView * getEditorView()
Definition:
SoundTabView.h:69
tdme::tools::editor::views::EditorView
Editor View.
Definition:
EditorView.h:30
fwd-tdme.h
fwd-tdme.h
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
Tab view interface.
Definition:
TabView.h:28
tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3