blob: a528d6c0079d539dc215f0046378c9964f534e4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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/event_utils.h"
namespace event_utils {
WindowOpenDisposition WindowOpenDispositionFromNSEvent(NSEvent* event) {
NSUInteger modifiers = [event modifierFlags];
if ([event buttonNumber] == 2 || modifiers & NSCommandKeyMask)
return modifiers & NSShiftKeyMask ? NEW_FOREGROUND_TAB : NEW_BACKGROUND_TAB;
return modifiers & NSShiftKeyMask ? NEW_WINDOW : CURRENT_TAB;
}
} // namespace event_utils
|