| 97 * |
97 * |
| 98 * @param title The window title, or @c NULL |
98 * @param title The window title, or @c NULL |
| 99 * @param border_width The window's desired border width |
99 * @param border_width The window's desired border width |
| 100 * @param role A string indicating what the window is responsible for doing, or @c NULL |
100 * @param role A string indicating what the window is responsible for doing, or @c NULL |
| 101 * @param resizable Whether the window should be resizable (@c TRUE) or not (@c FALSE) |
101 * @param resizable Whether the window should be resizable (@c TRUE) or not (@c FALSE) |
| |
102 * |
| |
103 * @since 2.1.0 |
| 102 */ |
104 */ |
| 103 GtkWidget *pidgin_create_window(const char *title, guint border_width, const char *role, gboolean resizable); |
105 GtkWidget *pidgin_create_window(const char *title, guint border_width, const char *role, gboolean resizable); |
| 104 |
106 |
| 105 /** |
107 /** |
| 106 * Toggles the sensitivity of a widget. |
108 * Toggles the sensitivity of a widget. |