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 "ui/views/controls/menu/menu_event_dispatcher_linux.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "ui/aura/window.h"
9 #include "ui/events/event_utils.h"
10 #include "ui/events/keycodes/keyboard_code_conversion.h"
11 #include "ui/events/keycodes/keyboard_codes.h"
12 #include "ui/views/controls/menu/menu_controller.h"
13 #include "ui/views/widget/widget.h"
18 MenuEventDispatcher::MenuEventDispatcher(MenuController
* controller
)
19 : menu_controller_(controller
) {}
21 MenuEventDispatcher::~MenuEventDispatcher() {}
23 bool MenuEventDispatcher::CanDispatchEvent(const ui::PlatformEvent
& event
) {
27 uint32_t MenuEventDispatcher::DispatchEvent(const ui::PlatformEvent
& event
) {
28 bool should_quit
= false;
29 bool should_perform_default
= true;
30 bool should_process_event
= true;
32 // Check if the event should be handled.
33 scoped_ptr
<ui::Event
> ui_event(ui::EventFromNative(event
));
34 if (ui_event
&& menu_controller_
->owner()) {
35 aura::Window
* menu_window
= menu_controller_
->owner()->GetNativeWindow();
36 aura::Window
* target_window
= static_cast<aura::Window
*>(
37 static_cast<ui::EventTarget
*>(menu_window
->GetRootWindow())->
38 GetEventTargeter()->FindTargetForEvent(menu_window
,
40 // TODO(flackr): The event shouldn't be handled if target_window is not
41 // menu_window, however the event targeter does not properly target the
42 // open menu. For now, we allow targeters to prevent handling by the menu.
44 should_process_event
= false;
47 if (menu_controller_
->exit_type() == MenuController::EXIT_ALL
||
48 menu_controller_
->exit_type() == MenuController::EXIT_DESTROYED
) {
50 } else if (should_process_event
) {
51 switch (ui::EventTypeFromNative(event
)) {
52 case ui::ET_KEY_PRESSED
: {
53 if (!menu_controller_
->OnKeyDown(ui::KeyboardCodeFromNative(event
))) {
55 should_perform_default
= false;
59 // Do not check mnemonics if the Alt or Ctrl modifiers are pressed.
60 int flags
= ui::EventFlagsFromNative(event
);
61 if ((flags
& (ui::EF_CONTROL_DOWN
| ui::EF_ALT_DOWN
)) == 0) {
62 char c
= ui::GetCharacterFromKeyCode(
63 ui::KeyboardCodeFromNative(event
), flags
);
64 if (menu_controller_
->SelectByChar(c
)) {
66 should_perform_default
= false;
71 should_perform_default
= false;
74 case ui::ET_KEY_RELEASED
:
76 should_perform_default
= false;
83 if (should_quit
|| menu_controller_
->exit_type() != MenuController::EXIT_NONE
)
84 menu_controller_
->TerminateNestedMessageLoop();
86 return should_perform_default
? ui::POST_DISPATCH_PERFORM_DEFAULT
87 : ui::POST_DISPATCH_NONE
;
90 } // namespace internal