| 92 /** |
92 /** |
| 93 * pidgin_create_webview: |
93 * pidgin_create_webview: |
| 94 * @editable: %TRUE if this webview should be editable. If this is |
94 * @editable: %TRUE if this webview should be editable. If this is |
| 95 * %FALSE, then the toolbar will NOT be created. If this webview |
95 * %FALSE, then the toolbar will NOT be created. If this webview |
| 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 %TRUE here and then manually call gtk_webview_set_editable() |
97 * pass in %TRUE here and then manually call |
| 98 * later. |
98 * webkit_web_view_set_editable() later. |
| 99 * @webview_ret: A pointer to a pointer to a GtkWidget. This pointer |
99 * @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 * @sw_ret: This will be filled with a pointer to the scrolled window |
101 * @sw_ret: This will be filled with a pointer to the scrolled window |
| 102 * widget which contains the webview. |
102 * widget which contains the webview. |
| 103 * |
103 * |