Show panner drag information tool-tip style, and also show
[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
27 namespace ARDOUR {
28         class Panner;
29 }
30
31 /** Parent class for some panner UI classes that contains some common code */
32 class PannerInterface : public Gtk::DrawingArea
33 {
34 public:
35         PannerInterface (boost::shared_ptr<ARDOUR::Panner>);
36         virtual ~PannerInterface ();
37
38 protected:
39         virtual void set_drag_data () = 0;
40         
41         void show_drag_data_window ();
42         void hide_drag_data_window ();
43         void value_change ();
44         
45         bool on_enter_notify_event (GdkEventCrossing *);
46         bool on_leave_notify_event (GdkEventCrossing *);
47         bool on_key_release_event  (GdkEventKey *);
48
49         boost::shared_ptr<ARDOUR::Panner> _panner;
50         Gtk::Window* _drag_data_window;
51         Gtk::Label*  _drag_data_label;
52         bool _dragging;
53
54 private:
55         bool drag_data_timeout ();
56         sigc::connection _drag_data_timeout;
57 };
58
59 #endif