* 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
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <napi.h>
|
|
|
|
#include <QPointer>
|
|
|
|
#include "Extras/Export/export.h"
|
|
#include "QtCore/QObject/qobject_macro.h"
|
|
#include "napplication.hpp"
|
|
|
|
class DLL_EXPORT QApplicationWrap : public Napi::ObjectWrap<QApplicationWrap> {
|
|
QOBJECT_WRAPPED_METHODS_DECLARATION
|
|
|
|
private:
|
|
QPointer<NApplication> instance;
|
|
bool _wasManuallyCreated = false;
|
|
|
|
public:
|
|
static Napi::FunctionReference constructor;
|
|
static Napi::Object init(Napi::Env env, Napi::Object exports);
|
|
QApplicationWrap(const Napi::CallbackInfo& info);
|
|
~QApplicationWrap();
|
|
NApplication* getInternalInstance();
|
|
// Wrapped methods
|
|
Napi::Value processEvents(const Napi::CallbackInfo& info);
|
|
Napi::Value exec(const Napi::CallbackInfo& info);
|
|
Napi::Value quit(const Napi::CallbackInfo& info);
|
|
Napi::Value exit(const Napi::CallbackInfo& info);
|
|
Napi::Value setQuitOnLastWindowClosed(const Napi::CallbackInfo& info);
|
|
Napi::Value quitOnLastWindowClosed(const Napi::CallbackInfo& info);
|
|
};
|
|
|
|
namespace StaticQApplicationWrapMethods {
|
|
DLL_EXPORT Napi::Value instance(const Napi::CallbackInfo& info);
|
|
DLL_EXPORT Napi::Value clipboard(const Napi::CallbackInfo& info);
|
|
DLL_EXPORT Napi::Value style(const Napi::CallbackInfo& info);
|
|
} // namespace StaticQApplicationWrapMethods
|