use ActionManager namespace, rather than ActionMap objects, and remove all per-contex...
[ardour.git] / gtk2_ardour / mono_panner.h
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk_ardour_mono_panner_h__
21 #define __gtk_ardour_mono_panner_h__
22
23 #include "pbd/signals.h"
24
25 #include <boost/shared_ptr.hpp>
26
27 #include "widgets/binding_proxy.h"
28
29 #include "panner_interface.h"
30
31 namespace ARDOUR {
32         class PannerShell;
33 }
34
35 namespace PBD {
36         class Controllable;
37 }
38
39 class MonoPanner : public PannerInterface
40 {
41 public:
42         MonoPanner (boost::shared_ptr<ARDOUR::PannerShell>);
43         ~MonoPanner ();
44
45         boost::shared_ptr<PBD::Controllable> get_controllable() const { return position_control; }
46
47         sigc::signal<void> StartGesture;
48         sigc::signal<void> StopGesture;
49
50 protected:
51         bool on_expose_event (GdkEventExpose*);
52         bool on_button_press_event (GdkEventButton*);
53         bool on_button_release_event (GdkEventButton*);
54         bool on_motion_notify_event (GdkEventMotion*);
55         bool on_scroll_event (GdkEventScroll*);
56         bool on_key_press_event (GdkEventKey*);
57
58         boost::weak_ptr<PBD::Controllable> proxy_controllable () const
59         {
60                 return boost::weak_ptr<PBD::Controllable> (position_binder.get_controllable());
61         }
62
63 private:
64         PannerEditor* editor ();
65         boost::shared_ptr<ARDOUR::PannerShell> _panner_shell;
66
67         boost::shared_ptr<PBD::Controllable> position_control;
68         PBD::ScopedConnectionList panvalue_connections;
69         PBD::ScopedConnectionList panshell_connections;
70         int drag_start_x;
71         int last_drag_x;
72         double accumulated_delta;
73         bool detented;
74
75         ArdourWidgets::BindingProxy position_binder;
76
77         void set_tooltip ();
78
79         struct ColorScheme {
80                 uint32_t outline;
81                 uint32_t fill;
82                 uint32_t text;
83                 uint32_t background;
84                 uint32_t pos_outline;
85                 uint32_t pos_fill;
86         };
87
88         bool _dragging;
89
90         static Pango::AttrList panner_font_attributes;
91         static bool have_font;
92
93         static ColorScheme colors;
94         static void set_colors ();
95         static bool have_colors;
96         void color_handler ();
97         void bypass_handler ();
98         void pannable_handler ();
99 };
100
101 #endif /* __gtk_ardour_mono_panner_h__ */