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"
|
|
|
|
|
|
|
|
#include "atom/browser/native_window_views.h"
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "content/public/browser/native_web_keyboard_event.h"
|
|
|
|
#include "ui/events/keycodes/keyboard_codes.h"
|
|
|
|
|
|
|
|
#if defined(USE_X11)
|
|
|
|
#include "atom/browser/browser.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
void CommonWebContentsDelegate::HandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
// Escape exits tabbed fullscreen mode.
|
2017-06-28 14:58:47 +00:00
|
|
|
if (event.windows_key_code == ui::VKEY_ESCAPE && is_html_fullscreen())
|
2016-05-18 04:47:50 +00:00
|
|
|
ExitFullscreenModeForTab(source);
|
|
|
|
|
|
|
|
// Let the NativeWindow handle other parts.
|
2017-06-25 19:01:05 +00:00
|
|
|
if (!ignore_menu_shortcuts_ && owner_window())
|
2016-05-18 04:47:50 +00:00
|
|
|
owner_window()->HandleKeyboardEvent(source, event);
|
|
|
|
}
|
|
|
|
|
2018-04-05 00:53:51 +00:00
|
|
|
void CommonWebContentsDelegate::ShowAutofillPopup(
|
|
|
|
bool offscreen,
|
|
|
|
content::RenderFrameHost* frame_host,
|
|
|
|
const gfx::RectF& bounds,
|
|
|
|
const std::vector<base::string16>& values,
|
|
|
|
const std::vector<base::string16>& labels) {
|
|
|
|
if (!owner_window())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto* window = static_cast<NativeWindowViews*>(owner_window());
|
|
|
|
autofill_popup_->CreateView(
|
2018-04-08 10:32:10 +00:00
|
|
|
frame_host, offscreen, window->content_view(), bounds);
|
2018-04-05 00:53:51 +00:00
|
|
|
autofill_popup_->SetItems(values, labels);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommonWebContentsDelegate::HideAutofillPopup() {
|
|
|
|
if (autofill_popup_)
|
|
|
|
autofill_popup_->Hide();
|
|
|
|
}
|
|
|
|
|
2016-05-18 04:47:50 +00:00
|
|
|
gfx::ImageSkia CommonWebContentsDelegate::GetDevToolsWindowIcon() {
|
|
|
|
if (!owner_window())
|
|
|
|
return gfx::ImageSkia();
|
|
|
|
return static_cast<views::WidgetDelegate*>(static_cast<NativeWindowViews*>(
|
|
|
|
owner_window()))->GetWindowAppIcon();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(USE_X11)
|
|
|
|
void CommonWebContentsDelegate::GetDevToolsWindowWMClass(
|
|
|
|
std::string* name, std::string* class_name) {
|
|
|
|
*class_name = Browser::Get()->GetName();
|
|
|
|
*name = base::ToLowerASCII(*class_name);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace atom
|