diff src/gtkprefs.h @ 7987:fc6b362f9c26

[gaim-migrate @ 8664] namespaces are cool...hopefully I didn't screw this up committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 04 Jan 2004 05:14:39 +0000
parents 4ed44e5e0df3
children fa6395637e2c
line wrap: on
line diff
--- a/src/gtkprefs.h	Sun Jan 04 04:53:04 2004 +0000
+++ b/src/gtkprefs.h	Sun Jan 04 05:14:39 2004 +0000
@@ -59,23 +59,21 @@
  * @param key   The key of the gaim bool pref that will be represented by the checkbox
  * @param page  The page to which the new checkbox will be added
  */
-GtkWidget *prefs_checkbox(const char *title, const char *key,
-                         GtkWidget *page);
+GtkWidget *gaim_gtk_prefs_checkbox(const char *title, const char *key,
+		GtkWidget *page);
 
 /**
  * Add a new spin button representing an int preference
  *
  * @param page  The page to which the spin button will be added
  * @param title The text to be displayed as the spin button label
- * @param key   The key of the gaim int pref that will be represented by the spin button
+ * @param key   The key of the int pref that will be represented by the spin button
  * @param min   The minimum value of the spin button
  * @param max   The maximum value of the spin button
  * @param sg    If not NULL, the size group to which the spin button will be added
  */
-GtkWidget *prefs_labeled_spin_button(GtkWidget *page, 
-                                    const gchar *title,
-                                    char *key, int min, int max,
-                                    GtkSizeGroup *sg);
+GtkWidget *gaim_gtk_prefs_labeled_spin_button(GtkWidget *page,
+		const gchar *title, char *key, int min, int max, GtkSizeGroup *sg);
 
 /**
  * Add a new dropdown representing a preference of the specified type
@@ -83,25 +81,23 @@
  * @param page  The page to which the dropdown will be added
  * @param title The text to be displayed as the dropdown label
  * @param type  The type of preference to be stored in the generated dropdown
- * @param key   The key of the gaim int pref that will be represented by the dropdown
+ * @param key   The key of the pref that will be represented by the dropdown
  * @param ...   The choices to be added to the dropdown
  */
-GtkWidget *prefs_dropdown(GtkWidget *page, const gchar *title,
-                         GaimPrefType type,
-                         const char *key, ...);
+GtkWidget *gaim_gtk_prefs_dropdown(GtkWidget *page, const gchar *title,
+		GaimPrefType type, const char *key, ...);
 
 /**
  * Add a new dropdown representing a preference of the specified type
  *
  * @param page      The page to which the dropdown will be added
  * @param title     The text to be displayed as the dropdown label
- * @param type      The type of preference to be stored in the generated dropdown
- * @param key       The key of the gaim int pref that will be represented by the dropdown
+ * @param type      The type of preference to be stored in the dropdown
+ * @param key       The key of the pref that will be represented by the dropdown
  * @param menuitems The choices to be added to the dropdown
  */
-GtkWidget *prefs_dropdown_from_list(GtkWidget *page,
-                                   const gchar * title,
-                                   GaimPrefType type, const char *key,
-                                   GList *menuitems); 
+GtkWidget *gaim_gtk_prefs_dropdown_from_list(GtkWidget *page,
+		const gchar * title, GaimPrefType type, const char *key,
+		GList *menuitems);
 
 #endif /* _GAIM_GTK_PREFS_H_ */