Ardour  9.0-pre0-386-g96ef4d20f2
eventboxext.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef _WIDGETS_EVENTBOX_EXT_H_
20 #define _WIDGETS_EVENTBOX_EXT_H_
21 
22 #include <gtkmm/eventbox.h>
23 
24 #include "widgets/visibility.h"
25 
26 namespace ArdourWidgets {
27 
29 {
30 public:
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 () {
51  if (get_child ()) {
52  get_child()->unmap();
53  }
54  }
55 };
56 
57 } /* namespace */
58 
59 #endif
void on_unmap()
This is a default handler for the signal signal_unmap().
Definition: eventboxext.h:49
virtual void on_unmap()
This is a default handler for the signal signal_unmap().
#define LIBWIDGETS_API