nodeguy/src/cpp/include/nodegui/QtWidgets/QTableWidget/ntablewidget.hpp
Atul R 86c3ef089c
Integration with Qode 2.0 (#400)
* Moves qt integration solely to the nodegui core addon

* Adds lint fixes

* moved to integration core

* cleans up export snippet

* revert package.json

* Add exit if app->exec finishes.

* lint fix

* Makes QApplication custom

* adds qobject to wrap of qapp

* Adds working qt run looper

* Adds font default

* Adds qt installer

* Updates qode integration to v2.0.1

* fix cpp lints

* Fixes lint and deps

* Adds miniqt installation

* adds setup mini qt script

* skips tests due to issues with jest

* fix config and download path for linux and windows

* Adds multiple artifact downloader

* fix qt config and compilation

* Fixes qode path for windows (now it can load dll's easily)

* Add compilation

* fix windows path setup

* use scripts directly

* enabled tests back

* fix ubuntu deps

* update to alpha release

* fix workflow

* adds more artifacts and funding field

* change to alpha v2

* update prebuild yml

* revert build action

* disabling prebuild for now

* switch to stable release 5.14.1

* version bump
2020-03-07 10:28:30 +01:00

78 lines
3.4 KiB
C++

#pragma once
#include <QTableWidget>
#include "Extras/Export/export.h"
#include "QtWidgets/QAbstractScrollArea/qabstractscrollarea_macro.h"
#include "core/NodeWidget/nodewidget.h"
#include "napi.h"
class DLL_EXPORT NTableWidget : public QTableWidget, public NodeWidget {
public:
Q_OBJECT
NODEWIDGET_IMPLEMENTATIONS(QTableWidget)
using QTableWidget::QTableWidget;
void connectSignalsToEventEmitter() {
// Qt Connects: Implement all signal connects here
QABSTRACTSCROLLAREA_SIGNALS
QObject::connect(
this, &QTableWidget::cellActivated, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellActivated"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::cellChanged, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellChanged"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::cellClicked, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellClicked"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::cellDoubleClicked, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellDoubleClicked"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::cellEntered, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellEntered"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::cellPressed, [=](int row, int column) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "cellPressed"),
Napi::Number::New(env, row),
Napi::Number::New(env, column)});
});
QObject::connect(
this, &QTableWidget::currentCellChanged,
[=](int currentRow, int currentColumn, int previousRow,
int previousColumn) {
Napi::Env env = this->emitOnNode.Env();
Napi::HandleScope scope(env);
this->emitOnNode.Call({Napi::String::New(env, "currentCellChanged"),
Napi::Number::New(env, currentRow),
Napi::Number::New(env, currentColumn),
Napi::Number::New(env, previousRow),
Napi::Number::New(env, previousColumn)});
});
}
};