nodeguy/src/cpp/include/nodegui/QtGui/QMovie/qmovie_wrap.h
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

44 lines
1.5 KiB
C++

#pragma once
#include <napi.h>
#include <QBuffer>
#include <QPointer>
#include <QSharedPointer>
#include "Extras/Export/export.h"
#include "QtCore/QObject/qobject_macro.h"
#include "nmovie.hpp"
class DLL_EXPORT QMovieWrap : public Napi::ObjectWrap<QMovieWrap> {
QOBJECT_WRAPPED_METHODS_DECLARATION
private:
QPointer<NMovie> instance;
QSharedPointer<QBuffer> bufferDevice;
public:
static Napi::Object init(Napi::Env env, Napi::Object exports);
QMovieWrap(const Napi::CallbackInfo& info);
~QMovieWrap();
NMovie* getInternalInstance();
// class constructor
static Napi::FunctionReference constructor;
// wrapped methods
Napi::Value setFileName(const Napi::CallbackInfo& info);
Napi::Value fileName(const Napi::CallbackInfo& info);
Napi::Value setFormat(const Napi::CallbackInfo& info);
Napi::Value format(const Napi::CallbackInfo& info);
Napi::Value setScaledSize(const Napi::CallbackInfo& info);
Napi::Value start(const Napi::CallbackInfo& info);
Napi::Value stop(const Napi::CallbackInfo& info);
Napi::Value setPaused(const Napi::CallbackInfo& info);
Napi::Value jumpToNextFrame(const Napi::CallbackInfo& info);
Napi::Value jumpToFrame(const Napi::CallbackInfo& info);
Napi::Value state(const Napi::CallbackInfo& info);
Napi::Value currentFrameNumber(const Napi::CallbackInfo& info);
Napi::Value currentPixmap(const Napi::CallbackInfo& info);
Napi::Value loadFromData(const Napi::CallbackInfo& info);
Napi::Value frameCount(const Napi::CallbackInfo& info);
};