Unity 8
plugin.cpp
1 /*
2  * Copyright (C) 2012-2015 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 
17 // Qt
18 #include <QtQml/qqml.h>
19 #include <QDBusConnection>
20 #include <QQmlContext>
21 #include <QtQuick/QQuickWindow>
22 // self
23 #include "plugin.h"
24 
25 // local
26 #include "activefocuslogger.h"
27 #include "easingcurve.h"
28 #include "WindowInputMonitor.h"
29 #include "inputwatcher.h"
30 #include "qlimitproxymodelqml.h"
31 #include "unitysortfilterproxymodelqml.h"
32 #include "unitymenumodelpaths.h"
33 #include "windowinputfilter.h"
34 #include "windowscreenshotprovider.h"
35 #include "windowstatestorage.h"
36 #include "constants.h"
37 #include "timezoneFormatter.h"
38 #include "applicationsfiltermodel.h"
39 #include "inputeventgenerator.h"
40 #include "deviceconfigparser.h"
41 #include "globalfunctions.h"
42 
43 static QObject *createWindowStateStorage(QQmlEngine *engine, QJSEngine *scriptEngine)
44 {
45  Q_UNUSED(engine)
46  Q_UNUSED(scriptEngine)
47  return new WindowStateStorage();
48 }
49 
50 static QObject *createConstants(QQmlEngine *engine, QJSEngine *scriptEngine)
51 {
52  Q_UNUSED(engine)
53  Q_UNUSED(scriptEngine)
54  return new Constants();
55 }
56 
57 static QObject *createGlobalFunctions(QQmlEngine *engine, QJSEngine *scriptEngine)
58 {
59  Q_UNUSED(engine)
60  Q_UNUSED(scriptEngine)
61  return new GlobalFunctions();
62 }
63 
64 void UtilsPlugin::registerTypes(const char *uri)
65 {
66  Q_ASSERT(uri == QLatin1String("Utils"));
67  qmlRegisterType<WindowInputMonitor>(uri, 0, 1, "WindowInputMonitor");
68  qmlRegisterType<QAbstractItemModel>();
69  qmlRegisterType<QLimitProxyModelQML>(uri, 0, 1, "LimitProxyModel");
70  qmlRegisterType<UnitySortFilterProxyModelQML>(uri, 0, 1, "UnitySortFilterProxyModel");
71  qmlRegisterType<UnityMenuModelPaths>(uri, 0, 1, "UnityMenuModelPaths");
72  qmlRegisterType<WindowInputFilter>(uri, 0, 1, "WindowInputFilter");
73  qmlRegisterType<EasingCurve>(uri, 0, 1, "EasingCurve");
74  qmlRegisterSingletonType<WindowStateStorage>(uri, 0, 1, "WindowStateStorage", createWindowStateStorage);
75  qmlRegisterType<InputWatcher>(uri, 0, 1, "InputWatcher");
76  qmlRegisterSingletonType<Constants>(uri, 0, 1, "Constants", createConstants);
77  qmlRegisterSingletonType<TimezoneFormatter>(uri, 0, 1, "TimezoneFormatter",
78  [](QQmlEngine*, QJSEngine*) -> QObject* { return new TimezoneFormatter; });
79  qmlRegisterType<ActiveFocusLogger>(uri, 0, 1, "ActiveFocusLogger");
80  qmlRegisterType<ApplicationsFilterModel>(uri, 0, 1, "ApplicationsFilterModel");
81  qmlRegisterType<InputEventGenerator>(uri, 0, 1, "InputEventGenerator");
82  qmlRegisterType<DeviceConfigParser>(uri, 0, 1, "DeviceConfigParser");
83  qmlRegisterSingletonType<GlobalFunctions>(uri, 0, 1, "Functions", createGlobalFunctions);
84 }
85 
86 void UtilsPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
87 {
88  QQmlExtensionPlugin::initializeEngine(engine, uri);
89 
90  engine->addImageProvider(QStringLiteral("window"), new WindowScreenshotProvider);
91 }
The Constants class.
Definition: constants.h:29
The GlobalFunctions class.