| 252 /** |
252 /** |
| 253 * pidgin_make_scrollable: |
253 * pidgin_make_scrollable: |
| 254 * @child: The child widget |
254 * @child: The child widget |
| 255 * @hscrollbar_policy: Horizontal scrolling policy |
255 * @hscrollbar_policy: Horizontal scrolling policy |
| 256 * @vscrollbar_policy: Vertical scrolling policy |
256 * @vscrollbar_policy: Vertical scrolling policy |
| 257 * @shadow_type: Shadow type |
|
| 258 * @width: Desired widget width, or -1 for default |
257 * @width: Desired widget width, or -1 for default |
| 259 * @height: Desired widget height, or -1 for default |
258 * @height: Desired widget height, or -1 for default |
| 260 * |
259 * |
| 261 * Add scrollbars to a widget |
260 * Add scrollbars to a widget |
| 262 * |
261 * |
| 263 * Returns: (transfer full): A scrolled window with @child packed inside of it. |
262 * Returns: (transfer full): A scrolled window with @child packed inside of it. |
| 264 */ |
263 */ |
| 265 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, GtkShadowType shadow_type, int width, int height); |
264 GtkWidget *pidgin_make_scrollable(GtkWidget *child, GtkPolicyType hscrollbar_policy, GtkPolicyType vscrollbar_policy, int width, int height); |
| 266 |
265 |
| 267 G_END_DECLS |
266 G_END_DECLS |
| 268 |
267 |
| 269 #endif /* _PIDGINUTILS_H_ */ |
268 #endif /* _PIDGINUTILS_H_ */ |
| 270 |
269 |