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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_VIEWS_BROWSER_PLATFORM_DELEGATE_VIEWS_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_VIEWS_BROWSER_PLATFORM_DELEGATE_VIEWS_H_
|
|
|
|
|
|
|
|
#include "libcef/browser/browser_platform_delegate.h"
|
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native.h"
|
|
|
|
#include "libcef/browser/views/browser_view_impl.h"
|
|
|
|
|
|
|
|
// Implementation of Views-based browser functionality.
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefBrowserPlatformDelegateViews
|
|
|
|
: public CefBrowserPlatformDelegate,
|
|
|
|
public CefBrowserPlatformDelegateNative::WindowlessHandler {
|
2016-01-19 21:09:01 +01:00
|
|
|
public:
|
|
|
|
// Platform-specific behaviors will be delegated to |native_delegate|.
|
|
|
|
// |browser_view_getter| may be initially empty for popup browsers.
|
|
|
|
CefBrowserPlatformDelegateViews(
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefBrowserViewImpl> browser_view);
|
|
|
|
|
|
|
|
// CefBrowserPlatformDelegate methods:
|
|
|
|
void WebContentsCreated(content::WebContents* web_contents) override;
|
|
|
|
void BrowserCreated(CefBrowserHostImpl* browser) override;
|
|
|
|
void NotifyBrowserCreated() override;
|
|
|
|
void NotifyBrowserDestroyed() override;
|
|
|
|
void BrowserDestroyed(CefBrowserHostImpl* browser) override;
|
|
|
|
bool CreateHostWindow() override;
|
|
|
|
void CloseHostWindow() override;
|
|
|
|
CefWindowHandle GetHostWindowHandle() const override;
|
|
|
|
views::Widget* GetWindowWidget() const override;
|
|
|
|
CefRefPtr<CefBrowserView> GetBrowserView() const override;
|
|
|
|
void PopupWebContentsCreated(
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
content::WebContents* new_web_contents,
|
|
|
|
CefBrowserPlatformDelegate* new_platform_delegate,
|
|
|
|
bool is_devtools) override;
|
2017-05-17 11:29:28 +02:00
|
|
|
void PopupBrowserCreated(CefBrowserHostImpl* new_browser,
|
|
|
|
bool is_devtools) override;
|
2018-07-03 02:46:03 +02:00
|
|
|
bool CanUseSharedTexture() const override;
|
|
|
|
bool CanUseExternalBeginFrame() const override;
|
2017-04-20 21:28:17 +02:00
|
|
|
SkColor GetBackgroundColor() const override;
|
2020-01-31 23:54:26 +01:00
|
|
|
void WasResized() override;
|
2020-01-23 22:58:01 +01:00
|
|
|
void SendKeyEvent(const CefKeyEvent& event) override;
|
|
|
|
void SendMouseClickEvent(const CefMouseEvent& event,
|
|
|
|
CefBrowserHost::MouseButtonType type,
|
|
|
|
bool mouseUp,
|
|
|
|
int clickCount) override;
|
|
|
|
void SendMouseMoveEvent(const CefMouseEvent& event, bool mouseLeave) override;
|
|
|
|
void SendMouseWheelEvent(const CefMouseEvent& event,
|
|
|
|
int deltaX,
|
|
|
|
int deltaY) override;
|
2019-02-25 22:17:28 +01:00
|
|
|
void SendTouchEvent(const CefTouchEvent& event) override;
|
2016-01-19 21:09:01 +01:00
|
|
|
void SendFocusEvent(bool setFocus) override;
|
|
|
|
gfx::Point GetScreenPoint(const gfx::Point& view) const override;
|
|
|
|
void ViewText(const std::string& text) override;
|
2018-11-03 02:15:09 +01:00
|
|
|
bool HandleKeyboardEvent(
|
2016-01-19 21:09:01 +01:00
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
|
|
|
CefEventHandle GetEventHandle(
|
|
|
|
const content::NativeWebKeyboardEvent& event) const override;
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefFileDialogRunner> CreateFileDialogRunner() override;
|
2017-05-17 11:29:28 +02:00
|
|
|
std::unique_ptr<CefJavaScriptDialogRunner> CreateJavaScriptDialogRunner()
|
|
|
|
override;
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefMenuRunner> CreateMenuRunner() override;
|
2016-01-19 21:09:01 +01:00
|
|
|
bool IsWindowless() const override;
|
|
|
|
bool IsViewsHosted() const override;
|
2019-07-17 20:47:27 +02:00
|
|
|
gfx::Point GetDialogPosition(const gfx::Size& size) override;
|
|
|
|
gfx::Size GetMaximumDialogSize() override;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// CefBrowserPlatformDelegateNative::WindowlessHandler methods:
|
|
|
|
CefWindowHandle GetParentWindowHandle() const override;
|
|
|
|
gfx::Point GetParentScreenPoint(const gfx::Point& view) const override;
|
|
|
|
|
|
|
|
private:
|
2019-07-17 20:47:27 +02:00
|
|
|
void SetBrowserView(CefRefPtr<CefBrowserViewImpl> browser_view);
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate_;
|
2016-01-19 21:09:01 +01:00
|
|
|
CefRefPtr<CefBrowserViewImpl> browser_view_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_VIEWS_BROWSER_PLATFORM_DELEGATE_VIEWS_H_
|