2015-11-17 19:20:13 +01:00
|
|
|
// Copyright 2015 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_OSR_BROWSER_PLATFORM_DELEGATE_OSR_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_H_
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
#include "libcef/browser/alloy/browser_platform_delegate_alloy.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
#include "libcef/browser/native/browser_platform_delegate_native.h"
|
|
|
|
|
|
|
|
class CefRenderWidgetHostViewOSR;
|
|
|
|
class CefWebContentsViewOSR;
|
|
|
|
|
2016-11-23 21:54:29 +01:00
|
|
|
namespace content {
|
|
|
|
class RenderWidgetHostImpl;
|
2022-05-27 11:03:31 +02:00
|
|
|
} // namespace content
|
2016-11-23 21:54:29 +01:00
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
// Base implementation of windowless browser functionality.
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefBrowserPlatformDelegateOsr
|
2020-07-04 20:21:34 +02:00
|
|
|
: public CefBrowserPlatformDelegateAlloy,
|
2017-05-17 11:29:28 +02:00
|
|
|
public CefBrowserPlatformDelegateNative::WindowlessHandler {
|
2015-11-17 19:20:13 +01:00
|
|
|
public:
|
|
|
|
// CefBrowserPlatformDelegate methods:
|
|
|
|
void CreateViewForWebContents(
|
|
|
|
content::WebContentsView** view,
|
|
|
|
content::RenderViewHostDelegateView** delegate_view) override;
|
2020-07-03 22:13:27 +02:00
|
|
|
void WebContentsCreated(content::WebContents* web_contents,
|
|
|
|
bool owned) override;
|
2020-07-28 05:38:48 +02:00
|
|
|
void RenderViewCreated(content::RenderViewHost* render_view_host) override;
|
2020-09-25 03:40:47 +02:00
|
|
|
void BrowserCreated(CefBrowserHostBase* browser) override;
|
2020-07-20 20:24:16 +02:00
|
|
|
void NotifyBrowserDestroyed() override;
|
2020-09-25 03:40:47 +02:00
|
|
|
void BrowserDestroyed(CefBrowserHostBase* browser) 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;
|
2021-09-27 09:50:07 +02:00
|
|
|
void SetFocus(bool setFocus) override;
|
2022-05-13 13:38:41 +02:00
|
|
|
gfx::Point GetScreenPoint(const gfx::Point& view,
|
|
|
|
bool want_dip_coords) const override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void ViewText(const std::string& text) override;
|
2018-11-03 02:15:09 +01:00
|
|
|
bool HandleKeyboardEvent(
|
2015-11-17 19:20:13 +01:00
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
|
|
|
CefEventHandle GetEventHandle(
|
|
|
|
const content::NativeWebKeyboardEvent& event) const 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;
|
2015-11-17 19:20:13 +01:00
|
|
|
bool IsWindowless() const override;
|
|
|
|
void WasHidden(bool hidden) override;
|
2022-06-02 11:49:50 +02:00
|
|
|
bool IsHidden() const override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void NotifyScreenInfoChanged() override;
|
|
|
|
void Invalidate(cef_paint_element_type_t type) override;
|
2020-01-23 22:58:01 +01:00
|
|
|
void SendExternalBeginFrame() override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void SetWindowlessFrameRate(int frame_rate) override;
|
2017-05-17 11:29:28 +02:00
|
|
|
void ImeSetComposition(const CefString& text,
|
|
|
|
const std::vector<CefCompositionUnderline>& underlines,
|
|
|
|
const CefRange& replacement_range,
|
|
|
|
const CefRange& selection_range) override;
|
|
|
|
void ImeCommitText(const CefString& text,
|
|
|
|
const CefRange& replacement_range,
|
2016-10-28 18:11:24 +02:00
|
|
|
int relative_cursor_pos) override;
|
|
|
|
void ImeFinishComposingText(bool keep_selection) override;
|
|
|
|
void ImeCancelComposition() override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void DragTargetDragEnter(CefRefPtr<CefDragData> drag_data,
|
|
|
|
const CefMouseEvent& event,
|
|
|
|
cef_drag_operations_mask_t allowed_ops) override;
|
|
|
|
void DragTargetDragOver(const CefMouseEvent& event,
|
|
|
|
cef_drag_operations_mask_t allowed_ops) override;
|
|
|
|
void DragTargetDragLeave() override;
|
|
|
|
void DragTargetDrop(const CefMouseEvent& event) override;
|
2017-05-17 11:29:28 +02:00
|
|
|
void StartDragging(const content::DropData& drop_data,
|
2020-10-08 21:54:42 +02:00
|
|
|
blink::DragOperationsMask allowed_ops,
|
2017-05-17 11:29:28 +02:00
|
|
|
const gfx::ImageSkia& image,
|
|
|
|
const gfx::Vector2d& image_offset,
|
2020-10-08 21:54:42 +02:00
|
|
|
const blink::mojom::DragEventSourceInfo& event_info,
|
2017-05-17 11:29:28 +02:00
|
|
|
content::RenderWidgetHostImpl* source_rwh) override;
|
2023-10-19 20:08:48 +02:00
|
|
|
void UpdateDragOperation(ui::mojom::DragOperation operation,
|
|
|
|
bool document_is_handling_drag) override;
|
2017-05-17 11:29:28 +02:00
|
|
|
void DragSourceEndedAt(int x, int y, cef_drag_operations_mask_t op) override;
|
2015-11-17 19:20:13 +01:00
|
|
|
void DragSourceSystemDragEnded() override;
|
2017-05-12 20:28:25 +02:00
|
|
|
void AccessibilityEventReceived(
|
2018-06-08 18:53:10 +02:00
|
|
|
const content::AXEventNotificationDetails& eventData) override;
|
2017-05-12 20:28:25 +02:00
|
|
|
void AccessibilityLocationChangesReceived(
|
|
|
|
const std::vector<content::AXLocationChangeNotificationDetails>& locData)
|
|
|
|
override;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// CefBrowserPlatformDelegateNative::WindowlessHandler methods:
|
|
|
|
CefWindowHandle GetParentWindowHandle() const override;
|
2022-05-13 13:38:41 +02:00
|
|
|
gfx::Point GetParentScreenPoint(const gfx::Point& view,
|
|
|
|
bool want_dip_coords) const override;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Platform-specific behaviors will be delegated to |native_delegate|.
|
2020-07-04 20:21:34 +02:00
|
|
|
CefBrowserPlatformDelegateOsr(
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate,
|
|
|
|
bool use_shared_texture,
|
|
|
|
bool use_external_begin_frame);
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Returns the primary OSR host view for the underlying browser. If a
|
|
|
|
// full-screen host view currently exists then it will be returned. Otherwise,
|
|
|
|
// the main host view will be returned.
|
|
|
|
CefRenderWidgetHostViewOSR* GetOSRHostView() const;
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate_;
|
2020-07-04 20:21:34 +02:00
|
|
|
const bool use_shared_texture_;
|
|
|
|
const bool use_external_begin_frame_;
|
|
|
|
|
|
|
|
CefWebContentsViewOSR* view_osr_ = nullptr; // Not owned by this class.
|
2016-06-21 00:59:23 +02:00
|
|
|
|
|
|
|
// Pending drag/drop data.
|
|
|
|
CefRefPtr<CefDragData> drag_data_;
|
2016-11-23 21:54:29 +01:00
|
|
|
cef_drag_operations_mask_t drag_allowed_ops_;
|
|
|
|
|
|
|
|
// We keep track of the RenderWidgetHost we're dragging over. If it changes
|
|
|
|
// during a drag, we need to re-send the DragEnter message.
|
|
|
|
base::WeakPtr<content::RenderWidgetHostImpl> current_rwh_for_drag_;
|
|
|
|
|
|
|
|
// We also keep track of the RenderViewHost we're dragging over to avoid
|
|
|
|
// sending the drag exited message after leaving the current
|
|
|
|
// view. |current_rvh_for_drag_| should not be dereferenced.
|
2023-10-19 20:08:48 +02:00
|
|
|
void* current_rvh_for_drag_ = nullptr;
|
2016-11-23 21:54:29 +01:00
|
|
|
|
|
|
|
// We keep track of the RenderWidgetHost from which the current drag started,
|
|
|
|
// in order to properly route the drag end message to it.
|
|
|
|
base::WeakPtr<content::RenderWidgetHostImpl> drag_start_rwh_;
|
2023-10-19 20:08:48 +02:00
|
|
|
|
|
|
|
// Set to true when the document is handling the drag. This means that the
|
|
|
|
// document has registered an interest in the dropped data and the renderer
|
|
|
|
// process should pass the data to the document on drop.
|
|
|
|
bool document_is_handling_drag_ = false;
|
2015-11-17 19:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_H_
|