]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/gossip-private-chat.c
[darcs-to-svn @ move some code from GossipPrivateChat to GossipChatView]
[empathy.git] / libempathy-gtk / gossip-private-chat.c
index c9a44bf04dd58a713ca6d37348429bbec8356f6a..17c55b19cba98dbb0b08343f6c233e46cdcfcb60 100644 (file)
@@ -453,45 +453,3 @@ gossip_private_chat_new_with_channel (GossipContact *contact,
        return chat;
 }
 
-/* Pads a pixbuf to the specified size, by centering it in a larger transparent
- * pixbuf. Returns a new ref.
- */
-#if 0
-FIXME:
-static GdkPixbuf *
-private_chat_pad_to_size (GdkPixbuf *pixbuf,
-                         gint       width,
-                         gint       height,
-                         gint       extra_padding_right)
-{
-       gint       src_width, src_height;
-       GdkPixbuf *padded;
-       gint       x_offset, y_offset;
-
-       src_width = gdk_pixbuf_get_width (pixbuf);
-       src_height = gdk_pixbuf_get_height (pixbuf);
-
-       x_offset = (width - src_width) / 2;
-       y_offset = (height - src_height) / 2;
-
-       padded = gdk_pixbuf_new (gdk_pixbuf_get_colorspace (pixbuf),
-                                TRUE, /* alpha */
-                                gdk_pixbuf_get_bits_per_sample (pixbuf),
-                                width + extra_padding_right,
-                                height);
-
-       gdk_pixbuf_fill (padded, 0);
-
-       gdk_pixbuf_copy_area (pixbuf,
-                             0, /* source coords */
-                             0,
-                             src_width,
-                             src_height,
-                             padded,
-                             x_offset, /* dest coords */
-                             y_offset);
-
-       return padded;
-}
-#endif
-