You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
/* |
|
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "okularplugin.h" |
|
|
|
#include "documentitem.h" |
|
#include "gui/certificatemodel.h" |
|
#include "okularsingleton.h" |
|
#include "pageitem.h" |
|
#include "thumbnailitem.h" |
|
|
|
#include <QApplication> |
|
#include <QPluginLoader> |
|
#include <QQmlEngine> |
|
|
|
void OkularPlugin::registerTypes(const char *uri) |
|
{ |
|
if (!qobject_cast<QApplication *>(qApp)) { |
|
qWarning() << "The Okular QML components require a QApplication"; |
|
return; |
|
} |
|
if (QString::fromLocal8Bit(uri) != QLatin1String("org.kde.okular")) { |
|
return; |
|
} |
|
qmlRegisterSingletonType<OkularSingleton>(uri, 2, 0, "Okular", [](QQmlEngine *, QJSEngine *) -> QObject * { return new OkularSingleton; }); |
|
qmlRegisterType<DocumentItem>(uri, 2, 0, "DocumentItem"); |
|
qmlRegisterType<PageItem>(uri, 2, 0, "PageItem"); |
|
qmlRegisterType<ThumbnailItem>(uri, 2, 0, "ThumbnailItem"); |
|
qmlRegisterUncreatableType<CertificateModel>(uri, 2, 0, "CertificateModel", QStringLiteral("Do not create objects of this type.")); |
|
}
|
|
|