dfe2ef7ffec1a32a7a324219b71e49073c7cf6e1
[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         void set_check_divider_position (bool);
68
69   protected:
70         bool horizontal;
71
72         void on_add (Gtk::Widget*);
73         void on_remove (Gtk::Widget*);
74         void on_size_request (GtkRequisition*);
75         void on_size_allocate (Gtk::Allocation&);
76         bool on_expose_event (GdkEventExpose*);
77
78         bool handle_press_event (GdkEventButton*, Divider*);
79         bool handle_release_event (GdkEventButton*, Divider*);
80         bool handle_motion_event (GdkEventMotion*, Divider*);
81         bool handle_enter_event (GdkEventCrossing*, Divider*);
82         bool handle_leave_event (GdkEventCrossing*, Divider*);
83
84         void forall_vfunc (gboolean include_internals, GtkCallback callback, gpointer callback_data);
85
86   private:
87         Gdk::Cursor drag_cursor;
88         bool did_move;
89
90         void reallocate (Gtk::Allocation const &);
91
92         Children children;
93
94         struct Divider : public Gtk::EventBox {
95                 Divider ();
96
97                 float fract;
98                 bool dragging;
99
100                 bool on_expose_event (GdkEventExpose* ev);
101         };
102
103         typedef std::list<Divider*> Dividers;
104         Dividers dividers;
105         int divider_width;
106         bool check_fract;
107
108         void add_divider ();
109         void handle_child_visibility ();
110         bool fract_is_ok (Dividers::size_type, float fract);
111 };
112
113 class LIBGTKMM2EXT_API HPane : public Pane
114 {
115   public:
116         HPane () : Pane (true) {}
117 };
118
119 class LIBGTKMM2EXT_API VPane : public Pane
120 {
121   public:
122         VPane () : Pane (false) {}
123 };
124
125 } /* namespace */
126
127 #endif /* __libgtkmm2ext_pane_h__ */