comparison src/gtkutils.h @ 6720:41120df7ed94

[gaim-migrate @ 7247] Fixed documentation errors so Doxygen no longer complains. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 03 Sep 2003 05:21:04 +0000
parents b89d98f0bf79
children acd2a66e59ed
comparison
equal deleted inserted replaced
6719:3cc4d5e55a69 6720:41120df7ed94
75 const char *pre, const char *post); 75 const char *pre, const char *post);
76 76
77 /** 77 /**
78 * Surrounds the selected text with the specified font. 78 * Surrounds the selected text with the specified font.
79 * 79 *
80 * @param conv The conversation. 80 * @param gtkconv The GTK+ conversation.
81 * @param font The new font. 81 * @param font The new font.
82 */ 82 */
83 void gaim_gtk_set_font_face(GaimGtkConversation *gtkconv, 83 void gaim_gtk_set_font_face(GaimGtkConversation *gtkconv,
84 const char *font); 84 const char *font);
85 85
86 /** 86 /**
127 void gaim_gtk_toggle_sensitive(GtkWidget *widget, GtkWidget *to_toggle); 127 void gaim_gtk_toggle_sensitive(GtkWidget *widget, GtkWidget *to_toggle);
128 128
129 /** 129 /**
130 * Toggles the sensitivity of all widgets in a pointer array. 130 * Toggles the sensitivity of all widgets in a pointer array.
131 * 131 *
132 * @param widget @c NULL. Used for signal handlers. 132 * @param w @c NULL. Used for signal handlers.
133 * @param to_toggle The array containing the widgets to toggle. 133 * @param data The array containing the widgets to toggle.
134 */ 134 */
135 void gtk_toggle_sensitive_array(GtkWidget *w, GPtrArray *data); 135 void gtk_toggle_sensitive_array(GtkWidget *w, GPtrArray *data);
136 136
137 /** 137 /**
138 * Adds a seperator to a menu. 138 * Adds a seperator to a menu.
198 GaimButtonOrientation style); 198 GaimButtonOrientation style);
199 199
200 /** 200 /**
201 * Creates a toolbar button with the stock icon. 201 * Creates a toolbar button with the stock icon.
202 * 202 *
203 * @param icon The stock icon name. 203 * @param stock The stock icon name.
204 * 204 *
205 * @return The button. 205 * @return The button.
206 */ 206 */
207 GtkWidget *gaim_pixbuf_toolbar_button_from_stock(const char *stock); 207 GtkWidget *gaim_pixbuf_toolbar_button_from_stock(const char *stock);
208 208