gnotification.h 4.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright © 2013 Lars Uebernickel
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General
  15. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Authors: Lars Uebernickel <lars@uebernic.de>
  18. */
  19. #ifndef __G_NOTIFICATION_H__
  20. #define __G_NOTIFICATION_H__
  21. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  22. #error "Only <gio/gio.h> can be included directly."
  23. #endif
  24. #include <gio/giotypes.h>
  25. #include <gio/gioenums.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_NOTIFICATION (g_notification_get_type ())
  28. #define G_NOTIFICATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NOTIFICATION, GNotification))
  29. #define G_IS_NOTIFICATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NOTIFICATION))
  30. GLIB_AVAILABLE_IN_2_40
  31. GType g_notification_get_type (void) G_GNUC_CONST;
  32. GLIB_AVAILABLE_IN_2_40
  33. GNotification * g_notification_new (const gchar *title);
  34. GLIB_AVAILABLE_IN_2_40
  35. void g_notification_set_title (GNotification *notification,
  36. const gchar *title);
  37. GLIB_AVAILABLE_IN_2_40
  38. void g_notification_set_body (GNotification *notification,
  39. const gchar *body);
  40. GLIB_AVAILABLE_IN_2_40
  41. void g_notification_set_icon (GNotification *notification,
  42. GIcon *icon);
  43. GLIB_DEPRECATED_IN_2_42_FOR(g_notification_set_priority)
  44. void g_notification_set_urgent (GNotification *notification,
  45. gboolean urgent);
  46. GLIB_AVAILABLE_IN_2_42
  47. void g_notification_set_priority (GNotification *notification,
  48. GNotificationPriority priority);
  49. GLIB_AVAILABLE_IN_2_40
  50. void g_notification_add_button (GNotification *notification,
  51. const gchar *label,
  52. const gchar *detailed_action);
  53. GLIB_AVAILABLE_IN_2_40
  54. void g_notification_add_button_with_target (GNotification *notification,
  55. const gchar *label,
  56. const gchar *action,
  57. const gchar *target_format,
  58. ...);
  59. GLIB_AVAILABLE_IN_2_40
  60. void g_notification_add_button_with_target_value (GNotification *notification,
  61. const gchar *label,
  62. const gchar *action,
  63. GVariant *target);
  64. GLIB_AVAILABLE_IN_2_40
  65. void g_notification_set_default_action (GNotification *notification,
  66. const gchar *detailed_action);
  67. GLIB_AVAILABLE_IN_2_40
  68. void g_notification_set_default_action_and_target (GNotification *notification,
  69. const gchar *action,
  70. const gchar *target_format,
  71. ...);
  72. GLIB_AVAILABLE_IN_2_40
  73. void g_notification_set_default_action_and_target_value (GNotification *notification,
  74. const gchar *action,
  75. GVariant *target);
  76. G_END_DECLS
  77. #endif