subsurface/qt-ui/notificationwidget.cpp
Dirk Hohndel 0c44bc7271 Cloud storage: clear our last error if verification succeeds
This is cosmetic but makes things friendlier, I think.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-06-14 14:18:51 -07:00

42 lines
826 B
C++

#include "notificationwidget.h"
NotificationWidget::NotificationWidget(QWidget *parent) : KMessageWidget(parent)
{
future_watcher = new QFutureWatcher<void>();
connect(future_watcher, SIGNAL(finished()), this, SLOT(finish()));
}
void NotificationWidget::showNotification(QString message, KMessageWidget::MessageType type)
{
if (message.isEmpty())
return;
setText(message);
setCloseButtonVisible(true);
setMessageType(type);
animatedShow();
}
void NotificationWidget::hideNotification()
{
animatedHide();
}
QString NotificationWidget::getNotificationText()
{
return text();
}
void NotificationWidget::setFuture(const QFuture<void> &future)
{
future_watcher->setFuture(future);
}
void NotificationWidget::finish()
{
hideNotification();
}
NotificationWidget::~NotificationWidget()
{
delete future_watcher;
}