2017-04-27 20:26:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-02-26 16:07:39 +02:00
|
|
|
#ifndef NOTIFICATIONWIDGET_H
|
|
|
|
#define NOTIFICATIONWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
|
2016-04-04 22:02:03 -07:00
|
|
|
#include "desktop-widgets/kmessagewidget.h"
|
2015-02-26 16:07:39 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class NotificationWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
class NotificationWidget : public KMessageWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NotificationWidget(QWidget *parent = 0);
|
2022-02-09 16:58:19 -08:00
|
|
|
void setFuture(const QFuture<int> &future);
|
2015-02-26 16:07:39 +02:00
|
|
|
void showNotification(QString message, KMessageWidget::MessageType type);
|
|
|
|
void hideNotification();
|
2015-06-14 14:18:51 -07:00
|
|
|
QString getNotificationText();
|
2015-02-26 16:07:39 +02:00
|
|
|
|
2018-01-28 22:08:30 +01:00
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void showError(QString message);
|
2015-02-26 16:07:39 +02:00
|
|
|
private:
|
2022-02-09 16:58:19 -08:00
|
|
|
QFutureWatcher<int> future_watcher;
|
2015-02-26 16:07:39 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void finish();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NOTIFICATIONWIDGET_H
|