| 96 * should be read-only at first, but may become editable later, then |
96 * should be read-only at first, but may become editable later, then |
| 97 * pass in @c TRUE here and then manually call gtk_webview_set_editable() |
97 * pass in @c TRUE here and then manually call gtk_webview_set_editable() |
| 98 * later. |
98 * later. |
| 99 * @param webview_ret A pointer to a pointer to a GtkWidget. This pointer |
99 * @param webview_ret A pointer to a pointer to a GtkWidget. This pointer |
| 100 * will be set to the webview when this function exits. |
100 * will be set to the webview when this function exits. |
| 101 * @param toolbar_ret A pointer to a pointer to a GtkWidget. If editable is |
|
| 102 * TRUE then this will be set to the toolbar when this function exits. |
|
| 103 * Otherwise this will be set to @c NULL. |
|
| 104 * @param sw_ret This will be filled with a pointer to the scrolled window |
101 * @param sw_ret This will be filled with a pointer to the scrolled window |
| 105 * widget which contains the webview. |
102 * widget which contains the webview. |
| 106 * |
103 * |
| 107 * @return The GtkFrame containing the toolbar and webview. |
104 * @return The GtkFrame containing the toolbar and webview. |
| 108 */ |
105 */ |
| 109 GtkWidget *pidgin_create_webview(gboolean editable, GtkWidget **webview_ret, GtkWidget **toolbar_ret, GtkWidget **sw_ret); |
106 GtkWidget *pidgin_create_webview(gboolean editable, GtkWidget **webview_ret, GtkWidget **sw_ret); |
| 110 |
107 |
| 111 /** |
108 /** |
| 112 * Creates a small button |
109 * Creates a small button |
| 113 * |
110 * |
| 114 * @param image A button image. |
111 * @param image A button image. |