comparison src/gtkutils.h @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 213e999fa5cc
children 059d95c67cda
comparison
equal deleted inserted replaced
5675:17e345ffeddb 5676:dae79aefac8d
42 * 42 *
43 * @param gtkconv The GTK+ conversation. 43 * @param gtkconv The GTK+ conversation.
44 * @param pre The prefix string. 44 * @param pre The prefix string.
45 * @param post The postfix string. 45 * @param post The postfix string.
46 */ 46 */
47 void gaim_gtk_surround(struct gaim_gtk_conversation *gtkconv, 47 void gaim_gtk_surround(GaimGtkConversation *gtkconv,
48 const char *pre, const char *post); 48 const char *pre, const char *post);
49 49
50 /** 50 /**
51 * Advances the cursor past the position of the specified tags. 51 * Advances the cursor past the position of the specified tags.
52 * 52 *
53 * @param gtkconv The GTK+ conversation. 53 * @param gtkconv The GTK+ conversation.
54 * @param pre The prefix string. 54 * @param pre The prefix string.
55 * @param post The postfix string. 55 * @param post The postfix string.
56 */ 56 */
57 void gaim_gtk_advance_past(struct gaim_gtk_conversation *gtkconv, 57 void gaim_gtk_advance_past(GaimGtkConversation *gtkconv,
58 const char *pre, const char *post); 58 const char *pre, const char *post);
59 59
60 /** 60 /**
61 * Surrounds the selected text with the specified font. 61 * Surrounds the selected text with the specified font.
62 * 62 *
63 * @param conv The conversation. 63 * @param conv The conversation.
64 * @param font The new font. 64 * @param font The new font.
65 */ 65 */
66 void gaim_gtk_set_font_face(struct gaim_gtk_conversation *gtkconv, 66 void gaim_gtk_set_font_face(GaimGtkConversation *gtkconv,
67 const char *font); 67 const char *font);
68 68
69 /** 69 /**
70 * Displays a dialog for saving the buddy icon in a conversation. 70 * Displays a dialog for saving the buddy icon in a conversation.
71 * 71 *
72 * @param obj @c NULL 72 * @param obj @c NULL
73 * @param conv The conversation. 73 * @param conv The conversation.
74 */ 74 */
75 void gaim_gtk_save_icon_dialog(GtkObject *obj, struct gaim_conversation *conv); 75 void gaim_gtk_save_icon_dialog(GtkObject *obj, GaimConversation *conv);
76 76
77 /** 77 /**
78 * Returns the display style for buttons for the specified conversation 78 * Returns the display style for buttons for the specified conversation
79 * type. 79 * type.
80 * 80 *