Unity 8
 All Classes Functions
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 "windowkeysfilter.h"
34 #include "easingcurve.h"
35 
36 void UtilsPlugin::registerTypes(const char *uri)
37 {
38  Q_ASSERT(uri == QLatin1String("Utils"));
39  qmlRegisterType<QAbstractItemModel>();
40  qmlRegisterType<QLimitProxyModelQML>(uri, 0, 1, "LimitProxyModel");
41  qmlRegisterType<QSortFilterProxyModelQML>(uri, 0, 1, "SortFilterProxyModel");
42  qmlRegisterType<UnityMenuModelPaths>(uri, 0, 1, "UnityMenuModelPaths");
43  qmlRegisterType<TimeFormatter>(uri, 0, 1, "TimeFormatter");
44  qmlRegisterType<WindowKeysFilter>(uri, 0, 1, "WindowKeysFilter");
45  qmlRegisterType<GDateTimeFormatter>(uri, 0, 1, "GDateTimeFormatter");
46  qmlRegisterType<EasingCurve>(uri, 0, 1, "EasingCurve");
47 }
48 
49 void UtilsPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
50 {
51  QQmlExtensionPlugin::initializeEngine(engine, uri);
52 }