2018-05-07 14:52:25 +09: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 12:19:40 -08:00
|
|
|
#include "shell/browser/api/electron_api_view.h"
|
2018-05-07 14:52:25 +09:00
|
|
|
|
2019-10-25 22:03:28 +09:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/node_includes.h"
|
2018-05-07 14:52:25 +09:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2018-05-07 14:52:25 +09:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2020-03-20 15:41:41 +09:00
|
|
|
View::View(views::View* view) : view_(view) {
|
2018-05-07 14:52:25 +09:00
|
|
|
view_->set_owned_by_client();
|
|
|
|
}
|
|
|
|
|
2020-03-20 15:41:41 +09:00
|
|
|
View::View() : View(new views::View()) {}
|
|
|
|
|
2018-05-07 16:04:33 +09:00
|
|
|
View::~View() {
|
|
|
|
if (delete_view_)
|
|
|
|
delete view_;
|
|
|
|
}
|
2018-05-07 14:52:25 +09:00
|
|
|
|
2020-03-28 15:44:57 +09:00
|
|
|
#if BUILDFLAG(ENABLE_VIEWS_API)
|
2019-10-25 22:03:28 +09:00
|
|
|
void View::AddChildView(gin::Handle<View> child) {
|
2018-05-23 13:30:57 +09:00
|
|
|
AddChildViewAt(child, child_views_.size());
|
|
|
|
}
|
|
|
|
|
2019-10-25 22:03:28 +09:00
|
|
|
void View::AddChildViewAt(gin::Handle<View> child, size_t index) {
|
2018-05-23 13:30:57 +09:00
|
|
|
if (index > child_views_.size())
|
|
|
|
return;
|
|
|
|
child_views_.emplace(child_views_.begin() + index, // index
|
|
|
|
isolate(), child->GetWrapper()); // v8::Global(args...)
|
|
|
|
view()->AddChildViewAt(child->view(), index);
|
|
|
|
}
|
2018-05-24 15:35:50 +09:00
|
|
|
#endif
|
2018-05-23 13:30:57 +09:00
|
|
|
|
2018-05-07 14:52:25 +09:00
|
|
|
// static
|
2019-12-05 18:46:34 +09:00
|
|
|
gin_helper::WrappableBase* View::New(gin::Arguments* args) {
|
2018-05-08 14:47:26 +09:00
|
|
|
auto* view = new View();
|
2019-10-15 10:15:23 +09:00
|
|
|
view->InitWithArgs(args);
|
2018-05-08 14:47:26 +09:00
|
|
|
return view;
|
2018-05-07 14:52:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void View::BuildPrototype(v8::Isolate* isolate,
|
2018-05-22 17:08:27 +09:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2019-10-25 22:03:28 +09:00
|
|
|
prototype->SetClassName(gin::StringToV8(isolate, "View"));
|
2020-03-28 15:44:57 +09:00
|
|
|
#if BUILDFLAG(ENABLE_VIEWS_API)
|
2019-10-25 22:03:28 +09:00
|
|
|
gin_helper::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2018-05-23 13:30:57 +09:00
|
|
|
.SetMethod("addChildView", &View::AddChildView)
|
|
|
|
.SetMethod("addChildViewAt", &View::AddChildViewAt);
|
2018-05-24 15:35:50 +09:00
|
|
|
#endif
|
2018-05-22 17:08:27 +09:00
|
|
|
}
|
2018-05-07 14:52:25 +09:00
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2018-05-07 14:52:25 +09:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
using electron::api::View;
|
2018-05-07 14:52:25 +09: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();
|
2019-04-24 11:29:59 -07:00
|
|
|
View::SetConstructor(isolate, base::BindRepeating(&View::New));
|
2018-05-07 14:52:25 +09:00
|
|
|
|
2019-10-25 22:03:28 +09:00
|
|
|
gin_helper::Dictionary constructor(
|
2019-01-09 11:17:05 -08:00
|
|
|
isolate,
|
|
|
|
View::GetConstructor(isolate)->GetFunction(context).ToLocalChecked());
|
2018-05-07 14:52:25 +09:00
|
|
|
|
2019-10-25 22:03:28 +09:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
2018-05-07 14:52:25 +09:00
|
|
|
dict.Set("View", constructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-02-14 03:25:39 -08:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_view, Initialize)
|