Artifact c16d980e6d7fbffd0a012219b378ea6e0854fc17:

  • File src/init.cxx — part of check-in [ce2ed4f149] at 2018-10-24 16:17:18 on branch trunk — New implementation of images without image provider (user: fifr size: 2126)

/*
 * 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 "Util.hxx"

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

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

    QTranslator qtTranslator;
    qtTranslator.load(QLatin1String("harbour-fotokopierer-") + QLocale::system().name(),
                      QLatin1String(":/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);
}