68 lines
1.8 KiB
C
68 lines
1.8 KiB
C
|
/*
|
||
|
* Copyright © 2008 Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Library General Public License version 2 as
|
||
|
* published by the Free Software Foundation
|
||
|
*
|
||
|
* This program 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 General Public License for more details
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License along with this program; if not, write to the
|
||
|
* Free Software Foundation, Inc.,
|
||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef REMOTEDATAENGINE_H
|
||
|
#define REMOTEDATAENGINE_H
|
||
|
|
||
|
#include <plasma/dataengine.h>
|
||
|
#include <plasma/private/remoteservice_p.h>
|
||
|
|
||
|
class JobView;
|
||
|
|
||
|
namespace Plasma
|
||
|
{
|
||
|
class Service;
|
||
|
class ServiceAccessJob;
|
||
|
|
||
|
class RemoteDataEngine : public Plasma::DataEngine
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
RemoteDataEngine(KUrl location, QObject* parent = 0, const QVariantList &args = QVariantList());
|
||
|
~RemoteDataEngine();
|
||
|
Plasma::Service* serviceForSource(const QString& source);
|
||
|
void setLocation(KUrl location);
|
||
|
|
||
|
//Plasma::Service* serviceForSource(const QString& source);
|
||
|
|
||
|
protected:
|
||
|
void init();
|
||
|
QStringList sources() const;
|
||
|
bool updateSourceEvent(const QString &source);
|
||
|
bool sourceRequestEvent(const QString &source);
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void serviceReady(Plasma::Service *service);
|
||
|
void remoteCallFinished(Plasma::ServiceJob *job);
|
||
|
void updateSources();
|
||
|
|
||
|
private:
|
||
|
Service *m_service;
|
||
|
QStringList m_sources;
|
||
|
bool m_callInProgress;
|
||
|
QMap<QString, RemoteService *> m_serviceForSource;
|
||
|
KUrl m_location;
|
||
|
QString m_uuid;
|
||
|
|
||
|
};
|
||
|
|
||
|
} // namespace Plasma
|
||
|
|
||
|
#endif
|