| 636 GdkPixbuf *gdk_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, |
636 GdkPixbuf *gdk_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, |
| 637 gboolean preserve_aspect_ratio, |
637 gboolean preserve_aspect_ratio, |
| 638 GError **error); |
638 GError **error); |
| 639 #endif |
639 #endif |
| 640 |
640 |
| |
641 #ifndef PURPLE_DISABLE_DEPRECATED |
| 641 /** |
642 /** |
| 642 * Set or unset a custom buddyicon for a user. |
643 * Set or unset a custom buddyicon for a user. |
| 643 * |
644 * |
| 644 * @param account The account the user belongs to. |
645 * @param account The account the user belongs to. |
| 645 * @param who The name of the user. |
646 * @param who The name of the user. |
| 646 * @param filename The path of the custom icon. If this is @c NULL, then any |
647 * @param filename The path of the custom icon. If this is @c NULL, then any |
| 647 * previously set custom buddy icon for the user is removed. |
648 * previously set custom buddy icon for the user is removed. |
| |
649 * @deprecated See purple_buddy_icons_node_set_custom_icon_from_file() |
| 648 */ |
650 */ |
| 649 void pidgin_set_custom_buddy_icon(PurpleAccount *account, const char *who, const char *filename); |
651 void pidgin_set_custom_buddy_icon(PurpleAccount *account, const char *who, const char *filename); |
| |
652 #endif |
| 650 |
653 |
| 651 /** |
654 /** |
| 652 * Converts "->" and "<-" in strings to Unicode arrow characters, for use in referencing |
655 * Converts "->" and "<-" in strings to Unicode arrow characters, for use in referencing |
| 653 * menu items. |
656 * menu items. |
| 654 * |
657 * |