File: testenv.cpp

package info (click to toggle)
quickflux 1.1.3%2Bgit20201110.2a37acf-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,036 kB
  • sloc: cpp: 2,874; makefile: 26
file content (34 lines) | stat: -rw-r--r-- 601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <QtQml>
#include "testenv.h"

TestEnv::TestEnv(QObject *parent) : QObject(parent)
{

}

QImage TestEnv::createQImage(int width, int height)
{
    return QImage(width,height,QImage::Format_RGB32);
}


static QObject *provider(QQmlEngine *engine, QJSEngine *scriptEngine) {
    Q_UNUSED(engine);
    Q_UNUSED(scriptEngine);

    TestEnv* object = new TestEnv();

    return object;
}

class TestEnvRegisterHelper {

public:
    TestEnvRegisterHelper() {
        qmlRegisterSingletonType<TestEnv>("QuickFlux", 1, 0, "TestEnv", provider);
    }
};

static TestEnvRegisterHelper registerHelper;