You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.9 KiB
99 lines
2.9 KiB
/* |
|
* 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 KUISERVERENGINE_H |
|
#define KUISERVERENGINE_H |
|
|
|
#include <QVector> |
|
|
|
#include <Plasma/DataContainer> |
|
#include <Plasma/DataEngine> |
|
|
|
#include "jobsmodel.h" |
|
|
|
namespace NotificationManager |
|
{ |
|
class Job; |
|
} |
|
|
|
namespace Plasma |
|
{ |
|
class Service; |
|
} // namespace Plasma |
|
|
|
class KuiserverEngine : public Plasma::DataEngine |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
KuiserverEngine(QObject* parent, const QVariantList& args); |
|
~KuiserverEngine() override; |
|
|
|
void init(); |
|
|
|
Plasma::Service* serviceForSource(const QString& source) override; |
|
|
|
static QString sourceName(NotificationManager::Job *job); |
|
static uint jobId(const QString &sourceName); |
|
|
|
private: |
|
template<typename T, typename signal> void connectJobField( |
|
NotificationManager::Job *job, |
|
T (NotificationManager::Job::*getter)() const, |
|
signal changeSignal, |
|
const QString &targetFieldName) |
|
{ |
|
// Set value initially in case we missed the first change |
|
const QString source = sourceName(job); |
|
setData(source, targetFieldName, ((job)->*getter)()); |
|
// and then listen for changes |
|
connect(job, changeSignal, this, [=] { |
|
setData(source, targetFieldName, ((job)->*getter)()); |
|
}); |
|
} |
|
|
|
void updateDescriptionField( |
|
NotificationManager::Job *job, |
|
int number, |
|
QString (NotificationManager::Job::*labelGetter)() const, |
|
QString (NotificationManager::Job::*valueGetter)() const |
|
); |
|
|
|
void updateUnit( |
|
NotificationManager::Job *job, |
|
int number, |
|
const QString &unit, |
|
qulonglong (NotificationManager::Job::*processedGetter)() const, |
|
qulonglong (NotificationManager::Job::*totalGetter)() const |
|
); |
|
|
|
void registerJob(NotificationManager::Job *job); |
|
void removeJob(NotificationManager::Job *job); |
|
|
|
static QString speedString(qulonglong speed); |
|
|
|
void updateState(NotificationManager::Job *job); |
|
void updateSpeed(NotificationManager::Job *job); |
|
void updateEta(NotificationManager::Job *job); |
|
|
|
NotificationManager::JobsModel::Ptr m_jobsModel; |
|
|
|
QVector<NotificationManager::Job *> m_jobs; |
|
}; |
|
|
|
#endif
|
|
|