blob: 56255585900b70e4d0f6f81a72844363d73ff6a8 (
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
|
// Copyright (c) 2012 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 UI_AURA_DISPATCHER_LINUX_H_
#define UI_AURA_DISPATCHER_LINUX_H_
#pragma once
#include <map>
#include <X11/Xlib.h>
// Get rid of a macro from Xlib.h that conflicts with Aura's RootWindow class.
#undef RootWindow
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/message_loop.h"
namespace aura {
class DispatcherLinux : public MessageLoop::Dispatcher {
public:
DispatcherLinux();
virtual ~DispatcherLinux();
void WindowDispatcherCreated(::Window window,
MessageLoop::Dispatcher* dispatcher);
void WindowDispatcherDestroying(::Window window);
// Overridden from MessageLoop::Dispatcher:
virtual bool Dispatch(const base::NativeEvent& event) OVERRIDE;
private:
typedef std::map< ::Window, MessageLoop::Dispatcher* > DispatchersMap;
MessageLoop::Dispatcher* GetDispatcherForXEvent(XEvent* xev) const;
DispatchersMap dispatchers_;
DISALLOW_COPY_AND_ASSIGN(DispatcherLinux);
};
} // namespace aura
#endif // UI_AURA_DISPATCHER_LINUX_H_
|