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

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

Issue 1255783002: [Mac] Factor out keyboard shortcut handling from ChromeEventProcessingWindow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@execute
Patch Set: Address comments. 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 (c) 2012 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_event_processing_window.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/global_keyboard_shortcuts_mac.h" 8 #import "chrome/browser/ui/cocoa/chrome_command_dispatcher_delegate.h"
9 #include "chrome/browser/ui/browser_commands.h"
10 #include "chrome/browser/ui/browser_finder.h"
11 #import "chrome/browser/ui/cocoa/browser_window_controller_private.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
15 namespace {
16
17 // Type of functions listed in global_keyboard_shortcuts_mac.h.
18 typedef int (*KeyToCommandMapper)(bool, bool, bool, bool, int, unichar);
19
20 // If the event is for a Browser window, and the key combination has an
21 // associated command, execute the command.
22 bool HandleExtraKeyboardShortcut(
23 NSEvent* event,
24 NSWindow* window,
25 KeyToCommandMapper command_for_keyboard_shortcut) {
26 // Extract info from |event|.
27 NSUInteger modifers = [event modifierFlags];
28 const bool command = modifers & NSCommandKeyMask;
29 const bool shift = modifers & NSShiftKeyMask;
30 const bool control = modifers & NSControlKeyMask;
31 const bool option = modifers & NSAlternateKeyMask;
32 const int key_code = [event keyCode];
33 const unichar key_char = KeyCharacterForEvent(event);
34
35 int cmd = command_for_keyboard_shortcut(command, shift, control, option,
36 key_code, key_char);
37
38 if (cmd == -1)
39 return false;
40
41 // Only handle event if this is a browser window.
42 Browser* browser = chrome::FindBrowserWithWindow(window);
43 if (!browser)
44 return false;
45
46 chrome::ExecuteCommand(browser, cmd);
47 return true;
48 }
49
50 bool HandleExtraWindowKeyboardShortcut(NSEvent* event, NSWindow* window) {
51 return HandleExtraKeyboardShortcut(event, window,
52 CommandForWindowKeyboardShortcut);
53 }
54
55 bool HandleDelayedWindowKeyboardShortcut(NSEvent* event, NSWindow* window) {
56 return HandleExtraKeyboardShortcut(event, window,
57 CommandForDelayedWindowKeyboardShortcut);
58 }
59
60 bool HandleExtraBrowserKeyboardShortcut(NSEvent* event, NSWindow* window) {
61 return HandleExtraKeyboardShortcut(event, window,
62 CommandForBrowserKeyboardShortcut);
63 }
64
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
101 9
102 @implementation ChromeEventProcessingWindow 10 @implementation ChromeEventProcessingWindow
103 11
104 - (BOOL)handleExtraKeyboardShortcut:(NSEvent*)event { 12 - (instancetype)initWithContentRect:(NSRect)contentRect
105 return HandleExtraBrowserKeyboardShortcut(event, self) || 13 styleMask:(NSUInteger)windowStyle
106 HandleExtraWindowKeyboardShortcut(event, self) || 14 backing:(NSBackingStoreType)bufferingType
107 HandleDelayedWindowKeyboardShortcut(event, self); 15 defer:(BOOL)deferCreation {
16 if ((self = [super initWithContentRect:contentRect
17 styleMask:windowStyle
18 backing:bufferingType
19 defer:deferCreation])) {
20 commandDispatcherImpl_.reset(
21 [[CommandDispatcherImpl alloc] initWithOwner:self]);
22 commandDispatcherDelegate_.reset(
23 [[ChromeCommandDispatcherDelegate alloc] init]);
24 [commandDispatcherImpl_ setDelegate:commandDispatcherDelegate_];
25 }
26 return self;
108 } 27 }
109 28
110 - (BOOL)performKeyEquivalent:(NSEvent*)event { 29 - (BOOL)handleExtraKeyboardShortcut:(NSEvent*)event {
111 // Some extension commands have higher priority than web content, and some 30 return [commandDispatcherDelegate_ handleExtraKeyboardShortcut:event
112 // have lower priority. Regardless of whether the event is being 31 window:self];
113 // redispatched, let the extension system try to handle the event. 32 }
114 NSWindow* window = event.window;
115 if (window) {
116 BrowserWindowController* controller = [window windowController];
117 if ([controller respondsToSelector:@selector(handledByExtensionCommand:
118 priority:)]) {
119 ui::AcceleratorManager::HandlerPriority priority =
120 redispatchingEvent_ ? ui::AcceleratorManager::kNormalPriority
121 : ui::AcceleratorManager::kHighPriority;
122 if ([controller handledByExtensionCommand:event priority:priority])
123 return YES;
124 }
125 }
126 33
127 if (redispatchingEvent_) 34 // CommandDispatcher implementation.
128 return NO;
129 35
130 // Give the web site a chance to handle the event. If it doesn't want to 36 - (void)setCommandDispatcherDelegate:(id<CommandDispatcherDelegate>)delegate {
131 // handle it, it will call us back with one of the |handle*| methods above. 37 // ChromeEventProcessingWindow manages its own CommandDispatcherDelegate.
132 NSResponder* r = [self firstResponder]; 38 NOTREACHED();
tapted 2015/08/26 03:04:48 could mark it @optional in the protocol maybe?
jackhou1 2015/08/26 06:24:42 Done.
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
137 // shortcuts like cmd-left (else, cmd-left would do history navigation even
138 // if e.g. the Omnibox has focus).
139 if (HandleExtraWindowKeyboardShortcut(event, self))
140 return YES;
141
142 if ([super performKeyEquivalent:event])
143 return YES;
144
145 // Handle per-window shortcuts like Esc after giving everybody else a chance
146 // to handle them
147 return HandleDelayedWindowKeyboardShortcut(event, self);
148 } 39 }
149 40
150 - (BOOL)redispatchKeyEvent:(NSEvent*)event { 41 - (BOOL)redispatchKeyEvent:(NSEvent*)event {
151 DCHECK(event); 42 return [commandDispatcherImpl_ redispatchKeyEvent:event];
152 NSEventType eventType = [event type]; 43 }
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 44
160 // Ordinarily, the event's window should be this window. However, when 45 - (BOOL)defaultPerformKeyEquivalent:(NSEvent*)event {
161 // switching between normal and fullscreen mode, we switch out the window, and 46 return [super performKeyEquivalent:event];
162 // the event's window might be the previous window (or even an earlier one if 47 }
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 48
169 // Redispatch the event. 49 // NSWindow overrides.
170 eventHandled_ = YES;
171 redispatchingEvent_ = YES;
172 [NSApp sendEvent:event];
173 redispatchingEvent_ = NO;
174 50
175 // If the event was not handled by [NSApp sendEvent:], the sendEvent: 51 - (BOOL)performKeyEquivalent:(NSEvent*)event {
176 // method below will be called, and because |redispatchingEvent_| is YES, 52 return [commandDispatcherImpl_ performKeyEquivalent:event];
177 // |eventHandled_| will be set to NO.
178 return eventHandled_;
179 } 53 }
180 54
181 - (void)sendEvent:(NSEvent*)event { 55 - (void)sendEvent:(NSEvent*)event {
182 if (!redispatchingEvent_) 56 if (![commandDispatcherImpl_ preSendEvent:event])
183 [super sendEvent:event]; 57 [super sendEvent:event];
184 else
185 eventHandled_ = NO;
186 } 58 }
187 59
188 @end // ChromeEventProcessingWindow 60 @end // ChromeEventProcessingWindow
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698