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.
49 lines
1.1 KiB
49 lines
1.1 KiB
/* |
|
SPDX-FileCopyrightText: 2022 Kai Uwe Broulik <kde@broulik.de> |
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QAbstractItemModel> |
|
#include <QObject> |
|
#include <QPointer> |
|
|
|
class JobAggregator : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(QAbstractItemModel *sourceModel READ sourceModel WRITE setSourceModel NOTIFY sourceModelChanged) |
|
|
|
Q_PROPERTY(int count READ count NOTIFY countChanged) |
|
|
|
Q_PROPERTY(QString summary READ summary NOTIFY summaryChanged) |
|
Q_PROPERTY(int percentage READ percentage NOTIFY percentageChanged) |
|
|
|
public: |
|
explicit JobAggregator(QObject *parent = nullptr); |
|
~JobAggregator() override; |
|
|
|
QAbstractItemModel *sourceModel() const; |
|
void setSourceModel(QAbstractItemModel *sourceModel); |
|
Q_SIGNAL void sourceModelChanged(); |
|
|
|
int count() const; |
|
Q_SIGNAL void countChanged(); |
|
|
|
QString summary() const; |
|
Q_SIGNAL void summaryChanged(); |
|
|
|
int percentage() const; |
|
Q_SIGNAL void percentageChanged(); |
|
|
|
private: |
|
void update(); |
|
|
|
QPointer<QAbstractItemModel> m_model; |
|
|
|
int m_count = 0; |
|
QString m_summary; |
|
int m_percentage = 0; |
|
};
|
|
|