2016-05-18 04:47:50 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/common_web_contents_delegate.h"
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2016-06-15 20:55:19 +00:00
|
|
|
#include "atom/browser/native_window_mac.h"
|
2016-05-18 04:47:50 +00:00
|
|
|
#include "content/public/browser/native_web_keyboard_event.h"
|
|
|
|
#include "ui/events/keycodes/keyboard_codes.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
void CommonWebContentsDelegate::HandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
if (event.skip_in_browser ||
|
|
|
|
event.type == content::NativeWebKeyboardEvent::Char)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Escape exits tabbed fullscreen mode.
|
|
|
|
if (event.windowsKeyCode == ui::VKEY_ESCAPE && is_html_fullscreen())
|
|
|
|
ExitFullscreenModeForTab(source);
|
|
|
|
|
2016-06-16 16:26:32 +00:00
|
|
|
NSWindow* window = event.os_event.window;
|
2016-06-17 17:27:53 +00:00
|
|
|
if ([window respondsToSelector:@selector(redispatchKeyEvent:)]) {
|
|
|
|
[(id)window redispatchKeyEvent:event.os_event];
|
2016-05-18 04:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|