X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fautomation_controller.h;h=12b31f6d86a067cafa4b7f937b53189dd3685062;hb=a07465ceaaa2c20ab41dd60dc13793b6e09da81b;hp=29635c848869d2bed9ae98f5f3c955a78c61c541;hpb=07a5372eea6b70dd9f3224aa3aead904e2eef72c;p=ardour.git diff --git a/gtk2_ardour/automation_controller.h b/gtk2_ardour/automation_controller.h index 29635c8488..12b31f6d86 100644 --- a/gtk2_ardour/automation_controller.h +++ b/gtk2_ardour/automation_controller.h @@ -29,53 +29,79 @@ #endif #include -#include -#include "gtkmm2ext/barcontroller.h" +#include + #include "pbd/signals.h" #include "evoral/Parameter.hpp" +#include "widgets/barcontroller.h" namespace ARDOUR { class Session; class AutomationList; class AutomationControl; - class Automatable; } +namespace Gtk { + class Adjustment; + class Widget; +} + +class AutomationBarController : public ArdourWidgets::BarController { +public: + AutomationBarController(boost::shared_ptr ac, + Gtk::Adjustment* adj); + ~AutomationBarController(); +private: + std::string get_label (double&); + boost::shared_ptr _controllable; +}; + /** A BarController which displays the value and allows control of an AutomationControl */ -class AutomationController : public Gtkmm2ext::BarController { +class AutomationController : public Gtk::Alignment { public: - static boost::shared_ptr create( - boost::shared_ptr parent, - const Evoral::Parameter& param, - boost::shared_ptr ac); + static boost::shared_ptr create ( + const Evoral::Parameter& param, + const ARDOUR::ParameterDescriptor& desc, + boost::shared_ptr ac, + bool use_knob = false); ~AutomationController(); boost::shared_ptr controllable() { return _controllable; } + void disable_vertical_scroll(); + Gtk::Adjustment* adjustment() { return _adjustment; } + Gtk::Widget* widget() { return _widget; } - void display_effective_value(); + void display_effective_value (); + void automation_state_changed (); void value_adjusted(); void stop_updating (); private: - AutomationController (boost::shared_ptr printer, boost::shared_ptr ac, Gtk::Adjustment* adj); - std::string get_label (double&); + AutomationController (boost::shared_ptr ac, + Gtk::Adjustment* adj, + bool use_knob); void start_touch(); void end_touch(); + bool button_press(GdkEventButton*); + bool button_release(GdkEventButton*); - void value_changed(); + void run_note_select_dialog(); + void set_ratio(double ratio); + void set_freq_beats(double beats); + bool on_button_release(GdkEventButton* ev); - bool _ignore_change; - boost::shared_ptr _printer; + Gtk::Widget* _widget; boost::shared_ptr _controllable; Gtk::Adjustment* _adjustment; sigc::connection _screen_update_connection; - PBD::ScopedConnection _changed_connection; + PBD::ScopedConnectionList _changed_connections; + bool _ignore_change; };