[gaim-migrate @ 5891]
[pidgin-git.git] / src / gtkutils.h
blob30ceea6300450ec3dc026183830dde465c93ecfc
1 /**
2 * @file gtkutils.h GTK+ utility functions
3 * @ingroup gtkui
5 * gaim
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef _GAIM_GTK_UTILS_H_
25 #define _GAIM_GTK_UTILS_H_
27 #include "gaim.h"
28 #include "conversation.h"
30 /**
31 * Sets up a gtkimhtml widget, loads it with smileys, and sets the
32 * default signal handlers.
34 * @param imhtml The gtkimhtml widget to setup.
36 void gaim_setup_imhtml(GtkWidget *imhtml);
38 /**
39 * Surrounds the selected text in a conversation with the specified
40 * pre and post strings.
42 * @param gtkconv The GTK+ conversation.
43 * @param pre The prefix string.
44 * @param post The postfix string.
46 void gaim_gtk_surround(struct gaim_gtk_conversation *gtkconv,
47 const char *pre, const char *post);
49 /**
50 * Advances the cursor past the position of the specified tags.
52 * @param gtkconv The GTK+ conversation.
53 * @param pre The prefix string.
54 * @param post The postfix string.
56 void gaim_gtk_advance_past(struct gaim_gtk_conversation *gtkconv,
57 const char *pre, const char *post);
59 /**
60 * Surrounds the selected text with the specified font.
62 * @param conv The conversation.
63 * @param font The new font.
65 void gaim_gtk_set_font_face(struct gaim_gtk_conversation *gtkconv,
66 const char *font);
68 /**
69 * Displays a dialog for saving the buddy icon in a conversation.
71 * @param obj @c NULL
72 * @param conv The conversation.
74 void gaim_gtk_save_icon_dialog(GtkObject *obj, struct gaim_conversation *conv);
76 /**
77 * Returns the display style for buttons for the specified conversation
78 * type.
80 * @param type The conversation type.
82 * @return The display style.
84 int gaim_gtk_get_dispstyle(GaimConversationType type);
86 /**
87 * Changes a button to be either text or image, depending on
88 * preferences.
90 * This function destroys the old button pointed to by @a button and
91 * returns the new replacement button.
93 * @param text The text for the button.
94 * @param button The button widget.
95 * @param stock The stock image.
96 * @param type The conversation type the button belongs to.
98 * @return The new button widget to replace the old one.
100 GtkWidget *gaim_gtk_change_text(const char *text, GtkWidget *button,
101 const char *stock, GaimConversationType type);
104 * Toggles the sensitivity of a widget.
106 * @param widget @c NULL. Used for signal handlers.
107 * @param to_toggle The widget to toggle.
109 void gaim_gtk_toggle_sensitive(GtkWidget *widget, GtkWidget *to_toggle);
112 * Toggles the sensitivity of all widgets in a pointer array.
114 * @param widget @c NULL. Used for signal handlers.
115 * @param to_toggle The array containing the widgets to toggle.
117 void gtk_toggle_sensitive_array(GtkWidget *w, GPtrArray *data);
120 * Adds a seperator to a menu.
122 * @param menu The menu to add a seperator to.
124 void gaim_separator(GtkWidget *menu);
127 * Creates a menu item.
129 * @param menu The menu to which to append the menu item.
130 * @param str The title to use for the newly created menu item.
132 * @return The newly created menu item.
134 GtkWidget *gaim_new_item(GtkWidget *menu, const char *str);
137 * Creates a menu item.
139 * @param menu The menu to which to append the menu item.
140 * @param str The title for the menu item.
141 * @param icon An icon to place to the left of the menu item, or NULL for no icon.
142 * @param sf A function to call when the menu item is activated.
143 * @param data Data to pass to the signal function.
144 * @param accel_key Something.
145 * @param accel_mods Something.
146 * @param mod Something.
148 * @return The newly created menu item.
150 GtkWidget *gaim_new_item_from_stock(GtkWidget *menu, const char *str, const char *icon, GtkSignalFunc sf, gpointer data, guint accel_key, guint accel_mods, char *mod);
152 #endif /* _GAIM_GTK_UTILS_H_ */