32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
|
|
#include "Extras/Export/export.h"
|
|
#include "QtWidgets/QFrame/qframe_macro.h"
|
|
#include "QtWidgets/QWidget/qwidget_macro.h"
|
|
#include "core/NodeWidget/nodewidget.h"
|
|
|
|
class DLL_EXPORT NLabel : public QLabel, public NodeWidget {
|
|
Q_OBJECT
|
|
NODEWIDGET_IMPLEMENTATIONS(QLabel)
|
|
public:
|
|
using QLabel::QLabel; // inherit all constructors of QLabel
|
|
|
|
void connectSignalsToEventEmitter() {
|
|
QFRAME_SIGNALS
|
|
QObject::connect(this, &QLabel::linkActivated, [=](const QString& link) {
|
|
Napi::Env env = this->emitOnNode.Env();
|
|
Napi::HandleScope scope(env);
|
|
this->emitOnNode.Call({Napi::String::New(env, "linkActivated"),
|
|
Napi::String::New(env, link.toStdString())});
|
|
});
|
|
QObject::connect(this, &QLabel::linkHovered, [=](const QString& link) {
|
|
Napi::Env env = this->emitOnNode.Env();
|
|
Napi::HandleScope scope(env);
|
|
this->emitOnNode.Call({Napi::String::New(env, "linkHovered"),
|
|
Napi::String::New(env, link.toStdString())});
|
|
});
|
|
}
|
|
};
|