| 926 */ |
926 */ |
| 927 GdkPixbuf *pidgin_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, gboolean preserve_aspect_ratio); |
927 GdkPixbuf *pidgin_pixbuf_new_from_file_at_scale(const char *filename, int width, int height, gboolean preserve_aspect_ratio); |
| 928 |
928 |
| 929 /** |
929 /** |
| 930 * Add scrollbars to a widget |
930 * Add scrollbars to a widget |
| 931 * @param widget The child widget |
931 * @param child The child widget |
| 932 * @hscrollbar_policy Horizontal scrolling policy |
932 * @param hscrollbar_policy Horizontal scrolling policy |
| 933 * @vscrollbar_policy Vertical scrolling policy |
933 * @param vscrollbar_policy Vertical scrolling policy |
| 934 * @shadow Shadow type |
934 * @param shadow_type Shadow type |
| 935 * @width Desired widget width, or -1 for default |
935 * @param width Desired widget width, or -1 for default |
| 936 * @height Desired widget height, or -1 for default |
936 * @param height Desired widget height, or -1 for default |
| 937 * |
937 * |
| 938 * @since 2.8.0 |
938 * @since 2.8.0 |
| 939 */ |
939 */ |
| 940 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, GtkShadowType shadow_type, int width, int height); |
940 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, GtkShadowType shadow_type, int width, int height); |
| 941 |
941 |