71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
#include "QtWidgets/QCheckBox/qcheckbox_wrap.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include "Extras/Utils/nutils.h"
|
|
#include "QtWidgets/QWidget/qwidget_wrap.h"
|
|
|
|
Napi::FunctionReference QCheckBoxWrap::constructor;
|
|
|
|
Napi::Object QCheckBoxWrap::init(Napi::Env env, Napi::Object exports) {
|
|
Napi::HandleScope scope(env);
|
|
char CLASSNAME[] = "QCheckBox";
|
|
Napi::Function func = DefineClass(
|
|
env, CLASSNAME,
|
|
{InstanceMethod("checkState", &QCheckBoxWrap::checkState),
|
|
InstanceMethod("setCheckState", &QCheckBoxWrap::setCheckState),
|
|
QABSTRACTBUTTON_WRAPPED_METHODS_EXPORT_DEFINE(QCheckBoxWrap)});
|
|
constructor = Napi::Persistent(func);
|
|
exports.Set(CLASSNAME, func);
|
|
return exports;
|
|
}
|
|
|
|
NCheckBox* QCheckBoxWrap::getInternalInstance() { return this->instance; }
|
|
|
|
QCheckBoxWrap::QCheckBoxWrap(const Napi::CallbackInfo& info)
|
|
: Napi::ObjectWrap<QCheckBoxWrap>(info) {
|
|
Napi::Env env = info.Env();
|
|
this->disableDeletion = false;
|
|
if (info.Length() > 0 && info[0].IsExternal()) {
|
|
// --- if external ---
|
|
this->instance = info[0].As<Napi::External<NCheckBox>>().Data();
|
|
if (info.Length() == 2) {
|
|
this->disableDeletion = info[1].As<Napi::Boolean>().Value();
|
|
}
|
|
} else {
|
|
if (info.Length() == 1) {
|
|
Napi::Object parentObject = info[0].As<Napi::Object>();
|
|
NodeWidgetWrap* parentWidgetWrap =
|
|
Napi::ObjectWrap<NodeWidgetWrap>::Unwrap(parentObject);
|
|
this->instance = new NCheckBox(parentWidgetWrap->getInternalInstance());
|
|
} else if (info.Length() == 0) {
|
|
this->instance = new NCheckBox();
|
|
} else {
|
|
Napi::TypeError::New(env, "Wrong number of arguments")
|
|
.ThrowAsJavaScriptException();
|
|
}
|
|
}
|
|
this->rawData = extrautils::configureQWidget(
|
|
this->getInternalInstance(), this->getInternalInstance()->getFlexNode(),
|
|
true);
|
|
}
|
|
|
|
QCheckBoxWrap::~QCheckBoxWrap() {
|
|
if (!this->disableDeletion) {
|
|
extrautils::safeDelete(this->instance);
|
|
}
|
|
}
|
|
|
|
Napi::Value QCheckBoxWrap::checkState(const Napi::CallbackInfo& info) {
|
|
Napi::Env env = info.Env();
|
|
Qt::CheckState state = this->instance->checkState();
|
|
return Napi::Value::From(env, static_cast<int>(state));
|
|
}
|
|
|
|
Napi::Value QCheckBoxWrap::setCheckState(const Napi::CallbackInfo& info) {
|
|
Napi::Env env = info.Env();
|
|
int state = info[0].As<Napi::Number>().Int32Value();
|
|
this->instance->setCheckState(static_cast<Qt::CheckState>(state));
|
|
return env.Null();
|
|
}
|