summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/visibility_tracker.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-03-25 20:03:59 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-03-25 20:03:59 -0400
commitbd2d4d42475214fffbdc670eb22963249cecf744 (patch)
tree3e85681044165ef6871baf11560944d7b01258c6 /libs/gtkmm2ext/visibility_tracker.cc
parent43b09fdd9a922aacf9eaa49075b86156735ae41c (diff)
add new VisibilityTracker class to implement cycling window visibility "properly" - i.e. avoiding hide+show/present to get a hidden or partially obscured window visible again
Diffstat (limited to 'libs/gtkmm2ext/visibility_tracker.cc')
-rw-r--r--libs/gtkmm2ext/visibility_tracker.cc50
1 files changed, 50 insertions, 0 deletions
diff --git a/libs/gtkmm2ext/visibility_tracker.cc b/libs/gtkmm2ext/visibility_tracker.cc
new file mode 100644
index 0000000000..c0aabdfca6
--- /dev/null
+++ b/libs/gtkmm2ext/visibility_tracker.cc
@@ -0,0 +1,50 @@
+/*
+ Copyright (C) 2013 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include <gtkmm/window.h>
+
+#include "gtkmm2ext/visibility_tracker.h"
+
+using namespace Gtkmm2ext;
+
+VisibilityTracker::VisibilityTracker (Gtk::Window& win)
+ : window (win)
+ , _visibility (GdkVisibilityState (0))
+{
+ window.add_events (Gdk::VISIBILITY_NOTIFY_MASK);
+ window.signal_visibility_notify_event().connect (sigc::mem_fun (*this, &VisibilityTracker::handle_visibility_notify_event));
+}
+
+bool
+VisibilityTracker::handle_visibility_notify_event (GdkEventVisibility* ev)
+{
+ _visibility = ev->state;
+ return false;
+}
+
+void
+VisibilityTracker::cycle_visibility ()
+{
+ if (window.is_mapped() && (_visibility == GDK_VISIBILITY_UNOBSCURED)) {
+ window.hide ();
+ } else {
+ window.present ();
+ }
+}
+