Ability to delete, drag and drop audio buses!

This commit is contained in:
Juan Linietsky
2017-01-23 23:12:08 -03:00
parent 2527566ca8
commit 3b019bf644
9 changed files with 397 additions and 26 deletions

View File

@ -223,6 +223,11 @@ public:
void set_bus_count(int p_count);
int get_bus_count() const;
void remove_bus(int p_index);
void add_bus(int p_at_pos=-1);
void move_bus(int p_bus,int p_to_pos);
void set_bus_name(int p_bus,const String& p_name);
String get_bus_name(int p_bus) const;
@ -253,8 +258,6 @@ public:
void set_bus_effect_enabled(int p_bus,int p_effect,bool p_enabled);
bool is_bus_effect_enabled(int p_bus,int p_effect) const;
void move_bus(int p_bus,int p_to_bus);
float get_bus_peak_volume_left_db(int p_bus,int p_channel) const;
float get_bus_peak_volume_right_db(int p_bus,int p_channel) const;