[libnotify] Introduce notify_notification_set_image_from_pixbuf



commit 117a582b9b69a3df043abe98fb6914a2599ecaa4
Author: Aurélien Gâteau <aurelien gateau canonical com>
Date:   Fri Jan 29 05:58:38 2010 -0500

    Introduce notify_notification_set_image_from_pixbuf
    
    Same as notify_notification_set_icon_from_pixbuf, but with a more explicit name.
    notify_notification_set_icon_from_pixbuf is marked as deprecated.

 libnotify/notification.c |   32 +++++++++++++++++++++++++-------
 libnotify/notification.h |    2 ++
 2 files changed, 27 insertions(+), 7 deletions(-)
---
diff --git a/libnotify/notification.c b/libnotify/notification.c
index 3afcd54..4abd6d1 100644
--- a/libnotify/notification.c
+++ b/libnotify/notification.c
@@ -969,6 +969,7 @@ _gvalue_array_append_byte_array (GValueArray *array,
  * @icon: The icon.
  *
  * Sets the icon in the notification from a #GdkPixbuf.
+ * Deprecated: use notify_notification_set_image_from_pixbuf() instead.
  *
  * This will only work when libnotify is compiled against D-BUS 0.60 or
  * higher.
@@ -977,6 +978,23 @@ void
 notify_notification_set_icon_from_pixbuf (NotifyNotification *notification,
                                           GdkPixbuf          *icon)
 {
+        notify_notification_set_image_from_pixbuf (notification, icon);
+}
+
+/**
+ * notify_notification_set_image_from_pixbuf:
+ * @notification: The notification.
+ * @pixbuf: The image.
+ *
+ * Sets the image in the notification from a #GdkPixbuf.
+ *
+ * This will only work when libnotify is compiled against D-BUS 0.60 or
+ * higher.
+ */
+void
+notify_notification_set_image_from_pixbuf (NotifyNotification *notification,
+                                           GdkPixbuf          *pixbuf)
+{
 #if CHECK_DBUS_VERSION(0, 60)
         gint            width;
         gint            height;
@@ -994,15 +1012,15 @@ notify_notification_set_icon_from_pixbuf (NotifyNotification *notification,
         g_return_if_fail (NOTIFY_IS_NOTIFICATION (notification));
 
 #if CHECK_DBUS_VERSION(0, 60)
-        width = gdk_pixbuf_get_width (icon);
-        height = gdk_pixbuf_get_height (icon);
-        rowstride = gdk_pixbuf_get_rowstride (icon);
-        n_channels = gdk_pixbuf_get_n_channels (icon);
-        bits_per_sample = gdk_pixbuf_get_bits_per_sample (icon);
+        width = gdk_pixbuf_get_width (pixbuf);
+        height = gdk_pixbuf_get_height (pixbuf);
+        rowstride = gdk_pixbuf_get_rowstride (pixbuf);
+        n_channels = gdk_pixbuf_get_n_channels (pixbuf);
+        bits_per_sample = gdk_pixbuf_get_bits_per_sample (pixbuf);
         image_len = (height - 1) * rowstride + width *
                 ((n_channels * bits_per_sample + 7) / 8);
 
-        image = gdk_pixbuf_get_pixels (icon);
+        image = gdk_pixbuf_get_pixels (pixbuf);
 
         image_struct = g_value_array_new (1);
 
@@ -1010,7 +1028,7 @@ notify_notification_set_icon_from_pixbuf (NotifyNotification *notification,
         _gvalue_array_append_int (image_struct, height);
         _gvalue_array_append_int (image_struct, rowstride);
         _gvalue_array_append_bool (image_struct,
-                                   gdk_pixbuf_get_has_alpha (icon));
+                                   gdk_pixbuf_get_has_alpha (pixbuf));
         _gvalue_array_append_int (image_struct, bits_per_sample);
         _gvalue_array_append_int (image_struct, n_channels);
         _gvalue_array_append_byte_array (image_struct, image, image_len);
diff --git a/libnotify/notification.h b/libnotify/notification.h
index 0b95cd9..7a6ddcc 100644
--- a/libnotify/notification.h
+++ b/libnotify/notification.h
@@ -119,6 +119,8 @@ void                notify_notification_set_urgency           (NotifyNotificatio
 
 void                notify_notification_set_icon_from_pixbuf  (NotifyNotification *notification,
                                                                GdkPixbuf          *icon);
+void                notify_notification_set_image_from_pixbuf (NotifyNotification *notification,
+                                                               GdkPixbuf          *image);
 
 void                notify_notification_set_hint_int32        (NotifyNotification *notification,
                                                                const char         *key,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]