Artifact 2c4b3f35d9b93ada402ae5beb68d771b0359978a:

  • File src/init.cxx — part of check-in [b59c84ea54] at 2018-10-29 21:39:40 on branch trunk — Add Document and Page classes for representing scanned documents (user: fifr size: 2721)

/*
 * 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 "Thumbnail.hxx"
#include "ZoomImage.hxx"

#include "Document.hxx"
#include "Page.hxx"
#include "Util.hxx"

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

    qmlRegisterSingletonType<Document>(
        "Fotokopierer", 1, 0, "TestDocument", [](QQmlEngine*, QJSEngine*) -> QObject* {
            auto doc = new Document;
            doc->save();
            return doc;
        });

    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");
    qmlRegisterUncreatableType<Page>(
        "Fotokopierer", 1, 0, "ScannedPage", QObject::tr("ScannedPage objects cannot be created"));
    qmlRegisterType<Thumbnail>("Fotokopierer", 1, 0, "Thumbnail");

    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);
}