add a destructor for Gtkmm2ext::Pane that unparents the children.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / pane.h
1 /*
2     Copyright (C) 2016 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 __libgtkmm2ext_pane_h__
21 #define __libgtkmm2ext_pane_h__
22
23 #include <vector>
24 #include <algorithm>
25
26 #include <stdint.h>
27
28 #include <gdkmm/cursor.h>
29 #include <gtkmm/container.h>
30 #include <gtkmm/eventbox.h>
31
32 #include "gtkmm2ext/visibility.h"
33
34 namespace Gtk {
35         class Widget;
36 }
37
38 namespace Gtkmm2ext {
39
40 class LIBGTKMM2EXT_API Pane : public Gtk::Container
41 {
42   private:
43         class Divider;
44
45
46   public:
47         struct Child
48         {
49                 Gtk::Widget* w;
50                 int32_t minsize;
51
52                 Child (Gtk::Widget* widget, uint32_t ms) : w (widget), minsize (ms) {}
53         };
54
55         typedef std::list<Child> Children;
56
57         Pane (bool horizontal);
58         ~Pane();
59
60         void set_divider (std::vector<float>::size_type divider, float fract);
61         float get_divider (std::vector<float>::size_type divider = 0);
62         void set_child_minsize (Gtk::Widget const &, int32_t);
63
64         GType child_type_vfunc() const;
65         void set_drag_cursor (Gdk::Cursor);
66
67   protected:
68         bool horizontal;
69
70         void on_add (Gtk::Widget*);
71         void on_remove (Gtk::Widget*);
72         void on_size_request (GtkRequisition*);
73         void on_size_allocate (Gtk::Allocation&);
74         bool on_expose_event (GdkEventExpose*);
75
76         bool handle_press_event (GdkEventButton*, Divider*);
77         bool handle_release_event (GdkEventButton*, Divider*);
78         bool handle_motion_event (GdkEventMotion*, Divider*);
79         bool handle_enter_event (GdkEventCrossing*, Divider*);
80         bool handle_leave_event (GdkEventCrossing*, Divider*);
81
82         void forall_vfunc (gboolean include_internals, GtkCallback callback, gpointer callback_data);
83
84   private:
85         Gdk::Cursor drag_cursor;
86         bool did_move;
87
88         void reallocate (Gtk::Allocation const &);
89
90         Children children;
91
92         struct Divider : public Gtk::EventBox {
93                 Divider ();
94
95                 float fract;
96                 bool dragging;
97
98                 bool on_expose_event (GdkEventExpose* ev);
99         };
100
101         typedef std::list<Divider*> Dividers;
102         Dividers dividers;
103         int divider_width;
104         void add_divider ();
105         void handle_child_visibility ();
106 };
107
108 class LIBGTKMM2EXT_API HPane : public Pane
109 {
110   public:
111         HPane () : Pane (true) {}
112 };
113
114 class LIBGTKMM2EXT_API VPane : public Pane
115 {
116   public:
117         VPane () : Pane (false) {}
118 };
119
120 } /* namespace */
121
122 #endif /* __libgtkmm2ext_pane_h__ */