Set session of PluginPinWidget created after ::set_session()
[ardour.git] / gtk2_ardour / panner_interface.h
1 /*
2     Copyright (C) 2011 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_panner_interface_h__
21 #define __gtk_ardour_panner_interface_h__
22
23 #include <boost/shared_ptr.hpp>
24 #include <gtkmm/drawingarea.h>
25 #include <gtkmm/label.h>
26 #include "gtkmm2ext/persistent_tooltip.h"
27
28 #include "pbd/destructible.h"
29
30 namespace PBD {
31         class Controllable;
32 }
33
34 namespace ARDOUR {
35         class Panner;
36 }
37
38 class PannerEditor;
39
40 class PannerPersistentTooltip : public Gtkmm2ext::PersistentTooltip
41 {
42 public:
43         PannerPersistentTooltip (Gtk::Widget* w);
44
45         void target_start_drag ();
46         void target_stop_drag ();
47
48         bool dragging () const;
49
50 private:
51         bool _dragging;
52 };
53
54
55 /** Parent class for some panner UI classes that contains some common code */
56 class PannerInterface : public Gtk::DrawingArea, public PBD::Destructible
57 {
58 public:
59         PannerInterface (boost::shared_ptr<ARDOUR::Panner>);
60         virtual ~PannerInterface ();
61
62         boost::shared_ptr<ARDOUR::Panner> panner () {
63                 return _panner;
64         }
65
66         void edit ();
67         void set_send_drawing_mode (bool);
68
69 protected:
70         virtual void set_tooltip () = 0;
71         virtual boost::weak_ptr<PBD::Controllable> proxy_controllable () const = 0;
72
73         void value_change ();
74
75         bool on_enter_notify_event (GdkEventCrossing *);
76         bool on_leave_notify_event (GdkEventCrossing *);
77         bool on_key_release_event  (GdkEventKey *);
78         bool on_button_press_event (GdkEventButton*);
79         bool on_button_release_event (GdkEventButton*);
80
81         boost::shared_ptr<ARDOUR::Panner> _panner;
82         PannerPersistentTooltip _tooltip;
83
84         bool _send_mode;
85
86 private:
87         virtual PannerEditor* editor () = 0;
88         PannerEditor* _editor;
89 };
90
91 #endif