Merged with trunk R1705.
[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
38         sigc::signal<void> Detach;
39         sigc::signal<void> Attach;
40         sigc::signal<void> Visible;
41         sigc::signal<void> Hidden;
42
43         Gtk::Window& tearoff_window() { return own_window; }
44         bool torn_off() const;
45
46   private:
47         Gtk::Widget&   contents;
48         Gtk::Window    own_window;
49         Gtk::Arrow     tearoff_arrow;
50         Gtk::Arrow     close_arrow;
51         Gtk::HBox      window_box;
52         Gtk::EventBox  tearoff_event_box;
53         Gtk::EventBox  close_event_box;
54         double         drag_x;
55         double         drag_y;
56         bool           dragging;
57         bool          _visible;
58
59         gint tearoff_click (GdkEventButton*);
60         gint close_click (GdkEventButton*);
61
62         gint window_motion (GdkEventMotion*);
63         gint window_button_press (GdkEventButton*);
64         gint window_button_release (GdkEventButton*);
65         gint window_delete_event (GdkEventAny*);
66 };
67
68 } /* namespace */
69
70 #endif  // __gtkmm2ext_tearoff_h__