2016-01-19 21:09:01 +01:00
|
|
|
// Copyright 2016 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found
|
|
|
|
// in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef/browser/views/browser_view_impl.h"
|
|
|
|
|
|
|
|
#include "libcef/browser/browser_host_impl.h"
|
2017-02-17 00:19:43 +01:00
|
|
|
#include "libcef/browser/browser_util.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
#include "libcef/browser/context.h"
|
|
|
|
#include "libcef/browser/thread_util.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "libcef/browser/views/window_impl.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
#include "content/public/browser/native_web_keyboard_event.h"
|
|
|
|
#include "ui/content_accelerators/accelerator_util.h"
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserView> CefBrowserView::CreateBrowserView(
|
|
|
|
CefRefPtr<CefClient> client,
|
2017-05-17 11:29:28 +02:00
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
2019-03-19 10:42:54 +01:00
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefRequestContext> request_context,
|
|
|
|
CefRefPtr<CefBrowserViewDelegate> delegate) {
|
2019-03-19 10:42:54 +01:00
|
|
|
return CefBrowserViewImpl::Create(client, url, settings, extra_info,
|
|
|
|
request_context, delegate);
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserView> CefBrowserView::GetForBrowser(
|
|
|
|
CefRefPtr<CefBrowser> browser) {
|
|
|
|
CEF_REQUIRE_UIT_RETURN(nullptr);
|
|
|
|
CefBrowserHostImpl* browser_impl =
|
|
|
|
static_cast<CefBrowserHostImpl*>(browser.get());
|
|
|
|
if (browser_impl && browser_impl->IsViewsHosted())
|
|
|
|
return browser_impl->GetBrowserView();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserViewImpl> CefBrowserViewImpl::Create(
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
2019-03-19 10:42:54 +01:00
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefRequestContext> request_context,
|
|
|
|
CefRefPtr<CefBrowserViewDelegate> delegate) {
|
|
|
|
CEF_REQUIRE_UIT_RETURN(nullptr);
|
|
|
|
CefRefPtr<CefBrowserViewImpl> browser_view = new CefBrowserViewImpl(delegate);
|
2019-03-19 10:42:54 +01:00
|
|
|
browser_view->SetPendingBrowserCreateParams(client, url, settings, extra_info,
|
2016-01-19 21:09:01 +01:00
|
|
|
request_context);
|
|
|
|
browser_view->Initialize();
|
|
|
|
browser_view->SetDefaults(settings);
|
|
|
|
return browser_view;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserViewImpl> CefBrowserViewImpl::CreateForPopup(
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefBrowserViewDelegate> delegate) {
|
|
|
|
CEF_REQUIRE_UIT_RETURN(nullptr);
|
|
|
|
CefRefPtr<CefBrowserViewImpl> browser_view = new CefBrowserViewImpl(delegate);
|
|
|
|
browser_view->Initialize();
|
|
|
|
browser_view->SetDefaults(settings);
|
|
|
|
return browser_view;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::WebContentsCreated(
|
|
|
|
content::WebContents* web_contents) {
|
|
|
|
if (root_view())
|
|
|
|
root_view()->SetWebContents(web_contents);
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:47:27 +02:00
|
|
|
void CefBrowserViewImpl::BrowserCreated(
|
|
|
|
CefBrowserHostImpl* browser,
|
|
|
|
base::RepeatingClosure on_bounds_changed) {
|
2016-01-19 21:09:01 +01:00
|
|
|
browser_ = browser;
|
2019-07-17 20:47:27 +02:00
|
|
|
on_bounds_changed_ = on_bounds_changed;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::BrowserDestroyed(CefBrowserHostImpl* browser) {
|
|
|
|
DCHECK_EQ(browser, browser_);
|
|
|
|
browser_ = nullptr;
|
|
|
|
|
|
|
|
if (root_view())
|
|
|
|
root_view()->SetWebContents(nullptr);
|
|
|
|
}
|
|
|
|
|
2018-11-03 02:15:09 +01:00
|
|
|
bool CefBrowserViewImpl::HandleKeyboardEvent(
|
2017-02-17 00:19:43 +01:00
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
if (!root_view())
|
2018-11-03 02:15:09 +01:00
|
|
|
return false;
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
views::FocusManager* focus_manager = root_view()->GetFocusManager();
|
|
|
|
if (!focus_manager)
|
2018-11-03 02:15:09 +01:00
|
|
|
return false;
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
if (HandleAccelerator(event, focus_manager))
|
2018-11-03 02:15:09 +01:00
|
|
|
return true;
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Give the CefWindowDelegate a chance to handle the event.
|
|
|
|
CefRefPtr<CefWindow> window =
|
|
|
|
view_util::GetWindowFor(root_view()->GetWidget());
|
|
|
|
CefWindowImpl* window_impl = static_cast<CefWindowImpl*>(window.get());
|
|
|
|
if (window_impl) {
|
|
|
|
CefKeyEvent cef_event;
|
|
|
|
if (browser_util::GetCefKeyEvent(event, cef_event) &&
|
|
|
|
window_impl->OnKeyEvent(cef_event)) {
|
2018-11-03 02:15:09 +01:00
|
|
|
return true;
|
2017-02-17 00:19:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proceed with default native handling.
|
2018-11-03 02:15:09 +01:00
|
|
|
return unhandled_keyboard_event_handler_.HandleKeyboardEvent(event,
|
|
|
|
focus_manager);
|
2017-02-17 00:19:43 +01:00
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefBrowser> CefBrowserViewImpl::GetBrowser() {
|
|
|
|
CEF_REQUIRE_VALID_RETURN(nullptr);
|
|
|
|
return browser_;
|
|
|
|
}
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
void CefBrowserViewImpl::SetPreferAccelerators(bool prefer_accelerators) {
|
|
|
|
CEF_REQUIRE_VALID_RETURN_VOID();
|
|
|
|
if (root_view())
|
|
|
|
root_view()->set_allow_accelerators(prefer_accelerators);
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void CefBrowserViewImpl::SetBackgroundColor(cef_color_t color) {
|
|
|
|
CEF_REQUIRE_VALID_RETURN_VOID();
|
|
|
|
ParentClass::SetBackgroundColor(color);
|
|
|
|
if (root_view())
|
|
|
|
root_view()->SetResizeBackgroundColor(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::Detach() {
|
|
|
|
ParentClass::Detach();
|
|
|
|
|
|
|
|
// root_view() will be nullptr now.
|
|
|
|
DCHECK(!root_view());
|
|
|
|
|
|
|
|
if (browser_) {
|
|
|
|
// |browser_| will disappear when WindowDestroyed() indirectly calls
|
|
|
|
// BrowserDestroyed() so keep a reference.
|
|
|
|
CefRefPtr<CefBrowserHostImpl> browser = browser_;
|
|
|
|
|
|
|
|
// Force the browser to be destroyed.
|
|
|
|
browser->WindowDestroyed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::GetDebugInfo(base::DictionaryValue* info,
|
|
|
|
bool include_children) {
|
|
|
|
ParentClass::GetDebugInfo(info, include_children);
|
|
|
|
if (browser_)
|
|
|
|
info->SetString("url", browser_->GetMainFrame()->GetURL().ToString());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::OnBrowserViewAdded() {
|
|
|
|
if (!browser_ && pending_browser_create_params_) {
|
|
|
|
// Top-level browsers will be created when this view is added to the views
|
|
|
|
// hierarchy.
|
|
|
|
pending_browser_create_params_->browser_view = this;
|
|
|
|
|
|
|
|
CefBrowserHostImpl::Create(*pending_browser_create_params_);
|
|
|
|
DCHECK(browser_);
|
|
|
|
|
|
|
|
pending_browser_create_params_.reset(nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:47:27 +02:00
|
|
|
void CefBrowserViewImpl::OnBoundsChanged() {
|
|
|
|
if (!on_bounds_changed_.is_null())
|
|
|
|
on_bounds_changed_.Run();
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
CefBrowserViewImpl::CefBrowserViewImpl(
|
|
|
|
CefRefPtr<CefBrowserViewDelegate> delegate)
|
2017-05-17 11:29:28 +02:00
|
|
|
: ParentClass(delegate) {}
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
void CefBrowserViewImpl::SetPendingBrowserCreateParams(
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
2019-03-19 10:42:54 +01:00
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
DCHECK(!pending_browser_create_params_);
|
|
|
|
pending_browser_create_params_.reset(new CefBrowserHostImpl::CreateParams());
|
|
|
|
pending_browser_create_params_->client = client;
|
2017-08-04 00:55:19 +02:00
|
|
|
pending_browser_create_params_->url = GURL(url.ToString());
|
2016-01-19 21:09:01 +01:00
|
|
|
pending_browser_create_params_->settings = settings;
|
2019-03-19 10:42:54 +01:00
|
|
|
pending_browser_create_params_->extra_info = extra_info;
|
2016-01-19 21:09:01 +01:00
|
|
|
pending_browser_create_params_->request_context = request_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserViewImpl::SetDefaults(const CefBrowserSettings& settings) {
|
2017-04-20 21:28:17 +02:00
|
|
|
SetBackgroundColor(
|
|
|
|
CefContext::Get()->GetBackgroundColor(&settings, STATE_DISABLED));
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CefBrowserViewView* CefBrowserViewImpl::CreateRootView() {
|
|
|
|
return new CefBrowserViewView(delegate(), this);
|
|
|
|
}
|
2016-07-21 23:21:32 +02:00
|
|
|
|
|
|
|
void CefBrowserViewImpl::InitializeRootView() {
|
|
|
|
static_cast<CefBrowserViewView*>(root_view())->Initialize();
|
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
bool CefBrowserViewImpl::HandleAccelerator(
|
|
|
|
const content::NativeWebKeyboardEvent& event,
|
|
|
|
views::FocusManager* focus_manager) {
|
|
|
|
// Previous calls to TranslateMessage can generate Char events as well as
|
|
|
|
// RawKeyDown events, even if the latter triggered an accelerator. In these
|
|
|
|
// cases, we discard the Char events.
|
2017-04-20 21:28:17 +02:00
|
|
|
if (event.GetType() == blink::WebInputEvent::kChar &&
|
|
|
|
ignore_next_char_event_) {
|
2017-02-17 00:19:43 +01:00
|
|
|
ignore_next_char_event_ = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's necessary to reset this flag, because a RawKeyDown event may not
|
|
|
|
// always generate a Char event.
|
|
|
|
ignore_next_char_event_ = false;
|
|
|
|
|
2017-04-20 21:28:17 +02:00
|
|
|
if (event.GetType() == blink::WebInputEvent::kRawKeyDown) {
|
2017-02-17 00:19:43 +01:00
|
|
|
ui::Accelerator accelerator =
|
|
|
|
ui::GetAcceleratorFromNativeWebKeyboardEvent(event);
|
|
|
|
|
|
|
|
// This is tricky: we want to set ignore_next_char_event_ if
|
|
|
|
// ProcessAccelerator returns true. But ProcessAccelerator might delete
|
|
|
|
// |this| if the accelerator is a "close tab" one. So we speculatively
|
|
|
|
// set the flag and fix it if no event was handled.
|
|
|
|
ignore_next_char_event_ = true;
|
|
|
|
|
|
|
|
if (focus_manager->ProcessAccelerator(accelerator))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// ProcessAccelerator didn't handle the accelerator, so we know both
|
|
|
|
// that |this| is still valid, and that we didn't want to set the flag.
|
|
|
|
ignore_next_char_event_ = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|