2018-05-06 23:52:25 -06: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.
|
|
|
|
|
2020-02-04 13:19:40 -07:00
|
|
|
#include "shell/browser/api/electron_api_view.h"
|
2018-05-06 23:52:25 -06:00
|
|
|
|
2019-10-25 07:03:28 -06:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/common/node_includes.h"
|
2018-05-06 23:52:25 -06:00
|
|
|
|
2022-06-29 13:55:47 -06:00
|
|
|
namespace electron::api {
|
2018-05-06 23:52:25 -06:00
|
|
|
|
2020-03-20 00:41:41 -06:00
|
|
|
View::View(views::View* view) : view_(view) {
|
2018-05-06 23:52:25 -06:00
|
|
|
view_->set_owned_by_client();
|
|
|
|
}
|
|
|
|
|
2020-03-20 00:41:41 -06:00
|
|
|
View::View() : View(new views::View()) {}
|
|
|
|
|
2018-05-07 01:04:33 -06:00
|
|
|
View::~View() {
|
|
|
|
if (delete_view_)
|
|
|
|
delete view_;
|
|
|
|
}
|
2018-05-06 23:52:25 -06:00
|
|
|
|
|
|
|
// static
|
2019-12-05 02:46:34 -07:00
|
|
|
gin_helper::WrappableBase* View::New(gin::Arguments* args) {
|
2024-01-22 09:53:02 -07:00
|
|
|
auto* view = new View();
|
2019-10-14 19:15:23 -06:00
|
|
|
view->InitWithArgs(args);
|
2018-05-07 23:47:26 -06:00
|
|
|
return view;
|
2018-05-06 23:52:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void View::BuildPrototype(v8::Isolate* isolate,
|
2018-05-22 02:08:27 -06:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2019-10-25 07:03:28 -06:00
|
|
|
prototype->SetClassName(gin::StringToV8(isolate, "View"));
|
2018-05-22 02:08:27 -06:00
|
|
|
}
|
2018-05-06 23:52:25 -06:00
|
|
|
|
2022-06-29 13:55:47 -06:00
|
|
|
} // namespace electron::api
|
2018-05-06 23:52:25 -06:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
using electron::api::View;
|
2018-05-06 23:52:25 -06:00
|
|
|
|
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2024-01-22 09:53:02 -07:00
|
|
|
View::SetConstructor(isolate, base::BindRepeating(&View::New));
|
|
|
|
|
|
|
|
gin_helper::Dictionary constructor(
|
|
|
|
isolate,
|
|
|
|
View::GetConstructor(isolate)->GetFunction(context).ToLocalChecked());
|
2018-05-06 23:52:25 -06:00
|
|
|
|
2019-10-25 07:03:28 -06:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
2024-01-22 09:53:02 -07:00
|
|
|
dict.Set("View", constructor);
|
2018-05-06 23:52:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2023-02-08 18:31:38 -07:00
|
|
|
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_view, Initialize)
|