most of the 2.X->3.0 commit (up to rev 4299) except for gtk2_ardour/editor_canvas...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / tearoff.h
1 /*
2     Copyright (C) 2003 Paul Barton-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 __gtkmm2ext_tearoff_h__
21 #define __gtkmm2ext_tearoff_h__
22
23 #include <gtkmm/window.h>
24 #include <gtkmm/arrow.h>
25 #include <gtkmm/box.h>
26 #include <gtkmm/eventbox.h>
27
28 namespace Gtkmm2ext {
29
30 class TearOff : public Gtk::HBox
31 {
32   public:
33         TearOff (Gtk::Widget& contents, bool allow_resize = false);
34         virtual ~TearOff ();
35
36         void set_visible (bool yn);
37         void set_can_be_torn_off (bool);
38         bool can_be_torn_off () const { return _can_be_torn_off; }
39
40         sigc::signal<void> Detach;
41         sigc::signal<void> Attach;
42         sigc::signal<void> Visible;
43         sigc::signal<void> Hidden;
44
45         Gtk::Window& tearoff_window() { return own_window; }
46         bool torn_off() const;
47
48   private:
49         Gtk::Widget&   contents;
50         Gtk::Window    own_window;
51         Gtk::Arrow     tearoff_arrow;
52         Gtk::Arrow     close_arrow;
53         Gtk::HBox      window_box;
54         Gtk::EventBox  tearoff_event_box;
55         Gtk::EventBox  close_event_box;
56         double         drag_x;
57         double         drag_y;
58         bool           dragging;
59         bool          _visible;
60         bool          _can_be_torn_off;
61
62         gint tearoff_click (GdkEventButton*);
63         gint close_click (GdkEventButton*);
64
65         gint window_motion (GdkEventMotion*);
66         gint window_button_press (GdkEventButton*);
67         gint window_button_release (GdkEventButton*);
68         gint window_delete_event (GdkEventAny*);
69 };
70
71 } /* namespace */
72
73 #endif  // __gtkmm2ext_tearoff_h__