* 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
22 lines
543 B
C++
22 lines
543 B
C++
#pragma once
|
|
#include <napi.h>
|
|
|
|
#include <QDateTimeEdit>
|
|
|
|
#include "Extras/Export/export.h"
|
|
#include "QtWidgets/QDateTimeEdit/qdatetimeedit_macro.h"
|
|
#include "core/NodeWidget/nodewidget.h"
|
|
|
|
class DLL_EXPORT NDateTimeEdit : public QDateTimeEdit, public NodeWidget {
|
|
Q_OBJECT
|
|
NODEWIDGET_IMPLEMENTATIONS(QDateTimeEdit)
|
|
public:
|
|
// inherit all constructors of QDateTimeEdit
|
|
using QDateTimeEdit::QDateTimeEdit;
|
|
|
|
void connectSignalsToEventEmitter() {
|
|
// Qt Connects: Implement all signal connects here
|
|
QDATETIMEEDIT_SIGNALS
|
|
}
|
|
};
|