X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fstereo_panner.h;h=f1e1025d76f5ae8e076ae46d26d7601b2b904db6;hb=9b87279eca991043c347dfdfda71b4e063023aec;hp=9dad41ba7142f983732706b6246259c4616bea4a;hpb=742cb78a917915c9e5a2b350a74ed92de956124e;p=ardour.git diff --git a/gtk2_ardour/stereo_panner.h b/gtk2_ardour/stereo_panner.h index 9dad41ba71..f1e1025d76 100644 --- a/gtk2_ardour/stereo_panner.h +++ b/gtk2_ardour/stereo_panner.h @@ -21,69 +21,94 @@ #define __gtk_ardour_stereo_panner_h__ #include "pbd/signals.h" +#include "widgets/binding_proxy.h" +#include "panner_interface.h" -#include -#include +namespace ARDOUR { + class PannerShell; +} namespace PBD { - class Controllable; + class Controllable; +} + +namespace ARDOUR { + class Panner; } -class StereoPanner : public Gtk::DrawingArea +class StereoPanner : public PannerInterface { - public: - StereoPanner (boost::shared_ptr pos, boost::shared_ptr width); +public: + StereoPanner (boost::shared_ptr); ~StereoPanner (); - protected: + boost::shared_ptr get_position_controllable() const { return position_control; } + boost::shared_ptr get_width_controllable() const { return width_control; } + + sigc::signal StartPositionGesture; + sigc::signal StopPositionGesture; + sigc::signal StartWidthGesture; + sigc::signal StopWidthGesture; + +protected: bool on_expose_event (GdkEventExpose*); bool on_button_press_event (GdkEventButton*); bool on_button_release_event (GdkEventButton*); bool on_motion_notify_event (GdkEventMotion*); - bool on_scroll_event (GdkEventScroll*); - bool on_key_press_event (GdkEventKey*); - bool on_key_release_event (GdkEventKey*); - bool on_enter_notify_event (GdkEventCrossing* ev); - bool on_leave_notify_event (GdkEventCrossing* ev); - - private: - boost::shared_ptr position_control; - boost::shared_ptr width_control; - PBD::ScopedConnectionList connections; - bool dragging; - bool dragging_position; - bool dragging_left; - bool dragging_right; - int drag_start_x; - int last_drag_x; - double accumulated_delta; - bool detented; - - Gtk::Window* drag_data_window; - Gtk::Label* drag_data_label; - - void value_change (); - void set_drag_data (); - void set_tooltip (); - void unset_tooltip (); - - struct ColorScheme { - uint32_t outline; - uint32_t fill; - uint32_t text; - uint32_t background; - }; - - enum State { - Normal, - Mono, - Inverted - }; - - static ColorScheme colors[3]; - static void set_colors (); - static bool have_colors; - static PBD::Signal0 color_change; + bool on_scroll_event (GdkEventScroll*); + bool on_key_press_event (GdkEventKey*); + + boost::weak_ptr proxy_controllable () const + { + return boost::weak_ptr (position_binder.get_controllable()); + } + +private: + PannerEditor* editor (); + boost::shared_ptr _panner_shell; + + boost::shared_ptr position_control; + boost::shared_ptr width_control; + PBD::ScopedConnectionList panvalue_connections; + PBD::ScopedConnectionList panshell_connections; + bool dragging_position; + bool dragging_left; + bool dragging_right; + int drag_start_x; + int last_drag_x; + double accumulated_delta; + bool detented; + + ArdourWidgets::BindingProxy position_binder; + ArdourWidgets::BindingProxy width_binder; + + void set_tooltip (); + + struct ColorScheme { + uint32_t outline; + uint32_t fill; + uint32_t text; + uint32_t background; + uint32_t rule; + }; + + enum State { + Normal, + Mono, + Inverted + }; + + bool _dragging; + + static Pango::AttrList panner_font_attributes; + static bool have_font; + + static ColorScheme colors[3]; + static void set_colors (); + static bool have_colors; + void color_handler (); + void bypass_handler (); + void pannable_handler (); }; #endif /* __gtk_ardour_stereo_panner_h__ */