comparison pidgin/gtkprefs.h @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 760ef6d78d2d
children 66dff3dfdea6
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file gtkprefs.h GTK+ Preferences 2 * @file gtkprefs.h GTK+ Preferences
3 * @ingroup gtkui 3 * @ingroup gtkui
4 * 4 *
5 * gaim 5 * purple
6 * 6 *
7 * Pidgin is the legal property of its developers, whose names are too numerous 7 * Pidgin is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this 8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution. 9 * source distribution.
10 * 10 *
40 40
41 /** 41 /**
42 * Add a new checkbox for a boolean preference 42 * Add a new checkbox for a boolean preference
43 * 43 *
44 * @param title The text to be displayed as the checkbox label 44 * @param title The text to be displayed as the checkbox label
45 * @param key The key of the gaim bool pref that will be represented by the checkbox 45 * @param key The key of the purple bool pref that will be represented by the checkbox
46 * @param page The page to which the new checkbox will be added 46 * @param page The page to which the new checkbox will be added
47 */ 47 */
48 GtkWidget *pidgin_prefs_checkbox(const char *title, const char *key, 48 GtkWidget *pidgin_prefs_checkbox(const char *title, const char *key,
49 GtkWidget *page); 49 GtkWidget *page);
50 50
88 * @param key The key of the pref that will be represented by the dropdown 88 * @param key The key of the pref that will be represented by the dropdown
89 * @param ... The choices to be added to the dropdown, choices should be 89 * @param ... The choices to be added to the dropdown, choices should be
90 * paired as label/value 90 * paired as label/value
91 */ 91 */
92 GtkWidget *pidgin_prefs_dropdown(GtkWidget *page, const gchar *title, 92 GtkWidget *pidgin_prefs_dropdown(GtkWidget *page, const gchar *title,
93 GaimPrefType type, const char *key, ...); 93 PurplePrefType type, const char *key, ...);
94 94
95 /** 95 /**
96 * Add a new dropdown representing a preference of the specified type 96 * Add a new dropdown representing a preference of the specified type
97 * 97 *
98 * @param page The page to which the dropdown will be added 98 * @param page The page to which the dropdown will be added
101 * @param key The key of the pref that will be represented by the dropdown 101 * @param key The key of the pref that will be represented by the dropdown
102 * @param menuitems The choices to be added to the dropdown, choices should 102 * @param menuitems The choices to be added to the dropdown, choices should
103 * be paired as label/value 103 * be paired as label/value
104 */ 104 */
105 GtkWidget *pidgin_prefs_dropdown_from_list(GtkWidget *page, 105 GtkWidget *pidgin_prefs_dropdown_from_list(GtkWidget *page,
106 const gchar * title, GaimPrefType type, const char *key, 106 const gchar * title, PurplePrefType type, const char *key,
107 GList *menuitems); 107 GList *menuitems);
108 108
109 /** 109 /**
110 * Rename legacy prefs and delete some that no longer exist. 110 * Rename legacy prefs and delete some that no longer exist.
111 */ 111 */