| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | // Copyright (c) 2015 GitHub, Inc.
 | 
					
						
							|  |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:01:11 +02:00
										 |  |  | #ifndef ATOM_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
 | 
					
						
							|  |  |  | #define ATOM_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
 | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-18 15:06:57 -07:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2017-06-23 20:39:42 +10:00
										 |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2017-05-18 15:06:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:01:11 +02:00
										 |  |  | #include "atom/browser/notifications/notification.h"
 | 
					
						
							| 
									
										
										
										
											2018-11-11 06:21:40 +11:00
										 |  |  | #include "library_loaders/libnotify_loader.h"
 | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | #include "ui/base/glib/glib_signal.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:01:11 +02:00
										 |  |  | namespace atom { | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class LibnotifyNotification : public Notification { | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   LibnotifyNotification(NotificationDelegate* delegate, | 
					
						
							|  |  |  |                         NotificationPresenter* presenter); | 
					
						
							| 
									
										
										
										
											2018-04-17 16:03:51 -07:00
										 |  |  |   ~LibnotifyNotification() override; | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   static bool Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Notification:
 | 
					
						
							| 
									
										
										
										
											2017-06-24 21:03:27 +10:00
										 |  |  |   void Show(const NotificationOptions& options) override; | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  |   void Dismiss() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  private: | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |   CHROMEG_CALLBACK_0(LibnotifyNotification, | 
					
						
							|  |  |  |                      void, | 
					
						
							|  |  |  |                      OnNotificationClosed, | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  |                      NotifyNotification*); | 
					
						
							| 
									
										
										
										
											2018-04-17 21:46:27 -04:00
										 |  |  |   CHROMEG_CALLBACK_1(LibnotifyNotification, | 
					
						
							|  |  |  |                      void, | 
					
						
							|  |  |  |                      OnNotificationView, | 
					
						
							|  |  |  |                      NotifyNotification*, | 
					
						
							|  |  |  |                      char*); | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   NotifyNotification* notification_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   DISALLOW_COPY_AND_ASSIGN(LibnotifyNotification); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:01:11 +02:00
										 |  |  | }  // namespace atom
 | 
					
						
							| 
									
										
										
										
											2015-12-25 11:52:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 20:01:11 +02:00
										 |  |  | #endif  // ATOM_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
 |