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