| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	void setFuture(const QFuture<void> &future); | 
					
						
							|  |  |  | 	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: | 
					
						
							| 
									
										
										
										
											2018-01-28 21:50:25 +01:00
										 |  |  | 	QFutureWatcher<void> future_watcher; | 
					
						
							| 
									
										
										
										
											2015-02-26 16:07:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private | 
					
						
							|  |  |  | slots: | 
					
						
							|  |  |  | 	void finish(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // NOTIFICATIONWIDGET_H
 |