diff options
Diffstat (limited to 'desktop-widgets/notificationwidget.h')
-rw-r--r-- | desktop-widgets/notificationwidget.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/desktop-widgets/notificationwidget.h b/desktop-widgets/notificationwidget.h new file mode 100644 index 000000000..8a551a0b3 --- /dev/null +++ b/desktop-widgets/notificationwidget.h @@ -0,0 +1,32 @@ +#ifndef NOTIFICATIONWIDGET_H +#define NOTIFICATIONWIDGET_H + +#include <QWidget> +#include <QFutureWatcher> + +#include <kmessagewidget.h> + +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(); + QString getNotificationText(); + ~NotificationWidget(); + +private: + QFutureWatcher<void> *future_watcher; + +private +slots: + void finish(); +}; + +#endif // NOTIFICATIONWIDGET_H |