From 0c881f0c1b77cf8876094e3647d1732210b954d1 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 21 Mar 2018 17:34:05 +0100 Subject: An extension mechanism load qml files at generic extension points. and forward the email via an extension api. --- extensions/api/src/extensionapiplugin.cpp | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 extensions/api/src/extensionapiplugin.cpp (limited to 'extensions/api/src/extensionapiplugin.cpp') diff --git a/extensions/api/src/extensionapiplugin.cpp b/extensions/api/src/extensionapiplugin.cpp new file mode 100644 index 00000000..3f399e36 --- /dev/null +++ b/extensions/api/src/extensionapiplugin.cpp @@ -0,0 +1,42 @@ +/* + Copyright (c) 2018 Christian Mollekopf + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public License as published by + the Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public + License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. +*/ + +#include "extensionapiplugin.h" + +#include "extensionapi.h" + +#include + +void ExtensionApiPlugin::initializeEngine(QQmlEngine *engine, const char *uri) +{ + Q_UNUSED(uri); + Q_UNUSED(engine); +} + +static QObject *extensionApiSingleton(QQmlEngine *engine, QJSEngine *scriptEngine) +{ + Q_UNUSED(engine) + Q_UNUSED(scriptEngine) + return new ExtensionApi; +} + +void ExtensionApiPlugin::registerTypes (const char *uri) +{ + qmlRegisterSingletonType(uri, 1, 0, "ExtensionApi", extensionApiSingleton); +} -- cgit v1.2.3