mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
Another not-quite-there-but-better commit.
Brought plugin automation into the fold of new automation system. Fixed plugin automation, broke panner automation :] (pending Panner work). Made AutomationController better at automatically following it's controller value (mimic what gain meter does). Fixed some visible automation track bugs (but still broken WRT serialization). git-svn-id: svn://localhost/ardour2/trunk@2092 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
685fa95e72
commit
bbf4175713
49 changed files with 728 additions and 2065 deletions
|
|
@ -42,6 +42,8 @@ public:
|
|||
~AutomationController();
|
||||
|
||||
boost::shared_ptr<ARDOUR::AutomationControl> controllable() { return _controllable; }
|
||||
|
||||
Gtk::Adjustment* adjustment() { return _adjustment; }
|
||||
|
||||
void update_label(char* label, int label_len);
|
||||
void display_effective_value();
|
||||
|
|
@ -52,6 +54,9 @@ private:
|
|||
void start_touch();
|
||||
void end_touch();
|
||||
|
||||
void value_changed();
|
||||
void automation_state_changed();
|
||||
|
||||
bool _ignore_change;
|
||||
boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
|
||||
Gtk::Adjustment* _adjustment;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue