blob: 87871013930a8aa244f6ac22bdd9d44c568af4c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#ifndef EDITORAUDIOBUSES_H
#define EDITORAUDIOBUSES_H
#include "scene/gui/box_container.h"
#include "scene/gui/button.h"
#include "scene/gui/tool_button.h"
#include "scene/gui/scroll_container.h"
#include "scene/gui/panel_container.h"
#include "scene/gui/slider.h"
#include "scene/gui/texture_progress.h"
#include "scene/gui/texture_rect.h"
#include "scene/gui/line_edit.h"
#include "scene/gui/tree.h"
#include "scene/gui/option_button.h"
class EditorAudioBuses;
class EditorAudioBus : public PanelContainer {
GDCLASS( EditorAudioBus, PanelContainer )
bool prev_active;
float peak_l;
float peak_r;
Ref<Texture> disabled_vu;
LineEdit *track_name;
VSlider *slider;
TextureProgress *vu_l;
TextureProgress *vu_r;
TextureRect *scale;
OptionButton *send;
PopupMenu *effect_options;
Button *solo;
Button *mute;
Button *bypass;
Tree *effects;
bool updating_bus;
void _name_changed(const String& p_new_name);
void _name_focus_exit() { _name_changed(track_name->get_text()); }
void _volume_db_changed(float p_db);
void _solo_toggled();
void _mute_toggled();
void _bypass_toggled();
void _send_selected(int p_which);
void _effect_edited();
void _effect_add(int p_which);
void _effect_selected();
friend class EditorAudioBuses;
EditorAudioBuses *buses;
protected:
static void _bind_methods();
void _notification(int p_what);
public:
void update_bus();
void update_send();
EditorAudioBus(EditorAudioBuses *p_buses=NULL);
};
class EditorAudioBuses : public VBoxContainer {
GDCLASS(EditorAudioBuses,VBoxContainer)
HBoxContainer *top_hb;
Button *add;
ToolButton *buses;
ToolButton *groups;
ScrollContainer *bus_scroll;
HBoxContainer *bus_hb;
ScrollContainer *group_scroll;
HBoxContainer *group_hb;
void _add_bus();
void _update_buses();
void _update_bus(int p_index);
void _update_sends();
protected:
static void _bind_methods();
void _notification(int p_what);
public:
static void register_editor();
EditorAudioBuses();
};
#endif // EDITORAUDIOBUSES_H
|