electron/atom/browser/osr/osr_render_widget_host_view.h

267 lines
9.1 KiB
C
Raw Normal View History

2016-07-30 19:35:14 +00:00
// Copyright (c) 2016 GitHub, Inc.
2016-07-05 19:33:22 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
#define ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_
2016-07-05 19:33:22 +00:00
2016-07-31 10:19:56 +00:00
#include <string>
#include <vector>
#if defined(OS_WIN)
#include <windows.h>
#endif
2016-07-27 12:36:22 +00:00
#include "atom/browser/native_window.h"
#include "atom/browser/osr/osr_output_device.h"
2016-07-29 22:51:19 +00:00
#include "base/process/kill.h"
2016-07-05 19:33:22 +00:00
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "cc/scheduler/begin_frame_source.h"
#include "cc/output/compositor_frame.h"
#include "content/browser/renderer_host/delegated_frame_host.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/renderer_host/render_widget_host_view_base.h"
#include "content/browser/renderer_host/resize_lock.h"
2016-07-05 19:33:22 +00:00
#include "ui/compositor/compositor.h"
#include "ui/compositor/layer_delegate.h"
#include "ui/compositor/layer_owner.h"
#include "ui/base/ime/text_input_client.h"
#include "ui/gfx/geometry/point.h"
#include "third_party/WebKit/public/platform/WebVector.h"
2016-07-05 19:33:22 +00:00
2016-07-18 14:16:23 +00:00
#if defined(OS_WIN)
2016-07-05 19:33:22 +00:00
#include "ui/gfx/win/window_impl.h"
2016-07-18 14:16:23 +00:00
#endif
#if defined(OS_MACOSX)
#include "content/browser/renderer_host/browser_compositor_view_mac.h"
#include "ui/accelerated_widget_mac/accelerated_widget_mac.h"
#endif
#if defined(OS_MACOSX)
#ifdef __OBJC__
@class CALayer;
@class NSWindow;
@class NSTextInputContext;
#else
class CALayer;
class NSWindow;
class NSTextInputContext;
#endif
#endif
2016-07-05 19:33:22 +00:00
namespace atom {
2016-07-27 18:31:03 +00:00
class AtomCopyFrameGenerator;
class AtomBeginFrameTimer;
2016-07-18 14:16:23 +00:00
2016-07-29 22:51:19 +00:00
class OffScreenRenderWidgetHostView:
public content::RenderWidgetHostViewBase,
#if defined(OS_MACOSX)
public ui::AcceleratedWidgetMacNSView,
#endif
public ui::CompositorDelegate,
public content::DelegatedFrameHostClient {
2016-07-31 10:19:56 +00:00
public:
2016-08-01 11:27:39 +00:00
OffScreenRenderWidgetHostView(const bool transparent,
content::RenderWidgetHost*, NativeWindow*);
2016-07-29 12:50:27 +00:00
~OffScreenRenderWidgetHostView();
2016-07-05 19:33:22 +00:00
// content::RenderWidgetHostView
2016-07-05 19:33:22 +00:00
bool OnMessageReceived(const IPC::Message&) override;
2016-07-31 10:19:56 +00:00
void InitAsChild(gfx::NativeView) override;
content::RenderWidgetHost* GetRenderWidgetHost(void) const override;
void SetSize(const gfx::Size &) override;
void SetBounds(const gfx::Rect &) override;
gfx::Vector2dF GetLastScrollOffset(void) const override;
gfx::NativeView GetNativeView(void) const override;
gfx::NativeViewAccessible GetNativeViewAccessible(void) override;
ui::TextInputClient* GetTextInputClient() override;
void Focus(void) override;
bool HasFocus(void) const override;
bool IsSurfaceAvailableForCopy(void) const override;
void Show(void) override;
void Hide(void) override;
bool IsShowing(void) override;
gfx::Rect GetViewBounds(void) const override;
gfx::Size GetVisibleViewportSize() const override;
void SetInsets(const gfx::Insets&) override;
2016-08-01 11:27:39 +00:00
void SetBackgroundColor(SkColor color) override;
2016-07-31 10:19:56 +00:00
bool LockMouse(void) override;
void UnlockMouse(void) override;
bool GetScreenColorProfile(std::vector<char>*) override;
#if defined(OS_MACOSX)
ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override;
void SetActive(bool active) override;
void ShowDefinitionForSelection() override;
bool SupportsSpeech() const override;
void SpeakSelection() override;
bool IsSpeaking() const override;
void StopSpeaking() override;
#endif // defined(OS_MACOSX)
// content::RenderWidgetHostViewBase
void OnSwapCompositorFrame(uint32_t, std::unique_ptr<cc::CompositorFrame>)
override;
void ClearCompositorFrame(void) override;
void InitAsPopup(content::RenderWidgetHostView *rwhv, const gfx::Rect& rect)
override;
void InitAsFullscreen(content::RenderWidgetHostView *) override;
void UpdateCursor(const content::WebCursor &) override;
void SetIsLoading(bool is_loading) override;
void TextInputStateChanged(const content::TextInputState& params) override;
void ImeCancelComposition(void) override;
void RenderProcessGone(base::TerminationStatus, int) override;
void Destroy(void) override;
void SetTooltipText(const base::string16 &) override;
2016-07-27 17:44:41 +00:00
#if defined(OS_MACOSX)
2016-07-31 10:19:56 +00:00
void SelectionChanged(const base::string16& text,
size_t offset,
const gfx::Range& range) override;
#endif
void SelectionBoundsChanged(const ViewHostMsg_SelectionBounds_Params &)
override;
void CopyFromCompositingSurface(const gfx::Rect &,
const gfx::Size &,
const content::ReadbackRequestCallback &,
const SkColorType) override;
void CopyFromCompositingSurfaceToVideoFrame(
const gfx::Rect &,
const scoped_refptr<media::VideoFrame> &,
const base::Callback<void(const gfx::Rect &, bool),
base::internal::CopyMode::Copyable> &) override;
bool CanCopyToVideoFrame(void) const override;
void BeginFrameSubscription(
std::unique_ptr<content::RenderWidgetHostViewFrameSubscriber>) override;
void EndFrameSubscription() override;
bool HasAcceleratedSurface(const gfx::Size &) override;
void GetScreenInfo(blink::WebScreenInfo *) override;
bool GetScreenColorProfile(blink::WebVector<char>*);
gfx::Rect GetBoundsInRootWindow(void) override;
void LockCompositingSurface(void) override;
void UnlockCompositingSurface(void) override;
2016-07-05 19:33:22 +00:00
void ImeCompositionRangeChanged(
2016-07-18 14:16:23 +00:00
const gfx::Range &, const std::vector<gfx::Rect>&) override;
2016-07-13 15:43:00 +00:00
gfx::Size GetPhysicalBackingSize() const override;
gfx::Size GetRequestedRendererSize() const override;
2016-07-05 19:33:22 +00:00
// content::DelegatedFrameHostClient
2016-07-05 19:33:22 +00:00
int DelegatedFrameHostGetGpuMemoryBufferClientId(void) const;
2016-07-18 14:16:23 +00:00
ui::Layer *DelegatedFrameHostGetLayer(void) const override;
bool DelegatedFrameHostIsVisible(void) const override;
SkColor DelegatedFrameHostGetGutterColor(SkColor) const override;
gfx::Size DelegatedFrameHostDesiredSizeInDIP(void) const override;
bool DelegatedFrameCanCreateResizeLock(void) const override;
2016-07-31 10:19:56 +00:00
std::unique_ptr<content::ResizeLock> DelegatedFrameHostCreateResizeLock(
bool defer_compositor_lock) override;
2016-07-18 14:16:23 +00:00
void DelegatedFrameHostResizeLockWasReleased(void) override;
2016-07-05 19:33:22 +00:00
void DelegatedFrameHostSendCompositorSwapAck(
2016-07-18 14:16:23 +00:00
int, const cc::CompositorFrameAck &) override;
2016-07-05 19:33:22 +00:00
void DelegatedFrameHostSendReclaimCompositorResources(
2016-07-18 14:16:23 +00:00
int, const cc::CompositorFrameAck &) override;
void DelegatedFrameHostOnLostCompositorResources(void) override;
2016-07-05 19:33:22 +00:00
void DelegatedFrameHostUpdateVSyncParameters(
2016-07-18 14:16:23 +00:00
const base::TimeTicks &, const base::TimeDelta &) override;
void SetBeginFrameSource(cc::BeginFrameSource* source) override;
2016-08-01 11:27:39 +00:00
bool InstallTransparency();
bool IsAutoResizeEnabled() const;
2016-07-05 19:33:22 +00:00
2016-07-27 16:24:58 +00:00
std::unique_ptr<cc::SoftwareOutputDevice> CreateSoftwareOutputDevice(
ui::Compositor* compositor) override;
2016-07-13 15:43:00 +00:00
void OnSetNeedsBeginFrames(bool enabled);
2016-07-18 14:16:23 +00:00
#if defined(OS_MACOSX)
// AcceleratedWidgetMacNSView implementation.
NSView* AcceleratedWidgetGetNSView() const override;
void AcceleratedWidgetGetVSyncParameters(
base::TimeTicks* timebase, base::TimeDelta* interval) const override;
void AcceleratedWidgetSwapCompleted() override;
#endif // defined(OS_MACOSX)
ui::Compositor* compositor() const { return compositor_.get(); }
content::RenderWidgetHostImpl* render_widget_host() const
{ return render_widget_host_; }
void OnBeginFrameTimerTick();
void SendBeginFrame(base::TimeTicks frame_time,
base::TimeDelta vsync_period);
void CreatePlatformWidget();
void DestroyPlatformWidget();
void SetPaintCallback(const OnPaintCallback& callback);
2016-07-22 11:55:58 +00:00
2016-07-27 17:44:41 +00:00
void OnPaint(const gfx::Rect& damage_rect,
2016-08-03 04:04:36 +00:00
const gfx::Size& bitmap_size,
2016-07-27 17:44:41 +00:00
void* bitmap_pixels);
2016-07-31 10:19:56 +00:00
void SetPainting(bool painting);
bool IsPainting() const;
2016-07-31 10:19:56 +00:00
void SetFrameRate(int frame_rate);
int GetFrameRate() const;
2016-07-05 19:33:22 +00:00
private:
2016-07-31 10:19:56 +00:00
void SetupFrameRate(bool force);
2016-07-22 11:55:58 +00:00
void ResizeRootLayer();
2016-07-13 15:43:00 +00:00
content::RenderWidgetHostImpl* render_widget_host_;
2016-07-27 12:36:22 +00:00
NativeWindow* native_window_;
2016-07-05 19:33:22 +00:00
2016-07-27 18:31:03 +00:00
std::unique_ptr<AtomCopyFrameGenerator> copy_frame_generator_;
std::unique_ptr<AtomBeginFrameTimer> begin_frame_timer_;
2016-07-18 14:16:23 +00:00
2016-07-22 11:55:58 +00:00
OffScreenOutputDevice* software_output_device_;
2016-08-03 04:04:36 +00:00
OnPaintCallback callback_;
2016-07-29 12:50:27 +00:00
int frame_rate_;
2016-07-18 14:16:23 +00:00
int frame_rate_threshold_ms_;
2016-07-05 19:33:22 +00:00
base::Time last_time_;
2016-08-01 11:27:39 +00:00
const bool transparent_;
2016-07-13 15:43:00 +00:00
float scale_factor_;
bool is_showing_;
gfx::Vector2dF last_scroll_offset_;
gfx::Size size_;
bool painting_;
2016-07-05 19:33:22 +00:00
2016-07-18 14:16:23 +00:00
std::unique_ptr<content::DelegatedFrameHost> delegated_frame_host_;
std::unique_ptr<ui::Compositor> compositor_;
gfx::AcceleratedWidget compositor_widget_;
std::unique_ptr<ui::Layer> root_layer_;
2016-08-02 10:56:03 +00:00
#if defined(OS_MACOSX)
2016-07-18 14:16:23 +00:00
NSWindow* window_;
CALayer* background_layer_;
std::unique_ptr<content::BrowserCompositorMac> browser_compositor_;
NSTextInputContext* text_input_context_osr_mac_;
// Selected text on the renderer.
std::string selected_text_;
// The current composition character range and its bounds.
gfx::Range composition_range_;
std::vector<gfx::Rect> composition_bounds_;
// The current caret bounds.
gfx::Rect caret_rect_;
// The current first selection bounds.
gfx::Rect first_selection_rect_;
2016-07-13 15:43:00 +00:00
#endif
2016-07-05 19:33:22 +00:00
2016-07-29 12:50:27 +00:00
base::WeakPtrFactory<OffScreenRenderWidgetHostView> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(OffScreenRenderWidgetHostView);
2016-07-05 19:33:22 +00:00
};
} // namespace atom
#endif // ATOM_BROWSER_OSR_OSR_RENDER_WIDGET_HOST_VIEW_H_