X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fstereo_panner.h;h=d897bd3644c84ff8e754f49d367a09a9218c9fc0;hb=0310f8997147cc50600a98f05ef1a6c486e688c7;hp=8bab160d60dd9019a20f9e57bc7cdb138515d3f0;hpb=25a6296f865620d5013cd634e693f7179e7edc84;p=ardour.git diff --git a/gtk2_ardour/stereo_panner.h b/gtk2_ardour/stereo_panner.h index 8bab160d60..d897bd3644 100644 --- a/gtk2_ardour/stereo_panner.h +++ b/gtk2_ardour/stereo_panner.h @@ -29,79 +29,83 @@ namespace ARDOUR { } namespace PBD { - class Controllable; + class Controllable; } namespace ARDOUR { - class Panner; + class Panner; } class StereoPanner : public PannerInterface { - public: +public: StereoPanner (boost::shared_ptr); ~StereoPanner (); - boost::shared_ptr get_position_controllable() const { return position_control; } - boost::shared_ptr get_width_controllable() const { return width_control; } + 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: +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_scroll_event (GdkEventScroll*); + bool on_key_press_event (GdkEventKey*); - private: + 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; - bool dragging_position; - bool dragging_left; - bool dragging_right; - int drag_start_x; - int last_drag_x; - double accumulated_delta; - bool detented; - - BindingProxy position_binder; - 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 - }; + + 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; + + BindingProxy position_binder; + 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; + static ColorScheme colors[3]; + static void set_colors (); + static bool have_colors; void color_handler (); void bypass_handler (); void pannable_handler ();