Mercurial > pidgin
annotate src/gtkutils.h @ 5615:6500a6c8d679
[gaim-migrate @ 6022]
Checkboxes update!
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sat, 31 May 2003 18:35:22 +0000 |
| parents | 2c4c975620f0 |
| children | 213e999fa5cc |
| rev | line source |
|---|---|
| 4359 | 1 /** |
| 2 * @file gtkutils.h GTK+ utility functions | |
|
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3 * @ingroup gtkui |
| 4359 | 4 * |
| 5 * gaim | |
| 6 * | |
| 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. | |
| 13 * | |
| 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. | |
| 18 * | |
| 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 | |
| 22 */ | |
| 23 | |
| 24 #ifndef _GAIM_GTK_UTILS_H_ | |
| 25 #define _GAIM_GTK_UTILS_H_ | |
| 26 | |
| 27 #include "gaim.h" | |
| 28 #include "conversation.h" | |
| 29 | |
| 30 /** | |
| 31 * Sets up a gtkimhtml widget, loads it with smileys, and sets the | |
| 32 * default signal handlers. | |
| 33 * | |
| 34 * @param imhtml The gtkimhtml widget to setup. | |
| 35 */ | |
| 36 void gaim_setup_imhtml(GtkWidget *imhtml); | |
| 37 | |
| 38 /** | |
| 39 * Surrounds the selected text in a conversation with the specified | |
| 40 * pre and post strings. | |
| 41 * | |
| 42 * @param gtkconv The GTK+ conversation. | |
| 43 * @param pre The prefix string. | |
| 44 * @param post The postfix string. | |
| 45 */ | |
| 46 void gaim_gtk_surround(struct gaim_gtk_conversation *gtkconv, | |
| 47 const char *pre, const char *post); | |
| 48 | |
| 49 /** | |
| 50 * Advances the cursor past the position of the specified tags. | |
| 51 * | |
| 52 * @param gtkconv The GTK+ conversation. | |
| 53 * @param pre The prefix string. | |
| 54 * @param post The postfix string. | |
| 55 */ | |
| 56 void gaim_gtk_advance_past(struct gaim_gtk_conversation *gtkconv, | |
| 57 const char *pre, const char *post); | |
| 58 | |
| 59 /** | |
| 60 * Surrounds the selected text with the specified font. | |
| 61 * | |
| 62 * @param conv The conversation. | |
| 63 * @param font The new font. | |
| 64 */ | |
| 65 void gaim_gtk_set_font_face(struct gaim_gtk_conversation *gtkconv, | |
| 66 const char *font); | |
| 67 | |
| 68 /** | |
| 69 * Displays a dialog for saving the buddy icon in a conversation. | |
| 70 * | |
| 71 * @param obj @c NULL | |
| 72 * @param conv The conversation. | |
| 73 */ | |
| 74 void gaim_gtk_save_icon_dialog(GtkObject *obj, struct gaim_conversation *conv); | |
| 75 | |
| 76 /** | |
| 77 * Returns the display style for buttons for the specified conversation | |
| 78 * type. | |
| 79 * | |
| 80 * @param type The conversation type. | |
| 81 * | |
| 82 * @return The display style. | |
| 83 */ | |
| 84 int gaim_gtk_get_dispstyle(GaimConversationType type); | |
| 85 | |
| 86 /** | |
| 87 * Changes a button to be either text or image, depending on | |
| 88 * preferences. | |
| 89 * | |
| 90 * This function destroys the old button pointed to by @a button and | |
| 91 * returns the new replacement button. | |
| 92 * | |
| 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. | |
| 97 * | |
| 98 * @return The new button widget to replace the old one. | |
| 99 */ | |
| 100 GtkWidget *gaim_gtk_change_text(const char *text, GtkWidget *button, | |
| 101 const char *stock, GaimConversationType type); | |
| 102 | |
| 103 /** | |
| 104 * Toggles the sensitivity of a widget. | |
| 105 * | |
| 106 * @param widget @c NULL. Used for signal handlers. | |
| 107 * @param to_toggle The widget to toggle. | |
| 108 */ | |
| 109 void gaim_gtk_toggle_sensitive(GtkWidget *widget, GtkWidget *to_toggle); | |
| 110 | |
| 4687 | 111 /** |
|
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
112 * Toggles the sensitivity of all widgets in a pointer array. |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
113 * |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
114 * @param widget @c NULL. Used for signal handlers. |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
115 * @param to_toggle The array containing the widgets to toggle. |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
116 */ |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
117 void gtk_toggle_sensitive_array(GtkWidget *w, GPtrArray *data); |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
118 |
|
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5162
diff
changeset
|
119 /** |
| 4687 | 120 * Adds a seperator to a menu. |
| 121 * | |
| 5162 | 122 * @param menu The menu to add a seperator to. |
| 4687 | 123 */ |
| 124 void gaim_separator(GtkWidget *menu); | |
| 125 | |
| 5162 | 126 /** |
| 127 * Creates a menu item. | |
| 128 * | |
| 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. | |
| 131 * | |
| 132 * @return The newly created menu item. | |
| 133 */ | |
| 134 GtkWidget *gaim_new_item(GtkWidget *menu, const char *str); | |
| 135 | |
| 136 /** | |
| 137 * Creates a menu item. | |
| 138 * | |
| 139 * @param menu The menu to which to append the menu item. | |
| 140 * @param str The title for the menu item. | |
|
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
141 * @param icon An icon to place to the left of the menu item, |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
142 * or @c NULL for no icon. |
| 5162 | 143 * @param sf A function to call when the menu item is activated. |
| 144 * @param data Data to pass to the signal function. | |
| 145 * @param accel_key Something. | |
| 146 * @param accel_mods Something. | |
| 147 * @param mod Something. | |
| 148 * | |
| 149 * @return The newly created menu item. | |
| 150 */ | |
|
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
151 GtkWidget *gaim_new_item_from_stock(GtkWidget *menu, const char *str, |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
152 const char *icon, GtkSignalFunc sf, |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
153 gpointer data, guint accel_key, |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
154 guint accel_mods, char *mod); |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
155 |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
156 /** |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
157 * Creates a HIG preferences frame. |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
158 * |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
159 * @param parent The widget to put the frame into. |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
160 * @param title The title for the frame. |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
161 * |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
162 * @return The vbox to put things into. |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
163 */ |
|
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
164 GtkWidget *gaim_gtk_make_frame(GtkWidget *parent, const char *title); |
| 5162 | 165 |
| 4359 | 166 #endif /* _GAIM_GTK_UTILS_H_ */ |
