blob: 642b63df8e4cb3e1b6eb2a448941d871143c390a (
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
|
// 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.
#ifndef APP_ACTIVE_WINDOW_WATCHER_X_H_
#define APP_ACTIVE_WINDOW_WATCHER_X_H_
#pragma once
#include <gdk/gdk.h>
#include "base/basictypes.h"
#include "base/observer_list.h"
#include "base/singleton.h"
// This is a helper class that is used to keep track of which window the X
// window manager thinks is active. Add an Observer to listener for changes to
// the active window.
class ActiveWindowWatcherX {
public:
class Observer {
public:
// |active_window| will be NULL if the active window isn't one of Chrome's.
virtual void ActiveWindowChanged(GdkWindow* active_window) = 0;
};
static void AddObserver(Observer* observer);
static void RemoveObserver(Observer* observer);
private:
friend struct DefaultSingletonTraits<ActiveWindowWatcherX>;
ActiveWindowWatcherX();
void Init();
// Sends a notification out through the NotificationService that the active
// window has changed.
void NotifyActiveWindowChanged();
// Callback for PropertyChange XEvents.
static GdkFilterReturn OnWindowXEvent(GdkXEvent* xevent,
GdkEvent* event,
gpointer window_watcher);
ObserverList<Observer> observers_;
DISALLOW_COPY_AND_ASSIGN(ActiveWindowWatcherX);
};
#endif // APP_ACTIVE_WINDOW_WATCHER_X_H_
|