Speed up AFL/PFL changes for large sessions
[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 #include "pbd/destructible.h"
28
29 namespace ARDOUR {
30         class Panner;
31 }
32
33 class PannerEditor;
34
35 class PannerPersistentTooltip : public Gtkmm2ext::PersistentTooltip
36 {
37 public:
38         PannerPersistentTooltip (Gtk::Widget* w);
39
40         void target_start_drag ();
41         void target_stop_drag ();
42
43         bool dragging () const;
44
45 private:
46         bool _dragging;
47 };
48
49
50 /** Parent class for some panner UI classes that contains some common code */
51 class PannerInterface : public Gtk::DrawingArea, public PBD::Destructible
52 {
53 public:
54         PannerInterface (boost::shared_ptr<ARDOUR::Panner>);
55         virtual ~PannerInterface ();
56
57         boost::shared_ptr<ARDOUR::Panner> panner () {
58                 return _panner;
59         }
60
61         void edit ();
62         void set_send_drawing_mode (bool);
63
64 protected:
65         virtual void set_tooltip () = 0;
66
67         void value_change ();
68
69         bool on_enter_notify_event (GdkEventCrossing *);
70         bool on_leave_notify_event (GdkEventCrossing *);
71         bool on_key_release_event  (GdkEventKey *);
72         bool on_button_press_event (GdkEventButton*);
73         bool on_button_release_event (GdkEventButton*);
74
75         boost::shared_ptr<ARDOUR::Panner> _panner;
76         PannerPersistentTooltip _tooltip;
77
78         bool _send_mode;
79
80 private:
81         virtual PannerEditor* editor () = 0;
82         PannerEditor* _editor;
83 };
84
85 #endif