Lomiri
Loading...
Searching...
No Matches
plugin.cpp
1/*
2 * Copyright (C) 2012-2017 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 "lomirisortfilterproxymodelqml.h"
32#include "lomirimenumodelpaths.h"
33#include "windowinputfilter.h"
34#include "windowstatestorage.h"
35#include "constants.h"
36#include "timezoneFormatter.h"
37#include "applicationsfiltermodel.h"
38#include "inputeventgenerator.h"
39#include "deviceconfig.h"
40#include "globalfunctions.h"
41#include "URLDispatcher.h"
42#include "appdrawerproxymodel.h"
43#include "tabfocusfence.h"
44#include "expressionfiltermodel.h"
45#include "quicklistproxymodel.h"
46#include "fileio.h"
47#include "displaycutoutsmodel.h"
48
49static QObject *createWindowStateStorage(QQmlEngine *engine, QJSEngine *scriptEngine)
50{
51 Q_UNUSED(engine)
52 Q_UNUSED(scriptEngine)
53 return new WindowStateStorage();
54}
55
56static QObject *createConstants(QQmlEngine *engine, QJSEngine *scriptEngine)
57{
58 Q_UNUSED(engine)
59 Q_UNUSED(scriptEngine)
60 return new Constants();
61}
62
63static QObject *createGlobalFunctions(QQmlEngine *engine, QJSEngine *scriptEngine)
64{
65 Q_UNUSED(engine)
66 Q_UNUSED(scriptEngine)
67 return new GlobalFunctions();
68}
69
70static QObject *createFileIo(QQmlEngine *engine, QJSEngine *scriptEngine)
71{
72 Q_UNUSED(engine)
73 Q_UNUSED(scriptEngine)
74 return new FileIo();
75}
76
77void UtilsPlugin::registerTypes(const char *uri)
78{
79 Q_ASSERT(uri == QLatin1String("Utils"));
80 qmlRegisterType<WindowInputMonitor>(uri, 0, 1, "WindowInputMonitor");
81#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
82 qmlRegisterAnonymousType<QAbstractItemModel>(uri, 0);
83#else
84 qmlRegisterType<QAbstractItemModel>();
85#endif
86 qmlRegisterType<QLimitProxyModelQML>(uri, 0, 1, "LimitProxyModel");
87 qmlRegisterType<LomiriSortFilterProxyModelQML>(uri, 0, 1, "LomiriSortFilterProxyModel");
88 qmlRegisterType<LomiriMenuModelPaths>(uri, 0, 1, "LomiriMenuModelPaths");
89 qmlRegisterType<WindowInputFilter>(uri, 0, 1, "WindowInputFilter");
90 qmlRegisterType<EasingCurve>(uri, 0, 1, "EasingCurve");
91 qmlRegisterSingletonType<WindowStateStorage>(uri, 0, 1, "WindowStateStorage", createWindowStateStorage);
92 qmlRegisterType<InputWatcher>(uri, 0, 1, "InputWatcher");
93 qmlRegisterSingletonType<Constants>(uri, 0, 1, "Constants", createConstants);
94 qmlRegisterSingletonType<TimezoneFormatter>(uri, 0, 1, "TimezoneFormatter",
95 [](QQmlEngine*, QJSEngine*) -> QObject* { return new TimezoneFormatter; });
96 qmlRegisterType<ActiveFocusLogger>(uri, 0, 1, "ActiveFocusLogger");
97 qmlRegisterType<ApplicationsFilterModel>(uri, 0, 1, "ApplicationsFilterModel");
98 qmlRegisterType<InputEventGenerator>(uri, 0, 1, "InputEventGenerator");
99 qmlRegisterType<DeviceConfig>(uri, 0, 1, "DeviceConfig");
100 qmlRegisterSingletonType<GlobalFunctions>(uri, 0, 1, "Functions", createGlobalFunctions);
101 qmlRegisterType<URLDispatcher>(uri, 0, 1, "URLDispatcher");
102 qmlRegisterType<AppDrawerProxyModel>(uri, 0, 1, "AppDrawerProxyModel");
103 qmlRegisterType<TabFocusFenceItem>(uri, 0, 1, "TabFocusFence");
104 qmlRegisterType<ExpressionFilterModel>(uri, 0, 1, "ExpressionFilterModel");
105 qmlRegisterType<QuickListProxyModel>(uri, 0, 1, "QuickListProxyModel");
106 qmlRegisterSingletonType<FileIo>(uri, 0, 1, "FileIo", createFileIo);
107 qmlRegisterType<DisplayCutoutsModel>(uri, 0, 1, "DisplayCutoutsModel");
108}
The Constants class.
Definition constants.h:29
The FileIo class.
Definition fileio.h:29
The GlobalFunctions class.