2013-06-24 15:23:45 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright 2012 Sebastian Kügler <sebas@kde.org> *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PLUGINTEST_H
|
|
|
|
#define PLUGINTEST_H
|
|
|
|
|
2016-06-12 15:14:35 +02:00
|
|
|
#include <QApplication>
|
2013-06-24 15:23:45 +02:00
|
|
|
|
|
|
|
#include <Plasma/DataEngine>
|
|
|
|
|
|
|
|
class QCommandLineParser;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class PluginTestPrivate;
|
|
|
|
|
2016-06-12 15:14:35 +02:00
|
|
|
class PluginTest : public QApplication
|
2013-06-24 15:23:45 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-26 01:45:47 +02:00
|
|
|
public:
|
|
|
|
PluginTest(int &argc, char **argv, QCommandLineParser *parser);
|
|
|
|
virtual ~PluginTest();
|
|
|
|
|
|
|
|
void showPackageInfo(const QString &pluginName);
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void runMain();
|
|
|
|
bool loadKPlugin();
|
|
|
|
bool loadFromPlasma();
|
|
|
|
void loadKQPlugin();
|
|
|
|
void dataUpdated(QString s, Plasma::DataEngine::Data d);
|
|
|
|
|
|
|
|
private:
|
|
|
|
PluginTestPrivate *d;
|
2013-06-24 15:23:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|