TDME2 1.9.121
SoundTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
16
17using std::string;
18
29
30/**
31 * Sound tab view
32 * @author Andreas Drewke
33 * @version $Id$
34 */
36 : public TabView
37{
38protected:
39 Engine* engine { nullptr };
40 Audio* audio { nullptr };
41
42private:
43 EditorView* editorView { nullptr };
44 string tabId;
45 PopUps* popUps { nullptr };
50
51public:
52 /**
53 * Public constructor
54 * @param editorView editor view
55 * @param tabId tab id
56 * @param screenNode screenNode
57 * @param audioEntity audioEntity
58 */
60
61 /**
62 * Destructor
63 */
65
66 /**
67 * @return editor view
68 */
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};
Audio entity base class.
Definition: AudioEntity.h:20
Interface to audio module.
Definition: Audio.h:30
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
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 dispose() override
Disposes the view.
SoundTabView(EditorView *editorView, const string &tabId, GUIScreenNode *screenNode, AudioEntity *audioEntity)
Public constructor.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
Definition: SoundTabView.h:99
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
TabController * getTabController() override
Definition: SoundTabView.h:76
void initialize() override
Initiates the view.
void handleInputEvents() override
Handle input events that have not yet been processed.
void updateRendering() override
Update rendering.
Tab controller, which connects UI with logic.
Definition: TabController.h:23