more stereo panner work
[ardour.git] / gtk2_ardour / stereo_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_stereo_panner_h__
21 #define __gtk_ardour_stereo_panner_h__
22
23 #include "pbd/signals.h"
24
25 #include <gtkmm/drawingarea.h>
26 #include <boost/shared_ptr.hpp>
27
28 namespace PBD {
29         class Controllable;
30 }
31
32 class StereoPanner : public Gtk::DrawingArea
33 {
34   public:
35         StereoPanner (boost::shared_ptr<PBD::Controllable> pos, boost::shared_ptr<PBD::Controllable> width);
36         ~StereoPanner ();
37
38   protected:
39         bool on_expose_event (GdkEventExpose*);
40         bool on_button_press_event (GdkEventButton*);
41         bool on_button_release_event (GdkEventButton*);
42         bool on_motion_notify_event (GdkEventMotion*);
43         bool on_scroll_event (GdkEventScroll*);
44
45   private:
46         boost::shared_ptr<PBD::Controllable> position_control;
47         boost::shared_ptr<PBD::Controllable> width_control;
48         PBD::ScopedConnectionList connections;
49         bool dragging;
50         bool dragging_position;
51         int drag_start_x;
52         int last_drag_x;
53
54         void value_change ();
55         void set_tooltip ();
56 };
57
58 #endif /* __gtk_ardour_stereo_panner_h__ */