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