Speed up AFL/PFL changes for large sessions
[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 "gtkmm2ext/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   private:
59         PannerEditor* editor ();
60         boost::shared_ptr<ARDOUR::PannerShell> _panner_shell;
61
62         boost::shared_ptr<PBD::Controllable> position_control;
63         PBD::ScopedConnectionList panvalue_connections;
64         PBD::ScopedConnectionList panshell_connections;
65         int drag_start_x;
66         int last_drag_x;
67         double accumulated_delta;
68         bool detented;
69
70         BindingProxy position_binder;
71
72         void set_tooltip ();
73
74         struct ColorScheme {
75             uint32_t outline;
76             uint32_t fill;
77             uint32_t text;
78             uint32_t background;
79             uint32_t pos_outline;
80             uint32_t pos_fill;
81         };
82
83         bool _dragging;
84
85         static Pango::AttrList panner_font_attributes;
86         static bool have_font;
87
88         static ColorScheme colors;
89         static void set_colors ();
90         static bool have_colors;
91         void color_handler ();
92         void bypass_handler ();
93         void pannable_handler ();
94 };
95
96 #endif /* __gtk_ardour_mono_panner_h__ */