2018-05-07 07:04:33 +00:00
|
|
|
// Copyright (c) 2018 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_VIEW_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_VIEW_H_
|
2018-05-07 07:04:33 +00:00
|
|
|
|
2024-01-10 22:23:35 +00:00
|
|
|
#include <optional>
|
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2018-05-21 01:50:26 +00:00
|
|
|
#include "content/public/browser/web_contents_observer.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/electron_api_view.h"
|
2022-11-07 18:15:57 +00:00
|
|
|
#include "shell/browser/draggable_region_provider.h"
|
2018-05-21 01:50:26 +00:00
|
|
|
|
2020-04-09 07:01:16 +00:00
|
|
|
namespace gin_helper {
|
|
|
|
class Dictionary;
|
|
|
|
}
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2018-05-07 07:04:33 +00:00
|
|
|
|
|
|
|
class WebContents;
|
|
|
|
|
2022-11-07 18:15:57 +00:00
|
|
|
class WebContentsView : public View,
|
|
|
|
public content::WebContentsObserver,
|
|
|
|
public DraggableRegionProvider {
|
2018-05-07 07:04:33 +00:00
|
|
|
public:
|
2020-04-09 07:01:16 +00:00
|
|
|
// Create a new instance of WebContentsView.
|
|
|
|
static gin::Handle<WebContentsView> Create(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const gin_helper::Dictionary& web_preferences);
|
|
|
|
|
|
|
|
// Return the cached constructor function.
|
|
|
|
static v8::Local<v8::Function> GetConstructor(v8::Isolate* isolate);
|
2018-05-07 07:04:33 +00:00
|
|
|
|
2020-04-09 07:01:16 +00:00
|
|
|
// gin_helper::Wrappable
|
2018-05-07 07:04:33 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
|
|
|
|
2020-04-09 07:01:16 +00:00
|
|
|
// Public APIs.
|
|
|
|
gin::Handle<WebContents> GetWebContents(v8::Isolate* isolate);
|
2024-01-10 22:23:35 +00:00
|
|
|
void SetBackgroundColor(std::optional<WrappedSkColor> color);
|
2020-04-09 07:01:16 +00:00
|
|
|
|
2022-11-07 18:15:57 +00:00
|
|
|
int NonClientHitTest(const gfx::Point& point) override;
|
|
|
|
|
2018-05-07 07:04:33 +00:00
|
|
|
protected:
|
2020-04-09 07:01:16 +00:00
|
|
|
// Takes an existing WebContents.
|
|
|
|
WebContentsView(v8::Isolate* isolate, gin::Handle<WebContents> web_contents);
|
2018-05-07 07:04:33 +00:00
|
|
|
~WebContentsView() override;
|
|
|
|
|
2018-05-21 01:50:26 +00:00
|
|
|
// content::WebContentsObserver:
|
|
|
|
void WebContentsDestroyed() override;
|
2018-05-16 10:29:44 +00:00
|
|
|
|
2023-12-13 21:01:03 +00:00
|
|
|
// views::ViewObserver
|
|
|
|
void OnViewAddedToWidget(views::View* view) override;
|
|
|
|
void OnViewRemovedFromWidget(views::View* view) override;
|
|
|
|
|
2018-05-07 07:04:33 +00:00
|
|
|
private:
|
2023-12-13 21:01:03 +00:00
|
|
|
static gin_helper::WrappableBase* New(gin_helper::Arguments* args);
|
2020-04-09 07:01:16 +00:00
|
|
|
|
2018-05-07 07:04:33 +00:00
|
|
|
// Keep a reference to v8 wrapper.
|
2018-05-16 10:29:44 +00:00
|
|
|
v8::Global<v8::Value> web_contents_;
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<api::WebContents> api_web_contents_;
|
2018-05-07 07:04:33 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2018-05-07 07:04:33 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_VIEW_H_
|