2016-01-19 21:09:01 +01:00
|
|
|
// Copyright (c) 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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefclient/browser/views_window.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "include/base/cef_build.h"
|
2021-06-17 22:08:01 +02:00
|
|
|
#include "include/base/cef_callback.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "include/cef_app.h"
|
2021-08-28 03:55:15 +02:00
|
|
|
#include "include/cef_i18n_util.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
#include "include/views/cef_box_layout.h"
|
|
|
|
#include "include/wrapper/cef_helpers.h"
|
2021-04-11 22:10:11 +02:00
|
|
|
#include "tests/cefclient/browser/main_context.h"
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefclient/browser/resource.h"
|
2017-02-25 06:03:31 +01:00
|
|
|
#include "tests/cefclient/browser/views_style.h"
|
2017-08-04 00:55:19 +02:00
|
|
|
#include "tests/shared/browser/extension_util.h"
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/common/client_switches.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
#if !defined(OS_WIN)
|
2017-08-04 00:55:19 +02:00
|
|
|
#define VK_ESCAPE 0x1B
|
2016-01-19 21:09:01 +01:00
|
|
|
#define VK_RETURN 0x0D
|
2017-05-17 11:29:28 +02:00
|
|
|
#define VK_MENU 0x12 // ALT key.
|
2016-01-19 21:09:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
const char kDefaultExtensionIcon[] = "window_icon";
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
// Control IDs for Views in the top-level Window.
|
|
|
|
enum ControlIds {
|
|
|
|
ID_WINDOW = 1,
|
2017-02-25 06:03:31 +01:00
|
|
|
ID_BROWSER_VIEW,
|
2016-01-19 21:09:01 +01:00
|
|
|
ID_BACK_BUTTON,
|
|
|
|
ID_FORWARD_BUTTON,
|
|
|
|
ID_STOP_BUTTON,
|
|
|
|
ID_RELOAD_BUTTON,
|
|
|
|
ID_URL_TEXTFIELD,
|
|
|
|
ID_MENU_BUTTON,
|
2017-02-22 19:05:27 +01:00
|
|
|
|
|
|
|
// Reserved range of top menu button IDs.
|
|
|
|
ID_TOP_MENU_FIRST,
|
|
|
|
ID_TOP_MENU_LAST = ID_TOP_MENU_FIRST + 10,
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// Reserved range of extension button IDs.
|
|
|
|
ID_EXTENSION_BUTTON_FIRST,
|
|
|
|
ID_EXTENSION_BUTTON_LAST = ID_EXTENSION_BUTTON_FIRST + 10,
|
2016-01-19 21:09:01 +01:00
|
|
|
};
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
typedef std::vector<CefRefPtr<CefLabelButton>> LabelButtons;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Make all |buttons| the same size.
|
|
|
|
void MakeButtonsSameSize(const LabelButtons& buttons) {
|
|
|
|
CefSize size;
|
|
|
|
|
|
|
|
// Determine the largest button size.
|
|
|
|
for (size_t i = 0U; i < buttons.size(); ++i) {
|
|
|
|
const CefSize& button_size = buttons[i]->GetPreferredSize();
|
|
|
|
if (size.width < button_size.width)
|
|
|
|
size.width = button_size.width;
|
|
|
|
if (size.height < button_size.height)
|
|
|
|
size.height = button_size.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0U; i < buttons.size(); ++i) {
|
|
|
|
// Set the button's minimum size.
|
|
|
|
buttons[i]->SetMinimumSize(size);
|
|
|
|
|
|
|
|
// Re-layout the button and all parent Views.
|
|
|
|
buttons[i]->InvalidateLayout();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-18 03:08:51 +01:00
|
|
|
void AddTestMenuItems(CefRefPtr<CefMenuModel> test_menu) {
|
2017-05-17 11:29:28 +02:00
|
|
|
test_menu->AddItem(ID_TESTS_GETSOURCE, "Get Source");
|
|
|
|
test_menu->AddItem(ID_TESTS_GETTEXT, "Get Text");
|
|
|
|
test_menu->AddItem(ID_TESTS_WINDOW_NEW, "New Window");
|
|
|
|
test_menu->AddItem(ID_TESTS_WINDOW_POPUP, "Popup Window");
|
|
|
|
test_menu->AddItem(ID_TESTS_REQUEST, "Request");
|
|
|
|
test_menu->AddItem(ID_TESTS_ZOOM_IN, "Zoom In");
|
|
|
|
test_menu->AddItem(ID_TESTS_ZOOM_OUT, "Zoom Out");
|
|
|
|
test_menu->AddItem(ID_TESTS_ZOOM_RESET, "Zoom Reset");
|
|
|
|
test_menu->AddItem(ID_TESTS_TRACING_BEGIN, "Begin Tracing");
|
|
|
|
test_menu->AddItem(ID_TESTS_TRACING_END, "End Tracing");
|
|
|
|
test_menu->AddItem(ID_TESTS_PRINT, "Print");
|
|
|
|
test_menu->AddItem(ID_TESTS_PRINT_TO_PDF, "Print to PDF");
|
2019-02-26 17:44:17 +01:00
|
|
|
test_menu->AddItem(ID_TESTS_MUTE_AUDIO, "Mute Audio");
|
|
|
|
test_menu->AddItem(ID_TESTS_UNMUTE_AUDIO, "Unmute Audio");
|
2017-05-17 11:29:28 +02:00
|
|
|
test_menu->AddItem(ID_TESTS_OTHER_TESTS, "Other Tests");
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
|
2017-02-25 06:03:31 +01:00
|
|
|
void AddFileMenuItems(CefRefPtr<CefMenuModel> file_menu) {
|
2017-02-18 03:08:51 +01:00
|
|
|
file_menu->AddItem(ID_QUIT, "E&xit");
|
|
|
|
|
|
|
|
// Show the accelerator shortcut text in the menu.
|
2017-05-17 11:29:28 +02:00
|
|
|
file_menu->SetAcceleratorAt(file_menu->GetCount() - 1, 'X', false, false,
|
|
|
|
true);
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<ViewsWindow> ViewsWindow::Create(
|
|
|
|
Delegate* delegate,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
DCHECK(delegate);
|
|
|
|
|
|
|
|
// Create a new ViewsWindow.
|
2020-01-15 15:28:12 +01:00
|
|
|
CefRefPtr<ViewsWindow> views_window = new ViewsWindow(delegate, nullptr);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Create a new BrowserView.
|
|
|
|
CefRefPtr<CefBrowserView> browser_view = CefBrowserView::CreateBrowserView(
|
2020-01-15 15:28:12 +01:00
|
|
|
client, url, settings, nullptr, request_context, views_window);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Associate the BrowserView with the ViewsWindow.
|
|
|
|
views_window->SetBrowserView(browser_view);
|
|
|
|
|
|
|
|
// Create a new top-level Window. It will show itself after creation.
|
|
|
|
CefWindow::CreateTopLevelWindow(views_window);
|
|
|
|
|
|
|
|
return views_window;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::Show() {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->Show();
|
2021-09-07 16:04:55 +02:00
|
|
|
if (browser_view_ && !window_->IsMinimized()) {
|
2017-08-04 00:55:19 +02:00
|
|
|
// Give keyboard focus to the BrowserView.
|
|
|
|
browser_view_->RequestFocus();
|
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::Hide() {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->Hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::Minimize() {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->Minimize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::Maximize() {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->Maximize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetBounds(const CefRect& bounds) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->SetBounds(bounds);
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
void ViewsWindow::SetBrowserSize(const CefSize& size,
|
|
|
|
bool has_position,
|
|
|
|
const CefPoint& position) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (browser_view_)
|
|
|
|
browser_view_->SetSize(size);
|
|
|
|
if (window_) {
|
|
|
|
window_->SizeToPreferredSize();
|
|
|
|
if (has_position)
|
|
|
|
window_->SetPosition(position);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void ViewsWindow::Close(bool force) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (!browser_view_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowser> browser = browser_view_->GetBrowser();
|
|
|
|
if (browser) {
|
|
|
|
// This will result in a call to CefWindow::Close() which will then call
|
|
|
|
// ViewsWindow::CanClose().
|
|
|
|
browser->GetHost()->CloseBrowser(force);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetAddress(const std::string& url) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2021-08-28 03:55:15 +02:00
|
|
|
if (!window_)
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
// |location_bar_| may instead be a Chrome toolbar.
|
|
|
|
if (location_bar_ && location_bar_->AsTextfield())
|
|
|
|
location_bar_->AsTextfield()->SetText(url);
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetTitle(const std::string& title) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_)
|
|
|
|
window_->SetTitle(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetFavicon(CefRefPtr<CefImage> image) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
// Window icons should be 16 DIP in size.
|
|
|
|
DCHECK_EQ(std::max(image->GetWidth(), image->GetHeight()), 16U);
|
|
|
|
|
|
|
|
if (window_)
|
|
|
|
window_->SetWindowIcon(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetFullscreen(bool fullscreen) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_) {
|
|
|
|
// Hide the top controls while in full-screen mode.
|
|
|
|
if (with_controls_)
|
|
|
|
ShowTopControls(!fullscreen);
|
|
|
|
|
|
|
|
window_->SetFullscreen(fullscreen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 05:47:36 +01:00
|
|
|
void ViewsWindow::SetAlwaysOnTop(bool on_top) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (window_) {
|
|
|
|
window_->SetAlwaysOnTop(on_top);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void ViewsWindow::SetLoadingState(bool isLoading,
|
|
|
|
bool canGoBack,
|
|
|
|
bool canGoForward) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2021-08-28 03:55:15 +02:00
|
|
|
if (!window_ || chrome_toolbar_type_ == CEF_CTT_NORMAL)
|
2016-01-19 21:09:01 +01:00
|
|
|
return;
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (with_controls_) {
|
|
|
|
EnableView(ID_BACK_BUTTON, canGoBack);
|
|
|
|
EnableView(ID_FORWARD_BUTTON, canGoForward);
|
|
|
|
EnableView(ID_RELOAD_BUTTON, !isLoading);
|
|
|
|
EnableView(ID_STOP_BUTTON, isLoading);
|
|
|
|
}
|
|
|
|
if (location_bar_) {
|
|
|
|
EnableView(ID_URL_TEXTFIELD, true);
|
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetDraggableRegions(
|
|
|
|
const std::vector<CefDraggableRegion>& regions) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
if (!window_ || !browser_view_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::vector<CefDraggableRegion> window_regions;
|
|
|
|
|
|
|
|
// Convert the regions from BrowserView to Window coordinates.
|
|
|
|
std::vector<CefDraggableRegion>::const_iterator it = regions.begin();
|
|
|
|
for (; it != regions.end(); ++it) {
|
|
|
|
CefDraggableRegion region = *it;
|
|
|
|
CefPoint origin = CefPoint(region.bounds.x, region.bounds.y);
|
|
|
|
browser_view_->ConvertPointToWindow(origin);
|
|
|
|
region.bounds.x = origin.x;
|
|
|
|
region.bounds.y = origin.y;
|
|
|
|
window_regions.push_back(region);
|
|
|
|
}
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (overlay_controls_) {
|
|
|
|
// Exclude all regions obscured by overlays.
|
|
|
|
overlay_controls_->UpdateDraggableRegions(window_regions);
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
window_->SetDraggableRegions(window_regions);
|
|
|
|
}
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
void ViewsWindow::TakeFocus(bool next) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (!window_)
|
2017-02-17 00:19:43 +01:00
|
|
|
return;
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
if (chrome_toolbar_type_ == CEF_CTT_NORMAL) {
|
|
|
|
top_toolbar_->RequestFocus();
|
2021-08-28 03:55:15 +02:00
|
|
|
} else if (location_bar_) {
|
|
|
|
// Give focus to the location bar.
|
|
|
|
location_bar_->RequestFocus();
|
2021-04-11 22:10:11 +02:00
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
}
|
|
|
|
|
2017-02-25 06:03:31 +01:00
|
|
|
void ViewsWindow::OnBeforeContextMenu(CefRefPtr<CefMenuModel> model) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
views_style::ApplyTo(model);
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
void ViewsWindow::OnExtensionsChanged(const ExtensionSet& extensions) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
if (extensions.empty()) {
|
|
|
|
if (!extensions_.empty()) {
|
|
|
|
extensions_.clear();
|
|
|
|
UpdateExtensionControls();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageCache::ImageInfoSet image_set;
|
|
|
|
|
|
|
|
ExtensionSet::const_iterator it = extensions.begin();
|
|
|
|
for (; it != extensions.end(); ++it) {
|
|
|
|
CefRefPtr<CefExtension> extension = *it;
|
|
|
|
bool internal = false;
|
|
|
|
const std::string& icon_path =
|
|
|
|
extension_util::GetExtensionIconPath(extension, &internal);
|
|
|
|
if (!icon_path.empty()) {
|
|
|
|
// Load the extension icon.
|
|
|
|
image_set.push_back(
|
|
|
|
ImageCache::ImageInfo::Create1x(icon_path, icon_path, internal));
|
|
|
|
} else {
|
2021-06-17 22:08:01 +02:00
|
|
|
// Get a nullptr image and use the default icon.
|
2017-08-04 00:55:19 +02:00
|
|
|
image_set.push_back(ImageCache::ImageInfo::Empty());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate_->GetImageCache()->LoadImages(
|
|
|
|
image_set,
|
2021-06-19 21:54:45 +02:00
|
|
|
base::BindOnce(&ViewsWindow::OnExtensionIconsLoaded, this, extensions));
|
2017-08-04 00:55:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowserViewDelegate> ViewsWindow::GetDelegateForPopupBrowserView(
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefBrowserView> browser_view,
|
2017-08-04 00:55:19 +02:00
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefClient> client,
|
2016-01-19 21:09:01 +01:00
|
|
|
bool is_devtools) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
// The popup browser client is created in CefLifeSpanHandler::OnBeforePopup()
|
|
|
|
// (e.g. via RootWindowViews::InitAsPopup()). The Delegate (RootWindowViews)
|
|
|
|
// knows the association between |client| and itself.
|
2017-08-04 00:55:19 +02:00
|
|
|
Delegate* popup_delegate = delegate_->GetDelegateForPopup(client);
|
|
|
|
|
2022-04-11 22:54:33 +02:00
|
|
|
// May be nullptr when using the default popup behavior.
|
|
|
|
if (!popup_delegate)
|
|
|
|
return nullptr;
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
// Should not be the same RootWindowViews that owns |this|.
|
2022-04-11 22:54:33 +02:00
|
|
|
DCHECK(popup_delegate != delegate_);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Create a new ViewsWindow for the popup BrowserView.
|
2020-01-15 15:28:12 +01:00
|
|
|
return new ViewsWindow(popup_delegate, nullptr);
|
2017-08-04 00:55:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ViewsWindow::OnPopupBrowserViewCreated(
|
|
|
|
CefRefPtr<CefBrowserView> browser_view,
|
|
|
|
CefRefPtr<CefBrowserView> popup_browser_view,
|
|
|
|
bool is_devtools) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
// Retrieve the ViewsWindow created in GetDelegateForPopupBrowserView.
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<ViewsWindow> popup_window =
|
2017-08-04 00:55:19 +02:00
|
|
|
static_cast<ViewsWindow*>(static_cast<CefBrowserViewDelegate*>(
|
|
|
|
popup_browser_view->GetDelegate().get()));
|
|
|
|
|
2022-04-11 22:54:33 +02:00
|
|
|
// May be nullptr when using the default popup behavior.
|
|
|
|
if (!popup_window)
|
|
|
|
return false;
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
// Should not be the same ViewsWindow as |this|.
|
2022-04-11 22:54:33 +02:00
|
|
|
DCHECK(popup_window != this);
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// Associate the ViewsWindow with the new popup browser.
|
|
|
|
popup_window->SetBrowserView(popup_browser_view);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Create a new top-level Window for the popup. It will show itself after
|
|
|
|
// creation.
|
|
|
|
CefWindow::CreateTopLevelWindow(popup_window);
|
|
|
|
|
|
|
|
// We created the Window.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
CefBrowserViewDelegate::ChromeToolbarType ViewsWindow::GetChromeToolbarType() {
|
|
|
|
return chrome_toolbar_type_;
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void ViewsWindow::OnButtonPressed(CefRefPtr<CefButton> button) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
DCHECK(with_controls_);
|
|
|
|
|
|
|
|
if (!browser_view_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowser> browser = browser_view_->GetBrowser();
|
|
|
|
if (!browser)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (button->GetID()) {
|
|
|
|
case ID_BACK_BUTTON:
|
|
|
|
browser->GoBack();
|
|
|
|
break;
|
|
|
|
case ID_FORWARD_BUTTON:
|
|
|
|
browser->GoForward();
|
|
|
|
break;
|
|
|
|
case ID_STOP_BUTTON:
|
|
|
|
browser->StopLoad();
|
|
|
|
break;
|
|
|
|
case ID_RELOAD_BUTTON:
|
|
|
|
browser->Reload();
|
|
|
|
break;
|
|
|
|
case ID_MENU_BUTTON:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NOTREACHED();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
void ViewsWindow::OnMenuButtonPressed(
|
|
|
|
CefRefPtr<CefMenuButton> menu_button,
|
|
|
|
const CefPoint& screen_point,
|
|
|
|
CefRefPtr<CefMenuButtonPressedLock> button_pressed_lock) {
|
2016-01-19 21:09:01 +01:00
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
const int id = menu_button->GetID();
|
|
|
|
if (id >= ID_EXTENSION_BUTTON_FIRST && id <= ID_EXTENSION_BUTTON_LAST) {
|
|
|
|
const size_t extension_idx = id - ID_EXTENSION_BUTTON_FIRST;
|
|
|
|
if (extension_idx >= extensions_.size()) {
|
|
|
|
LOG(ERROR) << "Invalid extension index " << extension_idx;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep the button pressed until the extension window is closed.
|
|
|
|
extension_button_pressed_lock_ = button_pressed_lock;
|
|
|
|
|
|
|
|
// Create a window for the extension.
|
|
|
|
delegate_->CreateExtensionWindow(
|
|
|
|
extensions_[extension_idx].extension_, menu_button->GetBoundsInScreen(),
|
2021-06-19 21:54:45 +02:00
|
|
|
window_, base::BindOnce(&ViewsWindow::OnExtensionWindowClosed, this));
|
2017-08-04 00:55:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
DCHECK(with_controls_ || with_overlay_controls_);
|
2017-08-04 00:55:19 +02:00
|
|
|
DCHECK_EQ(ID_MENU_BUTTON, id);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
auto point = screen_point;
|
|
|
|
if (with_overlay_controls_) {
|
|
|
|
// Align the menu correctly under the button.
|
|
|
|
const int button_width = menu_button->GetSize().width;
|
|
|
|
if (CefIsRTL()) {
|
|
|
|
point.x += button_width - 4;
|
|
|
|
} else {
|
|
|
|
point.x -= button_width - 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_button->ShowMenu(button_menu_model_, point,
|
|
|
|
with_overlay_controls_ ? CEF_MENU_ANCHOR_TOPLEFT
|
|
|
|
: CEF_MENU_ANCHOR_TOPRIGHT);
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::ExecuteCommand(CefRefPtr<CefMenuModel> menu_model,
|
|
|
|
int command_id,
|
|
|
|
cef_event_flags_t event_flags) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2021-08-28 03:55:15 +02:00
|
|
|
DCHECK(with_controls_ || with_overlay_controls_);
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
if (command_id == ID_QUIT) {
|
|
|
|
delegate_->OnExit();
|
|
|
|
} else if (command_id >= ID_TESTS_FIRST && command_id <= ID_TESTS_LAST) {
|
|
|
|
delegate_->OnTest(command_id);
|
|
|
|
} else {
|
|
|
|
NOTREACHED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ViewsWindow::OnKeyEvent(CefRefPtr<CefTextfield> textfield,
|
|
|
|
const CefKeyEvent& event) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
DCHECK_EQ(ID_URL_TEXTFIELD, textfield->GetID());
|
|
|
|
|
|
|
|
// Trigger when the return key is pressed.
|
2017-05-17 11:29:28 +02:00
|
|
|
if (window_ && browser_view_ && event.type == KEYEVENT_RAWKEYDOWN &&
|
2016-01-19 21:09:01 +01:00
|
|
|
event.windows_key_code == VK_RETURN) {
|
|
|
|
CefRefPtr<CefBrowser> browser = browser_view_->GetBrowser();
|
|
|
|
if (browser) {
|
2021-08-28 03:55:15 +02:00
|
|
|
const CefString& url = textfield->GetText();
|
|
|
|
if (!url.empty())
|
|
|
|
browser->GetMainFrame()->LoadURL(url);
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// We handled the event.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::OnWindowCreated(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
DCHECK(browser_view_);
|
|
|
|
DCHECK(!window_);
|
|
|
|
DCHECK(window);
|
|
|
|
|
|
|
|
window_ = window;
|
|
|
|
window_->SetID(ID_WINDOW);
|
|
|
|
|
|
|
|
with_controls_ = delegate_->WithControls();
|
|
|
|
|
|
|
|
delegate_->OnViewsWindowCreated(this);
|
|
|
|
|
2021-08-04 20:20:31 +02:00
|
|
|
const CefRect bounds = GetInitialBounds();
|
2016-01-19 21:09:01 +01:00
|
|
|
if (bounds.x == 0 && bounds.y == 0) {
|
|
|
|
// Size the Window and center it.
|
|
|
|
window_->CenterWindow(CefSize(bounds.width, bounds.height));
|
|
|
|
} else {
|
|
|
|
// Set the Window bounds as specified.
|
|
|
|
window_->SetBounds(bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the background color for regions that are not obscured by other Views.
|
2017-02-25 06:03:31 +01:00
|
|
|
views_style::ApplyTo(window_.get());
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (with_controls_ || with_overlay_controls_) {
|
|
|
|
// Create the MenuModel that will be displayed via the menu button.
|
|
|
|
CreateMenuModel();
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
if (with_controls_) {
|
|
|
|
// Add the BrowserView and other controls to the Window.
|
2021-08-28 03:55:15 +02:00
|
|
|
AddBrowserView();
|
2017-02-17 00:19:43 +01:00
|
|
|
|
|
|
|
// Add keyboard accelerators to the Window.
|
|
|
|
AddAccelerators();
|
2021-09-07 16:04:55 +02:00
|
|
|
|
|
|
|
// Hide the top controls while in full-screen mode.
|
|
|
|
if (initial_show_state_ == CEF_SHOW_STATE_FULLSCREEN) {
|
|
|
|
ShowTopControls(false);
|
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
} else {
|
|
|
|
// Add the BrowserView as the only child of the Window.
|
|
|
|
window_->AddChildView(browser_view_);
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
if (!delegate_->WithExtension()) {
|
|
|
|
// Choose a reasonable minimum window size.
|
|
|
|
minimum_window_size_ = CefSize(100, 100);
|
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
2017-05-17 11:29:28 +02:00
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
if (!delegate_->InitiallyHidden()) {
|
|
|
|
// Show the Window.
|
|
|
|
Show();
|
|
|
|
}
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::OnWindowDestroyed(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
DCHECK(window_);
|
|
|
|
|
|
|
|
delegate_->OnViewsWindowDestroyed(this);
|
|
|
|
|
2020-01-15 15:28:12 +01:00
|
|
|
browser_view_ = nullptr;
|
|
|
|
button_menu_model_ = nullptr;
|
2017-02-22 19:05:27 +01:00
|
|
|
if (top_menu_bar_) {
|
|
|
|
top_menu_bar_->Reset();
|
2020-01-15 15:28:12 +01:00
|
|
|
top_menu_bar_ = nullptr;
|
2017-02-22 19:05:27 +01:00
|
|
|
}
|
2020-01-15 15:28:12 +01:00
|
|
|
extensions_panel_ = nullptr;
|
2021-08-28 03:55:15 +02:00
|
|
|
menu_button_ = nullptr;
|
2020-01-15 15:28:12 +01:00
|
|
|
window_ = nullptr;
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2022-04-12 21:46:09 +02:00
|
|
|
void ViewsWindow::OnWindowActivationChanged(CefRefPtr<CefWindow> window,
|
|
|
|
bool active) {
|
|
|
|
if (!active)
|
|
|
|
return;
|
|
|
|
|
|
|
|
delegate_->OnViewsWindowActivated(this);
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
bool ViewsWindow::CanClose(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
// Allow the window to close if the browser says it's OK.
|
|
|
|
CefRefPtr<CefBrowser> browser = browser_view_->GetBrowser();
|
|
|
|
if (browser)
|
|
|
|
return browser->GetHost()->TryCloseBrowser();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
CefRefPtr<CefWindow> ViewsWindow::GetParentWindow(CefRefPtr<CefWindow> window,
|
|
|
|
bool* is_menu,
|
|
|
|
bool* can_activate_menu) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
CefRefPtr<CefWindow> parent_window = delegate_->GetParentWindow();
|
|
|
|
if (parent_window) {
|
|
|
|
// Should be an extension window, in which case we want it to behave as a
|
|
|
|
// menu and allow activation.
|
|
|
|
DCHECK(delegate_->WithExtension());
|
|
|
|
*is_menu = true;
|
|
|
|
*can_activate_menu = true;
|
|
|
|
}
|
|
|
|
return parent_window;
|
|
|
|
}
|
|
|
|
|
2021-08-04 20:20:31 +02:00
|
|
|
CefRect ViewsWindow::GetInitialBounds(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
if (frameless_) {
|
|
|
|
// Need to provide a size for frameless windows that will be centered.
|
|
|
|
const CefRect bounds = GetInitialBounds();
|
|
|
|
if (bounds.x == 0 && bounds.y == 0) {
|
|
|
|
return bounds;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CefRect();
|
|
|
|
}
|
|
|
|
|
2021-09-07 16:04:55 +02:00
|
|
|
cef_show_state_t ViewsWindow::GetInitialShowState(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
return initial_show_state_;
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
bool ViewsWindow::IsFrameless(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
return frameless_;
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
bool ViewsWindow::CanResize(CefRefPtr<CefWindow> window) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
// Don't allow windows hosting extensions to resize.
|
|
|
|
return !delegate_->WithExtension();
|
|
|
|
}
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
bool ViewsWindow::OnAccelerator(CefRefPtr<CefWindow> window, int command_id) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
if (command_id == ID_QUIT) {
|
|
|
|
delegate_->OnExit();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ViewsWindow::OnKeyEvent(CefRefPtr<CefWindow> window,
|
|
|
|
const CefKeyEvent& event) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
if (!window_)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (delegate_->WithExtension() && event.type == KEYEVENT_RAWKEYDOWN &&
|
|
|
|
event.windows_key_code == VK_ESCAPE) {
|
|
|
|
// Close the extension window on escape.
|
|
|
|
Close(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!with_controls_)
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (event.type == KEYEVENT_RAWKEYDOWN && event.windows_key_code == VK_MENU) {
|
2017-02-25 06:03:31 +01:00
|
|
|
// ALT key is pressed.
|
|
|
|
int last_focused_view = last_focused_view_;
|
|
|
|
bool menu_had_focus = menu_has_focus_;
|
2017-05-17 11:29:28 +02:00
|
|
|
|
2017-02-25 06:03:31 +01:00
|
|
|
// Toggle menu button focusable.
|
|
|
|
SetMenuFocusable(!menu_has_focus_);
|
|
|
|
|
|
|
|
if (menu_had_focus && last_focused_view != 0) {
|
|
|
|
// Restore focus to the view that was previously focused.
|
|
|
|
window_->GetViewForID(last_focused_view)->RequestFocus();
|
|
|
|
}
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-02-23 21:24:45 +01:00
|
|
|
if (menu_has_focus_ && top_menu_bar_)
|
|
|
|
return top_menu_bar_->OnKeyEvent(event);
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
CefSize ViewsWindow::GetMinimumSize(CefRefPtr<CefView> view) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
if (view->GetID() == ID_WINDOW)
|
|
|
|
return minimum_window_size_;
|
|
|
|
|
|
|
|
return CefSize();
|
|
|
|
}
|
|
|
|
|
2017-02-18 03:08:51 +01:00
|
|
|
void ViewsWindow::OnFocus(CefRefPtr<CefView> view) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
2017-02-25 06:03:31 +01:00
|
|
|
const int view_id = view->GetID();
|
|
|
|
|
|
|
|
// Keep track of the non-menu view that was last focused.
|
|
|
|
if (last_focused_view_ != view_id &&
|
|
|
|
(!top_menu_bar_ || !top_menu_bar_->HasMenuId(view_id))) {
|
|
|
|
last_focused_view_ = view_id;
|
|
|
|
}
|
|
|
|
|
2017-02-18 03:08:51 +01:00
|
|
|
// When focus leaves the menu buttons make them unfocusable.
|
|
|
|
if (menu_has_focus_) {
|
2017-02-22 19:05:27 +01:00
|
|
|
if (top_menu_bar_) {
|
|
|
|
if (!top_menu_bar_->HasMenuId(view_id))
|
2017-02-18 03:08:51 +01:00
|
|
|
SetMenuFocusable(false);
|
|
|
|
} else if (view_id != ID_MENU_BUTTON) {
|
|
|
|
SetMenuFocusable(false);
|
|
|
|
}
|
|
|
|
}
|
2017-08-04 00:55:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::OnBlur(CefRefPtr<CefView> view) {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
const int view_id = view->GetID();
|
|
|
|
if (view_id == ID_BROWSER_VIEW && delegate_->WithExtension()) {
|
|
|
|
// Close windows hosting extensions when the browser loses focus.
|
|
|
|
Close(false);
|
|
|
|
}
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
void ViewsWindow::OnWindowChanged(CefRefPtr<CefView> view, bool added) {
|
|
|
|
const int view_id = view->GetID();
|
|
|
|
if (view_id != ID_BROWSER_VIEW)
|
|
|
|
return;
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (added) {
|
|
|
|
if (with_controls_) {
|
|
|
|
AddControls();
|
|
|
|
}
|
2021-04-11 22:10:11 +02:00
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (with_overlay_controls_) {
|
|
|
|
overlay_controls_ = new ViewsOverlayControls();
|
|
|
|
overlay_controls_->Initialize(window_, CreateMenuButton(),
|
|
|
|
CreateLocationBar(),
|
|
|
|
chrome_toolbar_type_ != CEF_CTT_NONE);
|
2021-04-11 22:10:11 +02:00
|
|
|
}
|
2021-08-28 03:55:15 +02:00
|
|
|
} else {
|
|
|
|
if (overlay_controls_) {
|
|
|
|
// Overlay controls may include the Chrome toolbar, in which case they
|
|
|
|
// need to be removed before the BrowserView.
|
|
|
|
overlay_controls_->Destroy();
|
|
|
|
overlay_controls_ = nullptr;
|
|
|
|
location_bar_ = nullptr;
|
2021-04-11 22:10:11 +02:00
|
|
|
}
|
|
|
|
}
|
2021-08-28 03:55:15 +02:00
|
|
|
}
|
2021-04-11 22:10:11 +02:00
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
void ViewsWindow::OnLayoutChanged(CefRefPtr<CefView> view,
|
|
|
|
const CefRect& new_bounds) {
|
|
|
|
const int view_id = view->GetID();
|
|
|
|
if (view_id != ID_BROWSER_VIEW)
|
|
|
|
return;
|
2021-04-11 22:10:11 +02:00
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
if (overlay_controls_) {
|
|
|
|
overlay_controls_->UpdateControls();
|
2021-04-11 22:10:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-22 19:05:27 +01:00
|
|
|
void ViewsWindow::MenuBarExecuteCommand(CefRefPtr<CefMenuModel> menu_model,
|
|
|
|
int command_id,
|
|
|
|
cef_event_flags_t event_flags) {
|
|
|
|
ExecuteCommand(menu_model, command_id, event_flags);
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
ViewsWindow::ViewsWindow(Delegate* delegate,
|
|
|
|
CefRefPtr<CefBrowserView> browser_view)
|
|
|
|
: delegate_(delegate),
|
2017-02-18 03:08:51 +01:00
|
|
|
with_controls_(false),
|
2017-02-25 06:03:31 +01:00
|
|
|
menu_has_focus_(false),
|
|
|
|
last_focused_view_(false) {
|
2016-01-19 21:09:01 +01:00
|
|
|
DCHECK(delegate_);
|
|
|
|
if (browser_view)
|
|
|
|
SetBrowserView(browser_view);
|
|
|
|
|
|
|
|
CefRefPtr<CefCommandLine> command_line =
|
|
|
|
CefCommandLine::GetGlobalCommandLine();
|
2021-08-28 03:55:15 +02:00
|
|
|
|
|
|
|
const bool hide_frame = command_line->HasSwitch(switches::kHideFrame);
|
|
|
|
const bool hide_overlays = command_line->HasSwitch(switches::kHideOverlays);
|
|
|
|
|
|
|
|
// Without a window frame.
|
|
|
|
frameless_ = hide_frame || delegate_->WithExtension();
|
|
|
|
|
|
|
|
// With an overlay that mimics window controls.
|
|
|
|
with_overlay_controls_ =
|
|
|
|
hide_frame && !hide_overlays && !delegate_->WithControls();
|
2017-02-22 19:05:27 +01:00
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
if (MainContext::Get()->UseChromeRuntime()) {
|
|
|
|
const std::string& toolbar_type =
|
|
|
|
command_line->GetSwitchValue(switches::kShowChromeToolbar);
|
|
|
|
if (toolbar_type == "none") {
|
|
|
|
chrome_toolbar_type_ = CEF_CTT_NONE;
|
|
|
|
} else if (toolbar_type == "location") {
|
|
|
|
chrome_toolbar_type_ = CEF_CTT_LOCATION;
|
|
|
|
} else {
|
2021-08-28 03:55:15 +02:00
|
|
|
chrome_toolbar_type_ =
|
|
|
|
with_overlay_controls_ ? CEF_CTT_LOCATION : CEF_CTT_NORMAL;
|
2021-04-11 22:10:11 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chrome_toolbar_type_ = CEF_CTT_NONE;
|
|
|
|
}
|
|
|
|
|
2021-09-07 16:04:55 +02:00
|
|
|
const std::string& show_state =
|
|
|
|
command_line->GetSwitchValue(switches::kInitialShowState);
|
|
|
|
if (show_state == "minimized") {
|
|
|
|
initial_show_state_ = CEF_SHOW_STATE_MINIMIZED;
|
|
|
|
} else if (show_state == "maximized") {
|
|
|
|
initial_show_state_ = CEF_SHOW_STATE_MAXIMIZED;
|
|
|
|
} else if (show_state == "fullscreen") {
|
|
|
|
initial_show_state_ = CEF_SHOW_STATE_FULLSCREEN;
|
|
|
|
}
|
|
|
|
|
2021-02-23 21:08:33 +01:00
|
|
|
#if !defined(OS_MAC)
|
|
|
|
// On Mac we don't show a top menu on the window. The options are available in
|
|
|
|
// the app menu instead.
|
2017-02-25 06:03:31 +01:00
|
|
|
if (!command_line->HasSwitch(switches::kHideTopMenu)) {
|
2017-02-22 19:05:27 +01:00
|
|
|
top_menu_bar_ = new ViewsMenuBar(this, ID_TOP_MENU_FIRST);
|
2017-02-25 06:03:31 +01:00
|
|
|
}
|
2021-02-23 21:08:33 +01:00
|
|
|
#endif
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::SetBrowserView(CefRefPtr<CefBrowserView> browser_view) {
|
|
|
|
DCHECK(!browser_view_);
|
|
|
|
DCHECK(browser_view);
|
|
|
|
DCHECK(browser_view->IsValid());
|
|
|
|
DCHECK(!browser_view->IsAttached());
|
|
|
|
browser_view_ = browser_view;
|
2017-02-25 06:03:31 +01:00
|
|
|
browser_view_->SetID(ID_BROWSER_VIEW);
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::CreateMenuModel() {
|
2017-02-18 03:08:51 +01:00
|
|
|
// Create the menu button model.
|
|
|
|
button_menu_model_ = CefMenuModel::CreateMenuModel(this);
|
|
|
|
CefRefPtr<CefMenuModel> test_menu =
|
|
|
|
button_menu_model_->AddSubMenu(0, "&Tests");
|
2017-02-25 06:03:31 +01:00
|
|
|
views_style::ApplyTo(button_menu_model_);
|
2017-02-18 03:08:51 +01:00
|
|
|
AddTestMenuItems(test_menu);
|
2017-02-25 06:03:31 +01:00
|
|
|
AddFileMenuItems(button_menu_model_);
|
2017-02-18 03:08:51 +01:00
|
|
|
|
2017-02-22 19:05:27 +01:00
|
|
|
if (top_menu_bar_) {
|
|
|
|
// Add the menus to the top menu bar.
|
2020-01-15 15:28:12 +01:00
|
|
|
AddFileMenuItems(top_menu_bar_->CreateMenuModel("&File", nullptr));
|
|
|
|
AddTestMenuItems(top_menu_bar_->CreateMenuModel("&Tests", nullptr));
|
2017-02-18 03:08:51 +01:00
|
|
|
}
|
|
|
|
}
|
2017-02-17 00:19:43 +01:00
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefLabelButton> ViewsWindow::CreateBrowseButton(
|
|
|
|
const std::string& label,
|
|
|
|
int id) {
|
|
|
|
CefRefPtr<CefLabelButton> button =
|
2019-07-16 19:59:21 +02:00
|
|
|
CefLabelButton::CreateLabelButton(this, label);
|
2016-01-19 21:09:01 +01:00
|
|
|
button->SetID(id);
|
2021-08-28 03:55:15 +02:00
|
|
|
views_style::ApplyTo(button.get());
|
|
|
|
button->SetInkDropEnabled(true);
|
2017-05-17 11:29:28 +02:00
|
|
|
button->SetEnabled(false); // Disabled by default.
|
2016-01-19 21:09:01 +01:00
|
|
|
button->SetFocusable(false); // Don't give focus to the button.
|
2017-02-25 06:03:31 +01:00
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
CefRefPtr<CefMenuButton> ViewsWindow::CreateMenuButton() {
|
|
|
|
// Create the menu button.
|
|
|
|
DCHECK(!menu_button_);
|
|
|
|
menu_button_ = CefMenuButton::CreateMenuButton(this, CefString());
|
|
|
|
menu_button_->SetID(ID_MENU_BUTTON);
|
|
|
|
menu_button_->SetImage(
|
|
|
|
CEF_BUTTON_STATE_NORMAL,
|
|
|
|
delegate_->GetImageCache()->GetCachedImage("menu_icon"));
|
|
|
|
views_style::ApplyTo(menu_button_.get());
|
|
|
|
menu_button_->SetInkDropEnabled(true);
|
|
|
|
// Override the default minimum size.
|
|
|
|
menu_button_->SetMinimumSize(CefSize(0, 0));
|
|
|
|
return menu_button_;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefView> ViewsWindow::CreateLocationBar() {
|
|
|
|
DCHECK(!location_bar_);
|
|
|
|
if (chrome_toolbar_type_ == CEF_CTT_LOCATION) {
|
|
|
|
// Chrome will provide a minimal location bar.
|
|
|
|
location_bar_ = browser_view_->GetChromeToolbar();
|
|
|
|
DCHECK(location_bar_);
|
|
|
|
views_style::ApplyBackgroundTo(location_bar_);
|
|
|
|
}
|
|
|
|
if (!location_bar_) {
|
|
|
|
// Create the URL textfield.
|
|
|
|
CefRefPtr<CefTextfield> url_textfield = CefTextfield::CreateTextfield(this);
|
|
|
|
url_textfield->SetID(ID_URL_TEXTFIELD);
|
|
|
|
url_textfield->SetEnabled(false); // Disabled by default.
|
|
|
|
views_style::ApplyTo(url_textfield);
|
|
|
|
location_bar_ = url_textfield;
|
|
|
|
}
|
|
|
|
return location_bar_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::AddBrowserView() {
|
2016-01-19 21:09:01 +01:00
|
|
|
// Use a vertical box layout for |window|.
|
|
|
|
CefBoxLayoutSettings window_layout_settings;
|
|
|
|
window_layout_settings.horizontal = false;
|
|
|
|
window_layout_settings.between_child_spacing = 2;
|
|
|
|
CefRefPtr<CefBoxLayout> window_layout =
|
|
|
|
window_->SetToBoxLayout(window_layout_settings);
|
|
|
|
|
|
|
|
window_->AddChildView(browser_view_);
|
|
|
|
|
|
|
|
// Allow |browser_view_| to grow and fill any remaining space.
|
|
|
|
window_layout->SetFlexForView(browser_view_, 1);
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
// Remaining setup will be performed in OnWindowChanged after the BrowserView
|
|
|
|
// is added to the CefWindow. This is necessary because Chrome toolbars are
|
|
|
|
// only available after the BrowserView is added.
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
|
2021-08-28 03:55:15 +02:00
|
|
|
void ViewsWindow::AddControls() {
|
|
|
|
// Build the remainder of the UI now that the BrowserView has been added to
|
|
|
|
// the CefWindow. This is a requirement to use Chrome toolbars.
|
|
|
|
|
|
|
|
CefRefPtr<CefPanel> top_menu_panel;
|
|
|
|
if (top_menu_bar_)
|
|
|
|
top_menu_panel = top_menu_bar_->GetMenuPanel();
|
|
|
|
|
|
|
|
LabelButtons browse_buttons;
|
|
|
|
|
|
|
|
if (chrome_toolbar_type_ == CEF_CTT_NORMAL) {
|
|
|
|
// Chrome will provide a normal toolbar with location, menu, etc.
|
|
|
|
top_toolbar_ = browser_view_->GetChromeToolbar();
|
|
|
|
DCHECK(top_toolbar_);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!top_toolbar_) {
|
|
|
|
// Create the browse buttons.
|
|
|
|
browse_buttons.push_back(CreateBrowseButton("Back", ID_BACK_BUTTON));
|
|
|
|
browse_buttons.push_back(CreateBrowseButton("Forward", ID_FORWARD_BUTTON));
|
|
|
|
browse_buttons.push_back(CreateBrowseButton("Reload", ID_RELOAD_BUTTON));
|
|
|
|
browse_buttons.push_back(CreateBrowseButton("Stop", ID_STOP_BUTTON));
|
|
|
|
|
|
|
|
CreateLocationBar();
|
|
|
|
CreateMenuButton();
|
|
|
|
|
|
|
|
// Create the top panel.
|
|
|
|
CefRefPtr<CefPanel> top_panel = CefPanel::CreatePanel(nullptr);
|
|
|
|
|
|
|
|
// Use a horizontal box layout for |top_panel|.
|
|
|
|
CefBoxLayoutSettings top_panel_layout_settings;
|
|
|
|
top_panel_layout_settings.horizontal = true;
|
|
|
|
CefRefPtr<CefBoxLayout> top_panel_layout =
|
|
|
|
top_panel->SetToBoxLayout(top_panel_layout_settings);
|
|
|
|
|
|
|
|
// Add the buttons and URL textfield to |top_panel|.
|
|
|
|
for (size_t i = 0U; i < browse_buttons.size(); ++i)
|
|
|
|
top_panel->AddChildView(browse_buttons[i]);
|
|
|
|
top_panel->AddChildView(location_bar_);
|
|
|
|
|
|
|
|
UpdateExtensionControls();
|
|
|
|
DCHECK(extensions_panel_);
|
|
|
|
top_panel->AddChildView(extensions_panel_);
|
|
|
|
|
|
|
|
top_panel->AddChildView(menu_button_);
|
|
|
|
views_style::ApplyTo(top_panel);
|
|
|
|
|
|
|
|
// Allow |location| to grow and fill any remaining space.
|
|
|
|
top_panel_layout->SetFlexForView(location_bar_, 1);
|
|
|
|
|
|
|
|
top_toolbar_ = top_panel;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the top panel and browser view to |window|.
|
|
|
|
int top_index = 0;
|
|
|
|
if (top_menu_panel)
|
|
|
|
window_->AddChildViewAt(top_menu_panel, top_index++);
|
|
|
|
window_->AddChildViewAt(top_toolbar_, top_index);
|
|
|
|
|
|
|
|
// Lay out |window| so we can get the default button sizes.
|
|
|
|
window_->Layout();
|
|
|
|
|
|
|
|
int min_width = 200;
|
|
|
|
if (!browse_buttons.empty()) {
|
|
|
|
// Make all browse buttons the same size.
|
|
|
|
MakeButtonsSameSize(browse_buttons);
|
|
|
|
|
|
|
|
// Lay out |window| again with the new button sizes.
|
|
|
|
window_->Layout();
|
|
|
|
|
|
|
|
// Minimum window width is the size of all buttons plus some extra.
|
|
|
|
min_width = browse_buttons[0]->GetBounds().width * 4 +
|
|
|
|
menu_button_->GetBounds().width + 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Minimum window height is the hight of the top toolbar plus some extra.
|
|
|
|
int min_height = top_toolbar_->GetBounds().height + 100;
|
|
|
|
if (top_menu_panel)
|
|
|
|
min_height += top_menu_panel->GetBounds().height;
|
|
|
|
|
|
|
|
minimum_window_size_ = CefSize(min_width, min_height);
|
|
|
|
}
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
void ViewsWindow::AddAccelerators() {
|
|
|
|
// Trigger accelerators without first forwarding to web content.
|
|
|
|
browser_view_->SetPreferAccelerators(true);
|
|
|
|
|
|
|
|
// Specify the accelerators to handle. OnAccelerator will be called when the
|
|
|
|
// accelerator is triggered.
|
|
|
|
window_->SetAccelerator(ID_QUIT, 'X', false, false, true);
|
|
|
|
}
|
|
|
|
|
2017-02-18 03:08:51 +01:00
|
|
|
void ViewsWindow::SetMenuFocusable(bool focusable) {
|
|
|
|
if (!window_ || !with_controls_)
|
|
|
|
return;
|
|
|
|
|
2017-02-22 19:05:27 +01:00
|
|
|
if (top_menu_bar_) {
|
|
|
|
top_menu_bar_->SetMenuFocusable(focusable);
|
2017-02-18 03:08:51 +01:00
|
|
|
} else {
|
|
|
|
window_->GetViewForID(ID_MENU_BUTTON)->SetFocusable(focusable);
|
|
|
|
|
|
|
|
if (focusable) {
|
|
|
|
// Give focus to menu button.
|
|
|
|
window_->GetViewForID(ID_MENU_BUTTON)->RequestFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_has_focus_ = focusable;
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void ViewsWindow::EnableView(int id, bool enable) {
|
|
|
|
if (!window_)
|
|
|
|
return;
|
2021-08-28 03:55:15 +02:00
|
|
|
// Special handling for |location_bar_| which may be an overlay (e.g. not a
|
|
|
|
// child of this view).
|
|
|
|
CefRefPtr<CefView> view =
|
|
|
|
id == ID_URL_TEXTFIELD ? location_bar_ : window_->GetViewForID(id);
|
2016-01-19 21:09:01 +01:00
|
|
|
if (view)
|
|
|
|
view->SetEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::ShowTopControls(bool show) {
|
|
|
|
if (!window_ || !with_controls_)
|
|
|
|
return;
|
|
|
|
|
2021-04-11 22:10:11 +02:00
|
|
|
// Change the visibility of the top toolbar.
|
|
|
|
if (top_toolbar_->IsVisible() != show) {
|
|
|
|
top_toolbar_->SetVisible(show);
|
|
|
|
top_toolbar_->InvalidateLayout();
|
2016-01-19 21:09:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
void ViewsWindow::UpdateExtensionControls() {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
if (!window_ || !with_controls_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!extensions_panel_) {
|
2020-01-15 15:28:12 +01:00
|
|
|
extensions_panel_ = CefPanel::CreatePanel(nullptr);
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
// Use a horizontal box layout for |top_panel|.
|
|
|
|
CefBoxLayoutSettings top_panel_layout_settings;
|
|
|
|
top_panel_layout_settings.horizontal = true;
|
|
|
|
CefRefPtr<CefBoxLayout> top_panel_layout =
|
|
|
|
extensions_panel_->SetToBoxLayout(top_panel_layout_settings);
|
|
|
|
} else {
|
|
|
|
extensions_panel_->RemoveAllChildViews();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extensions_.size() >
|
|
|
|
ID_EXTENSION_BUTTON_LAST - ID_EXTENSION_BUTTON_FIRST) {
|
|
|
|
LOG(WARNING) << "Too many extensions loaded. Some will be ignored.";
|
|
|
|
}
|
|
|
|
|
|
|
|
ExtensionInfoSet::const_iterator it = extensions_.begin();
|
|
|
|
for (int id = ID_EXTENSION_BUTTON_FIRST;
|
|
|
|
it != extensions_.end() && id <= ID_EXTENSION_BUTTON_LAST; ++id, ++it) {
|
|
|
|
CefRefPtr<CefMenuButton> button =
|
2019-07-16 19:59:21 +02:00
|
|
|
CefMenuButton::CreateMenuButton(this, CefString());
|
2017-08-04 00:55:19 +02:00
|
|
|
button->SetID(id);
|
|
|
|
button->SetImage(CEF_BUTTON_STATE_NORMAL, (*it).image_);
|
|
|
|
views_style::ApplyTo(button.get());
|
|
|
|
button->SetInkDropEnabled(true);
|
|
|
|
// Override the default minimum size.
|
|
|
|
button->SetMinimumSize(CefSize(0, 0));
|
|
|
|
|
|
|
|
extensions_panel_->AddChildView(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefView> parent_view = extensions_panel_->GetParentView();
|
|
|
|
if (parent_view)
|
|
|
|
parent_view->InvalidateLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::OnExtensionIconsLoaded(const ExtensionSet& extensions,
|
|
|
|
const ImageCache::ImageSet& images) {
|
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
|
|
|
// Execute this method on the UI thread.
|
2021-06-19 21:54:45 +02:00
|
|
|
CefPostTask(TID_UI, base::BindOnce(&ViewsWindow::OnExtensionIconsLoaded,
|
|
|
|
this, extensions, images));
|
2017-08-04 00:55:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DCHECK_EQ(extensions.size(), images.size());
|
|
|
|
|
|
|
|
extensions_.clear();
|
|
|
|
|
|
|
|
ExtensionSet::const_iterator it1 = extensions.begin();
|
|
|
|
ImageCache::ImageSet::const_iterator it2 = images.begin();
|
|
|
|
for (; it1 != extensions.end() && it2 != images.end(); ++it1, ++it2) {
|
|
|
|
CefRefPtr<CefImage> icon = *it2;
|
|
|
|
if (!icon)
|
|
|
|
icon = delegate_->GetImageCache()->GetCachedImage(kDefaultExtensionIcon);
|
|
|
|
extensions_.push_back(ExtensionInfo(*it1, icon));
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateExtensionControls();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewsWindow::OnExtensionWindowClosed() {
|
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
|
|
|
// Execute this method on the UI thread.
|
|
|
|
CefPostTask(TID_UI,
|
2021-06-19 21:54:45 +02:00
|
|
|
base::BindOnce(&ViewsWindow::OnExtensionWindowClosed, this));
|
2017-08-04 00:55:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restore the button state.
|
2020-01-15 15:28:12 +01:00
|
|
|
extension_button_pressed_lock_ = nullptr;
|
2017-08-04 00:55:19 +02:00
|
|
|
}
|
|
|
|
|
2021-08-04 20:20:31 +02:00
|
|
|
CefRect ViewsWindow::GetInitialBounds() const {
|
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
CefRect bounds = delegate_->GetWindowBounds();
|
|
|
|
if (bounds.IsEmpty()) {
|
|
|
|
// Use the default size.
|
|
|
|
bounds.width = 800;
|
|
|
|
bounds.height = 600;
|
|
|
|
}
|
|
|
|
return bounds;
|
|
|
|
}
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
} // namespace client
|