Chromium Code Reviews| Index: ui/base/x/root_window_property_watcher_x.cc |
| diff --git a/ui/base/x/root_window_property_watcher_x.cc b/ui/base/x/root_window_property_watcher_x.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..44d6a49f801195b68d368687db2e695a9a71b5fc |
| --- /dev/null |
| +++ b/ui/base/x/root_window_property_watcher_x.cc |
| @@ -0,0 +1,54 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include <gdk/gdk.h> |
| +#include <gdk/gdkx.h> |
| + |
| +#include "ui/base/x/root_window_property_watcher_x.h" |
|
sky
2011/11/18 17:54:22
This include should be first, then system includes
prasadt
2011/11/18 22:31:42
Done.
|
| + |
| +#include "ui/base/x/active_window_watcher_x.h" |
| +#include "ui/base/x/work_area_watcher_x.h" |
| + |
| +namespace ui { |
| + |
| +// static |
| +RootWindowPropertyWatcherX* RootWindowPropertyWatcherX::GetInstance() { |
| + return Singleton<RootWindowPropertyWatcherX>::get(); |
| +} |
| + |
| +RootWindowPropertyWatcherX::RootWindowPropertyWatcherX() { |
| + GdkWindow* root = gdk_get_default_root_window(); |
| + |
| + // Set up X Event filter to listen for PropertyChange X events. |
| + // Don't use XSelectInput directly here, as gdk internally seems to cache the |
| + // mask and reapply XSelectInput after this, resetting any mask we set here. |
| + gdk_window_set_events(root, |
| + static_cast<GdkEventMask>(gdk_window_get_events(root) | |
| + GDK_PROPERTY_CHANGE_MASK)); |
| + gdk_window_add_filter(root, |
| + &RootWindowPropertyWatcherX::OnWindowXEventThunk, |
| + this); |
| +} |
| + |
| +RootWindowPropertyWatcherX::~RootWindowPropertyWatcherX() { |
| + gdk_window_remove_filter(NULL, |
| + &RootWindowPropertyWatcherX::OnWindowXEventThunk, |
| + this); |
| +} |
| + |
| +GdkFilterReturn RootWindowPropertyWatcherX::OnWindowXEvent( |
| + GdkXEvent* xevent, GdkEvent* event) { |
| + XEvent* xev = static_cast<XEvent*>(xevent); |
| + |
| + if (xev->xany.type == PropertyNotify) { |
| + if (xev->xproperty.atom == ActiveWindowWatcherX::GetPropertyAtom()) |
| + ActiveWindowWatcherX::Notify(); |
| + else if (xev->xproperty.atom == WorkAreaWatcherX::GetPropertyAtom()) |
| + WorkAreaWatcherX::Notify(); |
| + } |
| + |
| + return GDK_FILTER_CONTINUE; |
| +} |
| + |
| +} // namespace ui |