Revert of Refactor and move ash independent nested accelerator code to ui/wm/core...
[chromium-blink-merge.git] / ash / accelerators / accelerator_dispatcher_linux.cc
blobb5494dd2e129f32fa18db2c035b2f145aad8c6ff
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/accelerators/accelerator_dispatcher.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "base/run_loop.h"
9 #include "ui/events/event.h"
10 #include "ui/events/platform/platform_event_dispatcher.h"
11 #include "ui/events/platform/platform_event_source.h"
12 #include "ui/events/platform/scoped_event_dispatcher.h"
14 #if defined(USE_X11)
15 #include <X11/Xlib.h>
16 #endif
18 namespace ash {
20 namespace {
22 #if defined(USE_OZONE)
23 bool IsKeyEvent(const base::NativeEvent& native_event) {
24 const ui::KeyEvent* event = static_cast<const ui::KeyEvent*>(native_event);
25 return event->IsKeyEvent();
27 #elif defined(USE_X11)
28 bool IsKeyEvent(const XEvent* xev) {
29 return xev->type == KeyPress || xev->type == KeyRelease;
31 #else
32 #error Unknown build platform: you should have either use_ozone or use_x11.
33 #endif
35 scoped_ptr<ui::ScopedEventDispatcher> OverrideDispatcher(
36 ui::PlatformEventDispatcher* dispatcher) {
37 ui::PlatformEventSource* source = ui::PlatformEventSource::GetInstance();
38 return source ? source->OverrideDispatcher(dispatcher)
39 : scoped_ptr<ui::ScopedEventDispatcher>();
42 } // namespace
44 class AcceleratorDispatcherLinux : public AcceleratorDispatcher,
45 public ui::PlatformEventDispatcher {
46 public:
47 AcceleratorDispatcherLinux()
48 : restore_dispatcher_(OverrideDispatcher(this)) {}
50 virtual ~AcceleratorDispatcherLinux() {}
52 private:
53 // AcceleratorDispatcher:
54 virtual scoped_ptr<base::RunLoop> CreateRunLoop() OVERRIDE {
55 return scoped_ptr<base::RunLoop>(new base::RunLoop());
58 // ui::PlatformEventDispatcher:
59 virtual bool CanDispatchEvent(const ui::PlatformEvent& event) OVERRIDE {
60 return true;
63 virtual uint32_t DispatchEvent(const ui::PlatformEvent& event) OVERRIDE {
64 if (IsKeyEvent(event)) {
65 ui::KeyEvent key_event(event, false);
66 if (MenuClosedForPossibleAccelerator(key_event)) {
67 #if defined(USE_X11)
68 XPutBackEvent(event->xany.display, event);
69 #else
70 NOTIMPLEMENTED();
71 #endif
72 return ui::POST_DISPATCH_NONE;
75 if (AcceleratorProcessedForKeyEvent(key_event))
76 return ui::POST_DISPATCH_NONE;
79 ui::PlatformEventDispatcher* prev = *restore_dispatcher_;
80 return prev ? prev->DispatchEvent(event)
81 : ui::POST_DISPATCH_PERFORM_DEFAULT;
84 scoped_ptr<ui::ScopedEventDispatcher> restore_dispatcher_;
86 DISALLOW_COPY_AND_ASSIGN(AcceleratorDispatcherLinux);
89 scoped_ptr<AcceleratorDispatcher> AcceleratorDispatcher::Create(
90 base::MessagePumpDispatcher* nested_dispatcher) {
91 return scoped_ptr<AcceleratorDispatcher>(new AcceleratorDispatcherLinux());
94 } // namespace ash