2014-11-19 17:18:01 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the KDE project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Tomas Van Verrewegen <tomasvanverrewegen@telenet.be>
|
|
|
|
* Copyright (C) 2009 Lukas Appelhans <l.appelhans@gmx.de>
|
|
|
|
* Copyright (C) 2010 Matthias Fuchs <mat69@gmx.net>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published
|
|
|
|
* by the Free Software Foundation; either version 2 of the License,
|
|
|
|
* or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KGETRUNNER_H
|
|
|
|
#define KGETRUNNER_H
|
|
|
|
|
|
|
|
#include "kget_interface.h"
|
|
|
|
|
|
|
|
#include <Plasma/AbstractRunner>
|
|
|
|
#include <KIcon>
|
|
|
|
|
2019-05-23 00:08:45 +00:00
|
|
|
#include <QDBusConnectionInterface>
|
|
|
|
#include <QDBusPendingCallWatcher>
|
2014-11-19 17:18:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class KGetRunner
|
|
|
|
: public Plasma::AbstractRunner
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KGetRunner(QObject* parent, const QVariantList& args);
|
|
|
|
~KGetRunner();
|
|
|
|
|
|
|
|
void match(Plasma::RunnerContext& context);
|
|
|
|
void run(const Plasma::RunnerContext& context, const Plasma::QueryMatch& match);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void showNewTransferDialog();
|
|
|
|
void callFinished(QDBusPendingCallWatcher* call);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QStringList parseUrls(const QString& text) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QDBusConnectionInterface *m_interface;
|
|
|
|
OrgKdeKgetMainInterface *m_kget;
|
|
|
|
KIcon m_icon;
|
|
|
|
QStringList m_urls;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
K_EXPORT_PLASMA_RUNNER(kget, KGetRunner)
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|