Provide dialogs to edit pan values numerically, at least for
[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 PBD {
32         class Controllable;
33 }
34
35 class MonoPanner : public PannerInterface
36 {
37   public:
38         MonoPanner (boost::shared_ptr<ARDOUR::Panner>);
39         ~MonoPanner ();
40
41         boost::shared_ptr<PBD::Controllable> get_controllable() const { return position_control; }
42
43         sigc::signal<void> StartGesture;
44         sigc::signal<void> StopGesture;
45
46   protected:
47         bool on_expose_event (GdkEventExpose*);
48         bool on_button_press_event (GdkEventButton*);
49         bool on_button_release_event (GdkEventButton*);
50         bool on_motion_notify_event (GdkEventMotion*);
51         bool on_scroll_event (GdkEventScroll*);
52         bool on_key_press_event (GdkEventKey*);
53
54   private:
55         PannerEditor* editor ();
56         
57         boost::shared_ptr<PBD::Controllable> position_control;
58         PBD::ScopedConnectionList connections;
59         int drag_start_x;
60         int last_drag_x;
61         double accumulated_delta;
62         bool detented;
63
64         BindingProxy position_binder;
65
66         void set_drag_data ();
67
68         struct ColorScheme {
69             uint32_t outline;
70             uint32_t fill;
71             uint32_t text;
72             uint32_t background;
73             uint32_t pos_outline;
74             uint32_t pos_fill;
75         };
76
77         static ColorScheme colors;
78         static void set_colors ();
79         static bool have_colors;
80         void color_handler ();
81 };
82
83 #endif /* __gtk_ardour_mono_panner_h__ */