Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: chrome/browser/ui/cocoa/chrome_command_dispatcher_delegate.mm

Issue 1255783002: [Mac] Factor out keyboard shortcut handling from ChromeEventProcessingWindow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@execute
Patch Set: UI_BASE_EXPORT CommandDispatcher Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/ui/cocoa/chrome_event_processing_window.h" 5 #import "chrome/browser/ui/cocoa/chrome_command_dispatcher_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/global_keyboard_shortcuts_mac.h" 8 #include "chrome/browser/global_keyboard_shortcuts_mac.h"
9 #include "chrome/browser/ui/browser_commands.h" 9 #include "chrome/browser/ui/browser_commands.h"
10 #include "chrome/browser/ui/browser_finder.h" 10 #include "chrome/browser/ui/browser_finder.h"
11 #import "chrome/browser/ui/cocoa/browser_window_controller_private.h" 11 #import "chrome/browser/ui/cocoa/browser_window_controller_private.h"
12 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" 12 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h"
13 #import "content/public/browser/render_widget_host_view_mac_base.h"
14 13
15 namespace { 14 namespace {
16 15
17 // Type of functions listed in global_keyboard_shortcuts_mac.h. 16 // Type of functions listed in global_keyboard_shortcuts_mac.h.
18 typedef int (*KeyToCommandMapper)(bool, bool, bool, bool, int, unichar); 17 typedef int (*KeyToCommandMapper)(bool, bool, bool, bool, int, unichar);
19 18
20 // If the event is for a Browser window, and the key combination has an 19 // If the event is for a Browser window, and the key combination has an
21 // associated command, execute the command. 20 // associated command, execute the command.
22 bool HandleExtraKeyboardShortcut( 21 bool HandleExtraKeyboardShortcut(
23 NSEvent* event, 22 NSEvent* event,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 bool HandleDelayedWindowKeyboardShortcut(NSEvent* event, NSWindow* window) { 54 bool HandleDelayedWindowKeyboardShortcut(NSEvent* event, NSWindow* window) {
56 return HandleExtraKeyboardShortcut(event, window, 55 return HandleExtraKeyboardShortcut(event, window,
57 CommandForDelayedWindowKeyboardShortcut); 56 CommandForDelayedWindowKeyboardShortcut);
58 } 57 }
59 58
60 bool HandleExtraBrowserKeyboardShortcut(NSEvent* event, NSWindow* window) { 59 bool HandleExtraBrowserKeyboardShortcut(NSEvent* event, NSWindow* window) {
61 return HandleExtraKeyboardShortcut(event, window, 60 return HandleExtraKeyboardShortcut(event, window,
62 CommandForBrowserKeyboardShortcut); 61 CommandForBrowserKeyboardShortcut);
63 } 62 }
64 63
65 // Duplicate the given key event, but changing the associated window.
66 NSEvent* KeyEventForWindow(NSWindow* window, NSEvent* event) {
67 NSEventType event_type = [event type];
68
69 // Convert the event's location from the original window's coordinates into
70 // our own.
71 NSPoint location = [event locationInWindow];
72 location = [[event window] convertBaseToScreen:location];
73 location = [window convertScreenToBase:location];
74
75 // Various things *only* apply to key down/up.
76 bool is_a_repeat = false;
77 NSString* characters = nil;
78 NSString* charactors_ignoring_modifiers = nil;
79 if (event_type == NSKeyDown || event_type == NSKeyUp) {
80 is_a_repeat = [event isARepeat];
81 characters = [event characters];
82 charactors_ignoring_modifiers = [event charactersIgnoringModifiers];
83 }
84
85 // This synthesis may be slightly imperfect: we provide nil for the context,
86 // since I (viettrungluu) am sceptical that putting in the original context
87 // (if one is given) is valid.
88 return [NSEvent keyEventWithType:event_type
89 location:location
90 modifierFlags:[event modifierFlags]
91 timestamp:[event timestamp]
92 windowNumber:[window windowNumber]
93 context:nil
94 characters:characters
95 charactersIgnoringModifiers:charactors_ignoring_modifiers
96 isARepeat:is_a_repeat
97 keyCode:[event keyCode]];
98 }
99
100 } // namespace 64 } // namespace
101 65
102 @implementation ChromeEventProcessingWindow 66 @implementation ChromeCommandDispatcherDelegate
103 67
104 - (BOOL)handleExtraKeyboardShortcut:(NSEvent*)event { 68 - (BOOL)handleExtraKeyboardShortcut:(NSEvent*)event window:(NSWindow*)window {
105 return HandleExtraBrowserKeyboardShortcut(event, self) || 69 return HandleExtraBrowserKeyboardShortcut(event, window) ||
106 HandleExtraWindowKeyboardShortcut(event, self) || 70 HandleExtraWindowKeyboardShortcut(event, window) ||
107 HandleDelayedWindowKeyboardShortcut(event, self); 71 HandleDelayedWindowKeyboardShortcut(event, window);
108 } 72 }
109 73
110 - (BOOL)performKeyEquivalent:(NSEvent*)event { 74 - (BOOL)eventHandledByExtensionCommand:(NSEvent*)event
75 isRedispatch:(BOOL)isRedispatch {
111 // Some extension commands have higher priority than web content, and some 76 // Some extension commands have higher priority than web content, and some
112 // have lower priority. Regardless of whether the event is being 77 // have lower priority. Regardless of whether the event is being redispatched,
113 // redispatched, let the extension system try to handle the event. 78 // let the extension system try to handle the event. In case this is a
114 NSWindow* window = event.window; 79 // redispatched event, [event window] gives the correct window.
115 if (window) { 80 if ([event window]) {
116 BrowserWindowController* controller = [window windowController]; 81 BrowserWindowController* controller = [[event window] windowController];
117 if ([controller respondsToSelector:@selector(handledByExtensionCommand: 82 if ([controller respondsToSelector:@selector(handledByExtensionCommand:
118 priority:)]) { 83 priority:)]) {
119 ui::AcceleratorManager::HandlerPriority priority = 84 ui::AcceleratorManager::HandlerPriority priority =
120 redispatchingEvent_ ? ui::AcceleratorManager::kNormalPriority 85 isRedispatch ? ui::AcceleratorManager::kNormalPriority
121 : ui::AcceleratorManager::kHighPriority; 86 : ui::AcceleratorManager::kHighPriority;
122 if ([controller handledByExtensionCommand:event priority:priority]) 87 if ([controller handledByExtensionCommand:event priority:priority])
123 return YES; 88 return YES;
124 } 89 }
125 } 90 }
91 return NO;
92 }
126 93
127 if (redispatchingEvent_) 94 - (BOOL)prePerformKeyEquivalent:(NSEvent*)event window:(NSWindow*)window {
128 return NO;
129
130 // Give the web site a chance to handle the event. If it doesn't want to
131 // handle it, it will call us back with one of the |handle*| methods above.
132 NSResponder* r = [self firstResponder];
133 if ([r conformsToProtocol:@protocol(RenderWidgetHostViewMacBase)])
134 return [r performKeyEquivalent:event];
135
136 // Handle per-window shortcuts like cmd-1, but do not handle browser-level 95 // Handle per-window shortcuts like cmd-1, but do not handle browser-level
137 // shortcuts like cmd-left (else, cmd-left would do history navigation even 96 // shortcuts like cmd-left (else, cmd-left would do history navigation even
138 // if e.g. the Omnibox has focus). 97 // if e.g. the Omnibox has focus).
139 if (HandleExtraWindowKeyboardShortcut(event, self)) 98 return HandleExtraWindowKeyboardShortcut(event, window);
140 return YES; 99 }
141 100
142 if ([super performKeyEquivalent:event]) 101 - (BOOL)postPerformKeyEquivalent:(NSEvent*)event window:(NSWindow*)window {
143 return YES;
144
145 // Handle per-window shortcuts like Esc after giving everybody else a chance 102 // Handle per-window shortcuts like Esc after giving everybody else a chance
146 // to handle them 103 // to handle them
147 return HandleDelayedWindowKeyboardShortcut(event, self); 104 return HandleDelayedWindowKeyboardShortcut(event, window);
148 } 105 }
149 106
150 - (BOOL)redispatchKeyEvent:(NSEvent*)event { 107 @end // ChromeCommandDispatchDelegate
151 DCHECK(event);
152 NSEventType eventType = [event type];
153 if (eventType != NSKeyDown &&
154 eventType != NSKeyUp &&
155 eventType != NSFlagsChanged) {
156 NOTREACHED();
157 return YES; // Pretend it's been handled in an effort to limit damage.
158 }
159
160 // Ordinarily, the event's window should be this window. However, when
161 // switching between normal and fullscreen mode, we switch out the window, and
162 // the event's window might be the previous window (or even an earlier one if
163 // the renderer is running slowly and several mode switches occur). In this
164 // rare case, we synthesize a new key event so that its associate window
165 // (number) is our own.
166 if ([event window] != self)
167 event = KeyEventForWindow(self, event);
168
169 // Redispatch the event.
170 eventHandled_ = YES;
171 redispatchingEvent_ = YES;
172 [NSApp sendEvent:event];
173 redispatchingEvent_ = NO;
174
175 // If the event was not handled by [NSApp sendEvent:], the sendEvent:
176 // method below will be called, and because |redispatchingEvent_| is YES,
177 // |eventHandled_| will be set to NO.
178 return eventHandled_;
179 }
180
181 - (void)sendEvent:(NSEvent*)event {
182 if (!redispatchingEvent_)
183 [super sendEvent:event];
184 else
185 eventHandled_ = NO;
186 }
187
188 @end // ChromeEventProcessingWindow
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/chrome_command_dispatcher_delegate.h ('k') | chrome/browser/ui/cocoa/chrome_event_processing_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698