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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*
* This file is part of buteo-syncfw package
*
* Copyright (C) 2019-2021 Damien Caliste.
*
* Contact: Damien Caliste <dcaliste@free.fr>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#include <QtGlobal>
#include <QtQml>
#include <QQmlEngine>
#include <QQmlExtensionPlugin>
#include "profile/SyncResults.h"
#include "profile/SyncSchedule.h"
#include "syncmanager.h"
#include "syncresultmodel.h"
#include "multisyncresultmodel.h"
#include "syncprofilewatcher.h"
class Q_DECL_EXPORT ButeoProfilesPlugin : public QQmlExtensionPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "Buteo.Profiles")
public:
ButeoProfilesPlugin(){}
virtual ~ButeoProfilesPlugin() {}
void initializeEngine(QQmlEngine *engine, const char *uri)
{
Q_ASSERT(uri == QLatin1String("Buteo.Profiles"));
Q_UNUSED(engine)
Q_UNUSED(uri)
}
void registerTypes(const char *uri)
{
Q_ASSERT(uri == QLatin1String("Buteo.Profiles"));
qmlRegisterType<SyncManager>(uri, 0, 1, "SyncManager");
qmlRegisterUncreatableType<ProfileFilter>(uri, 0, 1, "ProfileFilter",
"ProfileFilter is used as a group property of SyncManager");
qmlRegisterType<SyncProfileWatcher>(uri, 0, 1, "SyncProfileWatcher");
qRegisterMetaType<Buteo::SyncSchedule>("SyncSchedule");
qmlRegisterUncreatableType<Buteo::SyncSchedule>(uri, 0, 1, "SyncSchedule",
"SyncSchedule is retrieved from a SyncProfileWatcher");
qmlRegisterType<SyncResultModel>(uri, 0, 1, "SyncResultModel");
qmlRegisterType<MultiSyncResultModel>(uri, 0, 1, "MultiSyncResultModel");
qRegisterMetaType<Buteo::SyncResults>();
qmlRegisterUncreatableType<Buteo::SyncResults>(uri, 0, 1, "SyncResults",
"SyncResults are retrieved from a SyncResultModel or a MultiSyncResultModel");
qRegisterMetaType<Buteo::TargetResults>();
qmlRegisterUncreatableType<Buteo::TargetResults>(uri, 0, 1, "TargetResults",
"TargetResults are retrieved from a SyncResults");
qRegisterMetaType<Buteo::ItemCounts>();
qmlRegisterUncreatableType<Buteo::ItemCounts>(uri, 0, 1, "ItemCounts",
"ItemCounts are retrieved from a TargetResults");
}
};
#include "plugin.moc"
|