2018-05-22 08:08:27 +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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/views/atom_api_layout_manager.h"
|
2018-05-22 08:08:27 +00:00
|
|
|
|
2019-03-12 00:13:43 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/api/constructor.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2018-05-22 08:08:27 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2018-05-22 08:08:27 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
LayoutManager::LayoutManager(views::LayoutManager* layout_manager)
|
|
|
|
: layout_manager_(layout_manager) {
|
|
|
|
DCHECK(layout_manager_);
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutManager::~LayoutManager() {
|
|
|
|
if (managed_by_us_)
|
|
|
|
delete layout_manager_;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<views::LayoutManager> LayoutManager::TakeOver() {
|
|
|
|
if (!managed_by_us_) // already taken over.
|
|
|
|
return nullptr;
|
|
|
|
managed_by_us_ = false;
|
|
|
|
return std::unique_ptr<views::LayoutManager>(layout_manager_);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
mate::WrappableBase* LayoutManager::New(mate::Arguments* args) {
|
|
|
|
args->ThrowError("LayoutManager can not be created directly");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void LayoutManager::BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2018-05-22 08:08:27 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
using electron::api::LayoutManager;
|
2018-05-22 08:08:27 +00: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();
|
|
|
|
mate::Dictionary dict(isolate, exports);
|
2019-04-30 00:40:39 +00:00
|
|
|
dict.Set("LayoutManager",
|
|
|
|
mate::CreateConstructor<LayoutManager>(
|
|
|
|
isolate, base::BindRepeating(&LayoutManager::New)));
|
2018-05-22 08:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_layout_manager, Initialize)
|