Unity 8
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 "unitysortfilterproxymodelqml.h"
31 #include "relativetimeformatter.h"
32 #include "timeformatter.h"
33 #include "unitymenumodelpaths.h"
34 #include "windowkeysfilter.h"
35 #include "easingcurve.h"
36 #include "windowstatestorage.h"
37 
38 static QObject *createWindowStateStorage(QQmlEngine *engine, QJSEngine *scriptEngine)
39 {
40  Q_UNUSED(engine)
41  Q_UNUSED(scriptEngine)
42  return new WindowStateStorage();
43 }
44 
45 void UtilsPlugin::registerTypes(const char *uri)
46 {
47  Q_ASSERT(uri == QLatin1String("Utils"));
48  qmlRegisterType<QAbstractItemModel>();
49  qmlRegisterType<QLimitProxyModelQML>(uri, 0, 1, "LimitProxyModel");
50  qmlRegisterType<UnitySortFilterProxyModelQML>(uri, 0, 1, "UnitySortFilterProxyModel");
51  qmlRegisterType<UnityMenuModelPaths>(uri, 0, 1, "UnityMenuModelPaths");
52  qmlRegisterType<TimeFormatter>(uri, 0, 1, "TimeFormatter");
53  qmlRegisterType<WindowKeysFilter>(uri, 0, 1, "WindowKeysFilter");
54  qmlRegisterType<GDateTimeFormatter>(uri, 0, 1, "GDateTimeFormatter");
55  qmlRegisterType<EasingCurve>(uri, 0, 1, "EasingCurve");
56  qmlRegisterType<RelativeTimeFormatter>(uri, 0, 1, "RelativeTimeFormatter");
57  qmlRegisterSingletonType<WindowStateStorage>(uri, 0, 1, "WindowStateStorage", createWindowStateStorage);
58 }
59 
60 void UtilsPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
61 {
62  QQmlExtensionPlugin::initializeEngine(engine, uri);
63 }