File indexing completed on 2024-04-14 15:31:38

0001 /*
0002  *   Copyright (C) 2016 by Aditya Mehra <aix.m@outlook.com>                      *
0003  *   This program is free software; you can redistribute it and/or modify
0004  *   it under the terms of the GNU Library General Public License as
0005  *   published by the Free Software Foundation; either version 2, or
0006  *   (at your option) any later version.
0007  *
0008  *   This program is distributed in the hope that it will be useful,
0009  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
0010  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0011  *   GNU General Public License for more details
0012  *
0013  *   You should have received a copy of the GNU Library General Public
0014  *   License along with this program; if not, write to the
0015  *   Free Software Foundation, Inc.,
0016  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
0017  */
0018 
0019 #ifndef PROTOTYPEPLASMOIDPLUGIN_H
0020 #define PROTOTYPEPLASMOIDPLUGIN_H
0021 
0022 #include <QQmlExtensionPlugin> 
0023 #include <QDBusAbstractAdaptor>
0024 #include <Plasma/Applet>
0025 
0026 class QQmlEngine;
0027 
0028 class MycroftPlasmoidMobilePlugin : public QQmlExtensionPlugin
0029 {
0030     Q_OBJECT
0031     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
0032 
0033 public:
0034     void registerTypes(const char *uri);
0035     void initializeEngine(QQmlEngine *engine, const char *uri) override;
0036     
0037 Q_SIGNAL
0038 };
0039 
0040 #endif // PROTOTYPEPLASMOIDPLUGIN_H