| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright © 2013 Lars Uebernickel | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2022-05-18 09:12:45 +01:00
										 |  |  |  * SPDX-License-Identifier: LGPL-2.1-or-later | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2017-05-27 18:21:30 +02:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General | 
					
						
							| 
									
										
										
										
											2014-01-23 12:58:29 +01:00
										 |  |  |  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Authors: Lars Uebernickel <lars@uebernic.de> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __G_NOTIFICATION_PRIVATE_H__
 | 
					
						
							|  |  |  | #define __G_NOTIFICATION_PRIVATE_H__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gnotification.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const gchar *           g_notification_get_id                           (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const gchar *           g_notification_get_title                        (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const gchar *           g_notification_get_body                         (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-28 16:45:26 +02:00
										 |  |  | const gchar *           g_notification_get_category                     (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 12:19:09 -04:00
										 |  |  | GIcon *                 g_notification_get_icon                         (GNotification *notification); | 
					
						
							| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 15:42:31 +02:00
										 |  |  | GNotificationPriority   g_notification_get_priority                     (GNotification *notification); | 
					
						
							| 
									
										
										
										
											2013-10-15 11:21:10 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | guint                   g_notification_get_n_buttons                    (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void                    g_notification_get_button                       (GNotification  *notification, | 
					
						
							|  |  |  |                                                                          gint            index, | 
					
						
							|  |  |  |                                                                          gchar         **label, | 
					
						
							|  |  |  |                                                                          gchar         **action, | 
					
						
							|  |  |  |                                                                          GVariant      **target); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | gint                    g_notification_get_button_with_action           (GNotification *notification, | 
					
						
							|  |  |  |                                                                          const gchar   *action); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | gboolean                g_notification_get_default_action               (GNotification  *notification, | 
					
						
							|  |  |  |                                                                          gchar         **action, | 
					
						
							|  |  |  |                                                                          GVariant      **target); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GVariant *              g_notification_serialize                        (GNotification *notification); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |