comparison pidgin/gtkprefs.h @ 26137:c56e8826fed0

Added support to generate relayed candidates (TURN). Added prefs setting for relay server in Pidgin
author Marcus Lundblad <ml@update.uu.se>
date Thu, 22 Jan 2009 23:04:52 +0000
parents 92e71f6e10d4
children ff4212a5268f
comparison
equal deleted inserted replaced
26136:d68924f1265f 26137:c56e8826fed0
80 */ 80 */
81 GtkWidget *pidgin_prefs_labeled_entry(GtkWidget *page, const gchar *title, 81 GtkWidget *pidgin_prefs_labeled_entry(GtkWidget *page, const gchar *title,
82 const char *key, GtkSizeGroup *sg); 82 const char *key, GtkSizeGroup *sg);
83 83
84 /** 84 /**
85 * Add a new entry representing a password (string) preference
86 * The entry will use a password-style text entry (the text is substituded)
87 *
88 * @param page The page to which the entry will be added
89 * @param title The text to be displayed as the entry label
90 * @param key The key of the string pref that will be represented by the entry
91 * @param sg If not NULL, the size group to which the entry will be added
92 *
93 * @return An hbox containing both the label and the entry. Can be used to set
94 * the widgets to sensitive or insensitive based on the value of a
95 * checkbox.
96 */
97 GtkWidget *pidgin_prefs_labeled_password(GtkWidget *page, const gchar *title,
98 const char *key, GtkSizeGroup *sg);
99
100 /**
85 * Add a new dropdown representing a preference of the specified type 101 * Add a new dropdown representing a preference of the specified type
86 * 102 *
87 * @param page The page to which the dropdown will be added 103 * @param page The page to which the dropdown will be added
88 * @param title The text to be displayed as the dropdown label 104 * @param title The text to be displayed as the dropdown label
89 * @param type The type of preference to be stored in the generated dropdown 105 * @param type The type of preference to be stored in the generated dropdown