Artifact d864db429ee571a3c96cc6c747c9b900c322f1f3:

  • File src/init.cxx — part of check-in [2cfda562a0] at 2018-11-18 09:51:31 on branch filter — Register `FilterImage` with QML (user: fifr size: 3501)

/*
 * Copyright (c) 2018 Frank Fischer <frank-fischer@shadow-soft.de>
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see  <http://www.gnu.org/licenses/>
 */

#include <QtCore/QCommandLineParser>
#include <QtCore/QTranslator>

#include <QtGui/QGuiApplication>
#include <QtQml/QQmlEngine>
#include <QtQml/QtQml>

#include "ColorizeImage.hxx"
#include "CutImage.hxx"
#include "PlainImage.hxx"
#include "RotImage.hxx"
#include "ZoomImage.hxx"

#include "ColorizeFilter.hxx"
#include "CutFilter.hxx"
#include "FilterImage.hxx"
#include "RotateFilter.hxx"
#include "ScanImage.hxx"

#include "Document.hxx"
#include "DocumentList.hxx"
#include "Global.hxx"

void init_app(QGuiApplication& app, QQmlEngine& engine)
{
    qmlRegisterSingletonType<Fotokopierer>(
        "Fotokopierer", 1, 0, "Fotokopierer", [](QQmlEngine*, QJSEngine*) -> QObject* {
            return new Fotokopierer();
        });

    qmlRegisterSingletonType<Document>(
        "Fotokopierer", 1, 0, "DocumentList", [](QQmlEngine*, QJSEngine*) -> QObject* {
            return new DocumentList;
        });

    qmlRegisterType<ColorizeImage>("Fotokopierer", 1, 0, "ColorizeImage");
    qmlRegisterType<CutImage>("Fotokopierer", 1, 0, "CutImage");
    qmlRegisterType<PlainImage>("Fotokopierer", 1, 0, "PlainImage");
    qmlRegisterType<RotImage>("Fotokopierer", 1, 0, "RotImage");
    qmlRegisterType<ZoomImage>("Fotokopierer", 1, 0, "ZoomImage");
    qmlRegisterType<FilterImage>("Fotokopierer", 1, 0, "FilterImage");
    qmlRegisterType<ScanImage>("Fotokopierer", 1, 0, "ScanImage");
    qmlRegisterUncreatableType<Document>(
        "Fotokopierer",
        1,
        0,
        "Document",
        QStringLiteral("Document cannot be used as QML component"));

    qmlRegisterUncreatableType<RotateFilter>(
        "Fotokopierer",
        1,
        0,
        "RotateFilter",
        QStringLiteral("RotateFilter cannot be used as QML component"));
    qmlRegisterUncreatableType<CutFilter>(
        "Fotokopierer",
        1,
        0,
        "CutFilter",
        QStringLiteral("RotateFilter cannot be used as QML component"));
    qmlRegisterUncreatableType<ColorizeFilter>(
        "Fotokopierer",
        1,
        0,
        "ColorizeFilter",
        QStringLiteral("RotateFilter cannot be used as QML component"));

    app.setApplicationName(QStringLiteral("Fotokopierer"));
    app.setApplicationVersion(QStringLiteral(QT_VERSION_STR));

    QTranslator qtTranslator;
    qtTranslator.load(QStringLiteral("harbour-fotokopierer-%1").arg(QLocale::system().name()),
                      QStringLiteral(":/translations/"));
    app.installTranslator(&qtTranslator);

    QCommandLineParser parser;
    parser.setApplicationDescription(QStringLiteral("Document Scanner"));
    parser.addHelpOption();
    parser.addVersionOption();
    parser.addPositionalArgument(QStringLiteral("file"), QStringLiteral("The image file to show"));
    parser.process(app);
}