blob: d834a5cfcede6f5ba576681654e9e0882e1ed27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2009 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 <X11/Xlib.h>
#include <gdk/gdk.h>
#include <gdk/gdkx.h>
#include "app/active_window_watcher_x.h"
// static
void ActiveWindowWatcherX::AddObserver(Observer* observer) {
Singleton<ActiveWindowWatcherX>::get()->observers_.AddObserver(observer);
}
// static
void ActiveWindowWatcherX::RemoveObserver(Observer* observer) {
Singleton<ActiveWindowWatcherX>::get()->observers_.RemoveObserver(observer);
}
ActiveWindowWatcherX::ActiveWindowWatcherX() {
Init();
}
void ActiveWindowWatcherX::Init() {
// Set up X Event filter to listen for PropertyChange X events. These events
// tell us when the active window changes.
GdkWindow* root = gdk_screen_get_root_window(gdk_screen_get_default());
gdk_window_add_filter(root, &ActiveWindowWatcherX::OnWindowXEvent, this);
XSelectInput(GDK_WINDOW_XDISPLAY(root), GDK_WINDOW_XID(root),
PropertyChangeMask);
}
void ActiveWindowWatcherX::NotifyActiveWindowChanged() {
GdkWindow* active_window = gdk_screen_get_active_window(
gdk_screen_get_default());
// If the window manager doesn't support _NET_ACTIVE_WINDOW, we don't know
// which window is active and just give up.
if (!active_window)
return;
FOR_EACH_OBSERVER(Observer, observers_, ActiveWindowChanged(active_window));
}
GdkFilterReturn ActiveWindowWatcherX::OnWindowXEvent(GdkXEvent* xevent,
GdkEvent* event, gpointer window_watcher) {
static const GdkAtom kNetActiveWindow = gdk_atom_intern(
"_NET_ACTIVE_WINDOW", FALSE);
static const Atom kNetActiveWindowAtom = gdk_x11_atom_to_xatom_for_display(
gdk_screen_get_display(gdk_screen_get_default()), kNetActiveWindow);
ActiveWindowWatcherX* watcher = reinterpret_cast<ActiveWindowWatcherX*>(
window_watcher);
XEvent* xev = static_cast<XEvent*>(xevent);
if (xev->xany.type == PropertyNotify &&
xev->xproperty.atom == kNetActiveWindowAtom) {
watcher->NotifyActiveWindowChanged();
}
return GDK_FILTER_CONTINUE;
}
|