Unity 8
 All Classes Functions Properties
plugin.cpp
1 /*
2  * Copyright (C) 2012 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Author: MichaƂ Sawicz <michal.sawicz@canonical.com>
17  */
18 
19 // Qt
20 #include <QtQml/qqml.h>
21 #include <QDBusConnection>
22 #include <QQmlContext>
23 #include <QtQuick/QQuickWindow>
24 #include <QDebug>
25 // self
26 #include "plugin.h"
27 
28 // local
29 #include "qlimitproxymodelqml.h"
30 #include "qsortfilterproxymodelqml.h"
31 #include "timeformatter.h"
32 #include "unitymenumodelpaths.h"
33 #include "easingcurve.h"
34 
35 void UtilsPlugin::registerTypes(const char *uri)
36 {
37  Q_ASSERT(uri == QLatin1String("Utils"));
38  qmlRegisterType<QAbstractItemModel>();
39  qmlRegisterType<QLimitProxyModelQML>(uri, 0, 1, "LimitProxyModel");
40  qmlRegisterType<QSortFilterProxyModelQML>(uri, 0, 1, "SortFilterProxyModel");
41  qmlRegisterType<UnityMenuModelPaths>(uri, 0, 1, "UnityMenuModelPaths");
42  qmlRegisterType<TimeFormatter>(uri, 0, 1, "TimeFormatter");
43  qmlRegisterType<GDateTimeFormatter>(uri, 0, 1, "GDateTimeFormatter");
44  qmlRegisterType<EasingCurve>(uri, 0, 1, "EasingCurve");
45 }
46 
47 void UtilsPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
48 {
49  QQmlExtensionPlugin::initializeEngine(engine, uri);
50 }