new mono panner widget; make stereo panner respond to changes in colors immediately
[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 <gtkmm/drawingarea.h>
26 #include <boost/shared_ptr.hpp>
27
28 #include "gtkmm2ext/binding_proxy.h"
29
30 namespace PBD {
31         class Controllable;
32 }
33
34 class MonoPanner : public Gtk::DrawingArea
35 {
36   public:
37         MonoPanner (boost::shared_ptr<PBD::Controllable> pos);
38         ~MonoPanner ();
39
40         boost::shared_ptr<PBD::Controllable> get_controllable() const { return position_control; }
41
42   protected:
43         bool on_expose_event (GdkEventExpose*);
44         bool on_button_press_event (GdkEventButton*);
45         bool on_button_release_event (GdkEventButton*);
46         bool on_motion_notify_event (GdkEventMotion*);
47         bool on_scroll_event (GdkEventScroll*);
48         bool on_key_press_event (GdkEventKey*);
49         bool on_key_release_event (GdkEventKey*);
50         bool on_enter_notify_event (GdkEventCrossing* ev);
51         bool on_leave_notify_event (GdkEventCrossing* ev);
52
53   private:
54         boost::shared_ptr<PBD::Controllable> position_control;
55         PBD::ScopedConnectionList connections;
56         bool dragging;
57         int drag_start_x;
58         int last_drag_x;
59         double accumulated_delta;
60         bool detented;
61
62         Gtk::Window* drag_data_window;
63         Gtk::Label* drag_data_label;
64
65         BindingProxy position_binder;
66
67         void value_change ();
68         void set_drag_data ();
69
70         struct ColorScheme { 
71             uint32_t outline;
72             uint32_t fill;
73             uint32_t text;
74             uint32_t background;
75             uint32_t pos_outline;
76             uint32_t pos_fill;
77         };
78
79         static ColorScheme colors;
80         static void set_colors ();
81         static bool have_colors;
82         void color_handler ();
83 };
84
85 #endif /* __gtk_ardour_mono_panner_h__ */