The new class 'Gtkmm2ext::EventBoxExt' needs to be exportable when building with...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / eventboxext.h
1 /*
2  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #ifndef __gtkmm2ext_eventbox_ext_h__
20 #define __gtkmm2ext_eventbox_ext_h__
21
22 #include <gtkmm/eventbox.h>
23
24 #include "gtkmm2ext/visibility.h"
25
26 namespace Gtkmm2ext {
27
28 class LIBGTKMM2EXT_API EventBoxExt : public Gtk::EventBox
29 {
30 public:
31         EventBoxExt ();
32         virtual ~EventBoxExt () {}
33
34 protected:
35         /* gtk2's gtk/gtkcontainer.c does not
36          * unmap child widgets if the container has a window.
37          *
38          * (this is for historical reasons and optimization
39          * because back in the day each GdkWindow was backed by
40          * an actual windowing system surface).
41          *
42          * In Ardour's case an EventBox is used in the Editor's top-level
43          * and child-widgets (e.g. Canvas::GtkCanvas never receive an unmap.
44          *
45          * However, when switching Tabbable pages, we do need to hide overlays
46          * such as ArdourCanvasOpenGLView
47          *
48          */
49         void on_unmap () {
50                 Gtk::EventBox::on_unmap();
51                 if (get_child ()) {
52                         get_child()->unmap();
53                 }
54         }
55 };
56
57 } /* namespace */
58
59 #endif