| 51 G_BEGIN_DECLS |
51 G_BEGIN_DECLS |
| 52 |
52 |
| 53 /** |
53 /** |
| 54 * Returns the GType for a GtkWebViewToolbar widget |
54 * Returns the GType for a GtkWebViewToolbar widget |
| 55 * |
55 * |
| 56 * @return The GType for GtkWebViewToolbar widget |
56 * Returns: The GType for GtkWebViewToolbar widget |
| 57 */ |
57 */ |
| 58 GType gtk_webviewtoolbar_get_type(void); |
58 GType gtk_webviewtoolbar_get_type(void); |
| 59 |
59 |
| 60 /** |
60 /** |
| 61 * Create a new GtkWebViewToolbar object |
61 * Create a new GtkWebViewToolbar object |
| 62 * |
62 * |
| 63 * @return A GtkWidget corresponding to the GtkWebViewToolbar object |
63 * Returns: A GtkWidget corresponding to the GtkWebViewToolbar object |
| 64 */ |
64 */ |
| 65 GtkWidget *gtk_webviewtoolbar_new(void); |
65 GtkWidget *gtk_webviewtoolbar_new(void); |
| 66 |
66 |
| 67 /** |
67 /** |
| 68 * Attach a GtkWebViewToolbar object to a GtkWebView |
68 * Attach a GtkWebViewToolbar object to a GtkWebView |
| 69 * |
69 * |
| 70 * @param toolbar The GtkWebViewToolbar object |
70 * @toolbar: The GtkWebViewToolbar object |
| 71 * @param webview The GtkWebView object |
71 * @webview: The GtkWebView object |
| 72 */ |
72 */ |
| 73 void gtk_webviewtoolbar_attach(GtkWebViewToolbar *toolbar, GtkWidget *webview); |
73 void gtk_webviewtoolbar_attach(GtkWebViewToolbar *toolbar, GtkWidget *webview); |
| 74 |
74 |
| 75 /** |
75 /** |
| 76 * Associate the smileys from a protocol to a GtkWebViewToolbar object |
76 * Associate the smileys from a protocol to a GtkWebViewToolbar object |
| 77 * |
77 * |
| 78 * @param toolbar The GtkWebViewToolbar object |
78 * @toolbar: The GtkWebViewToolbar object |
| 79 * @param proto_id The ID of the protocol from which smileys are associated |
79 * @proto_id: The ID of the protocol from which smileys are associated |
| 80 */ |
80 */ |
| 81 void gtk_webviewtoolbar_associate_smileys(GtkWebViewToolbar *toolbar, |
81 void gtk_webviewtoolbar_associate_smileys(GtkWebViewToolbar *toolbar, |
| 82 const char *proto_id); |
82 const char *proto_id); |
| 83 |
83 |
| 84 /** |
84 /** |
| 85 * Switch the active conversation for a GtkWebViewToolbar object |
85 * Switch the active conversation for a GtkWebViewToolbar object |
| 86 * |
86 * |
| 87 * @param toolbar The GtkWebViewToolbar object |
87 * @toolbar: The GtkWebViewToolbar object |
| 88 * @param conv The new conversation |
88 * @conv: The new conversation |
| 89 */ |
89 */ |
| 90 void gtk_webviewtoolbar_switch_active_conversation(GtkWebViewToolbar *toolbar, |
90 void gtk_webviewtoolbar_switch_active_conversation(GtkWebViewToolbar *toolbar, |
| 91 PurpleConversation *conv); |
91 PurpleConversation *conv); |
| 92 |
92 |
| 93 /** |
93 /** |
| 94 * Activate a GtkWebViewToolbar action |
94 * Activate a GtkWebViewToolbar action |
| 95 * |
95 * |
| 96 * @param toolbar The GtkWebViewToolbar object |
96 * @toolbar: The GtkWebViewToolbar object |
| 97 * @param action The GtkWebViewAction |
97 * @action: The GtkWebViewAction |
| 98 */ |
98 */ |
| 99 void gtk_webviewtoolbar_activate(GtkWebViewToolbar *toolbar, |
99 void gtk_webviewtoolbar_activate(GtkWebViewToolbar *toolbar, |
| 100 GtkWebViewAction action); |
100 GtkWebViewAction action); |
| 101 |
101 |
| 102 G_END_DECLS |
102 G_END_DECLS |