blob: cc531ef4b0aef71acab239ce007c5982dada633f (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// 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.
#include "ash/accelerators/accelerator_dispatcher.h"
#if defined(USE_X11)
#include <X11/Xlib.h>
// Xlib defines RootWindow
#ifdef RootWindow
#undef RootWindow
#endif
#endif // defined(USE_X11)
#include "ash/accelerators/accelerator_controller.h"
#include "ash/shell.h"
#include "ui/aura/env.h"
#include "ui/aura/event.h"
#include "ui/aura/root_window.h"
#include "ui/base/accelerators/accelerator.h"
#include "ui/base/events.h"
namespace ash {
namespace {
const int kModifierMask = (ui::EF_SHIFT_DOWN |
ui::EF_CONTROL_DOWN |
ui::EF_ALT_DOWN);
#if defined(OS_WIN)
bool IsKeyEvent(const MSG& msg) {
return
msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN ||
msg.message == WM_KEYUP || msg.message == WM_SYSKEYUP;
}
bool IsKeyRelease(const MSG& msg) {
return msg.message == WM_KEYUP || msg.message == WM_SYSKEYUP;
}
#elif defined(USE_X11)
bool IsKeyEvent(const XEvent* xev) {
return xev->type == KeyPress || xev->type == KeyRelease;
}
bool IsKeyRelease(const XEvent* xev) {
return xev->type == KeyRelease;
}
#endif
} // namespace
AcceleratorDispatcher::AcceleratorDispatcher(
MessageLoop::Dispatcher* nested_dispatcher, aura::Window* associated_window)
: nested_dispatcher_(nested_dispatcher),
associated_window_(associated_window) {
DCHECK(nested_dispatcher_);
associated_window_->AddObserver(this);
}
AcceleratorDispatcher::~AcceleratorDispatcher() {
if (associated_window_)
associated_window_->RemoveObserver(this);
}
void AcceleratorDispatcher::OnWindowDestroying(aura::Window* window) {
if (associated_window_ == window)
associated_window_ = NULL;
}
bool AcceleratorDispatcher::Dispatch(const base::NativeEvent& event) {
if (!associated_window_)
return false;
if (!ui::IsNoopEvent(event) && !associated_window_->CanReceiveEvents())
return aura::Env::GetInstance()->GetDispatcher()->Dispatch(event);
if (IsKeyEvent(event)) {
ash::AcceleratorController* accelerator_controller =
ash::Shell::GetInstance()->accelerator_controller();
if (accelerator_controller) {
ui::Accelerator accelerator(ui::KeyboardCodeFromNative(event),
ui::EventFlagsFromNative(event) & kModifierMask);
if (IsKeyRelease(event))
accelerator.set_type(ui::ET_KEY_RELEASED);
if (accelerator_controller->Process(accelerator))
return true;
}
}
return nested_dispatcher_->Dispatch(event);
}
} // namespace ash
|