blob: 1ecce6590602e5d3ffb90f2da30c1ddd7a5db405 (
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
|
// Copyright (c) 2009 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.
#import "chrome/browser/cocoa/browser_window.h"
#include "base/logging.h"
#import "chrome/browser/cocoa/browser_window_controller.h"
#include "chrome/browser/global_keyboard_shortcuts_mac.h"
@implementation ChromeBrowserWindow
- (BOOL)performKeyEquivalent:(NSEvent*)event {
// Extract info from |event|.
NSUInteger modifers = [event modifierFlags];
const bool cmdKey = modifers & NSCommandKeyMask;
const bool shiftKey = modifers & NSShiftKeyMask;
const bool cntrlKey = modifers & NSControlKeyMask;
const int keyCode = [event keyCode];
int cmdNum = CommandForKeyboardShortcut(cmdKey, shiftKey, cntrlKey,
keyCode);
BrowserWindowController* controller =
(BrowserWindowController*)[self delegate];
// A bit of sanity.
DCHECK([controller isKindOfClass:[BrowserWindowController class]]);
DCHECK([controller respondsToSelector:@selector(executeCommand:)]);
if (cmdNum != -1) {
[controller executeCommand:cmdNum];
return YES;
}
return [super performKeyEquivalent:event];
}
@end
|