summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Aurich <darkrain42@pidgin.im>2009-03-12 03:54:11 +0000
committerPaul Aurich <darkrain42@pidgin.im>2009-03-12 03:54:11 +0000
commit481cd63d2b2e56d1d2bcd645407416b1075d3fb1 (patch)
treedd9b78a0a2f4e8abaee90547ded1f23b61564cb1
parentbd3109d7af720f51fe9dedfa46c45ba1321deec5 (diff)
downloadpidgin-481cd63d2b2e56d1d2bcd645407416b1075d3fb1.tar.gz
Fix more `make docs` warnings
-rw-r--r--libpurple/sound-theme.h7
-rw-r--r--libpurple/theme-loader.h3
-rw-r--r--libpurple/theme-manager.h2
-rw-r--r--pidgin/gtkblist-theme-loader.h2
-rw-r--r--pidgin/gtkblist-theme.h68
-rw-r--r--pidgin/gtkicon-theme-loader.h2
-rw-r--r--pidgin/gtkicon-theme.h4
-rw-r--r--pidgin/gtkstatus-icon-theme.h2
8 files changed, 72 insertions, 18 deletions
diff --git a/libpurple/sound-theme.h b/libpurple/sound-theme.h
index 3c40a462c2..3814e4527f 100644
--- a/libpurple/sound-theme.h
+++ b/libpurple/sound-theme.h
@@ -73,6 +73,7 @@ GType purple_sound_theme_get_type(void);
/**
* Returns a copy of the filename for the sound event.
*
+ * @param theme The theme.
* @param event The purple sound event to look up.
*
* @returns The filename of the sound event.
@@ -83,6 +84,7 @@ const gchar *purple_sound_theme_get_file(PurpleSoundTheme *theme,
/**
* Returns a copy of the directory and filename for the sound event
*
+ * @param theme The theme.
* @param event The purple sound event to look up
*
* @returns The directory + '/' + filename of the sound event. This is
@@ -94,8 +96,9 @@ gchar *purple_sound_theme_get_file_full(PurpleSoundTheme *theme,
/**
* Sets the filename for a given sound event
*
- * @param event the purple sound event to look up
- * @param filename the name of the file to be used for the event
+ * @param theme The theme.
+ * @param event the purple sound event to look up
+ * @param filename the name of the file to be used for the event
*/
void purple_sound_theme_set_file(PurpleSoundTheme *theme,
const gchar *event,
diff --git a/libpurple/theme-loader.h b/libpurple/theme-loader.h
index 8cd82155c3..5496f2c7e2 100644
--- a/libpurple/theme-loader.h
+++ b/libpurple/theme-loader.h
@@ -82,7 +82,8 @@ const gchar *purple_theme_loader_get_type_string(PurpleThemeLoader *self);
/**
* Creates a new PurpleTheme
*
- * @param dir The directory containing the theme
+ * @param loader The theme loader
+ * @param dir The directory containing the theme
*
* @returns A PurpleTheme containing the information from the directory
*/
diff --git a/libpurple/theme-manager.h b/libpurple/theme-manager.h
index 96e0a6986d..c34b6bc160 100644
--- a/libpurple/theme-manager.h
+++ b/libpurple/theme-manager.h
@@ -1,5 +1,5 @@
/**
- * @file thememanager.h Theme Manager API
+ * @file theme-manager.h Theme Manager API
*/
/*
diff --git a/pidgin/gtkblist-theme-loader.h b/pidgin/gtkblist-theme-loader.h
index a5a40621e3..049c1c6ceb 100644
--- a/pidgin/gtkblist-theme-loader.h
+++ b/pidgin/gtkblist-theme-loader.h
@@ -1,5 +1,5 @@
/**
- * @file gtkblist-loader.h Pidgin Buddy List Theme Loader Class API
+ * @file gtkblist-theme-loader.h Pidgin Buddy List Theme Loader Class API
*/
/* pidgin
diff --git a/pidgin/gtkblist-theme.h b/pidgin/gtkblist-theme.h
index bcfb4649b4..176f0d5b9a 100644
--- a/pidgin/gtkblist-theme.h
+++ b/pidgin/gtkblist-theme.h
@@ -102,6 +102,8 @@ GType pidgin_blist_theme_get_type(void);
/**
* Returns the background color of the buddy list.
*
+ * @param theme The theme.
+ *
* @returns A gdk color.
*/
GdkColor *pidgin_blist_theme_get_background_color(PidginBlistTheme *theme);
@@ -110,6 +112,8 @@ GType pidgin_blist_theme_get_type(void);
* Returns the opacity of the buddy list window
* (0.0 or clear to 1.0 fully opaque).
*
+ * @param theme The theme.
+ *
* @returns The opacity
*/
gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
@@ -117,6 +121,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the layout to be used with the buddy list.
*
+ * @param theme The theme.
+ *
* @returns The buddy list layout.
*/
PidginBlistLayout *pidgin_blist_theme_get_layout(PidginBlistTheme *theme);
@@ -124,6 +130,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the background color to be used with expanded groups.
*
+ * @param theme The theme.
+ *
* @returns A gdk color.
*/
GdkColor *pidgin_blist_theme_get_expanded_background_color(PidginBlistTheme *theme);
@@ -131,6 +139,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used with expanded groups.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_expanded_text_info(PidginBlistTheme *theme);
@@ -138,6 +148,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the background color to be used with collapsed groups.
*
+ * @param theme The theme.
+ *
* @returns A gdk color.
*/
GdkColor *pidgin_blist_theme_get_collapsed_background_color(PidginBlistTheme *theme);
@@ -145,6 +157,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used with collapsed groups.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_collapsed_text_info(PidginBlistTheme *theme);
@@ -152,6 +166,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the colors to be used for contacts and chats.
*
+ * @param theme The theme.
+ *
* @returns A gdkcolor for contacts and chats.
*/
GdkColor *pidgin_blist_theme_get_contact_color(PidginBlistTheme *theme);
@@ -159,6 +175,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for expanded contacts.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_contact_text_info(PidginBlistTheme *theme);
@@ -166,6 +184,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for online buddies.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_online_text_info(PidginBlistTheme *theme);
@@ -173,6 +193,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for away and idle buddies.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_away_text_info(PidginBlistTheme *theme);
@@ -180,6 +202,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for offline buddies.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_offline_text_info(PidginBlistTheme *theme);
@@ -187,6 +211,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for idle buddies.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_idle_text_info(PidginBlistTheme *theme);
@@ -194,6 +220,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for buddies with unread messages.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_unread_message_text_info(PidginBlistTheme *theme);
@@ -202,6 +230,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
* Returns the text font and color to be used for chats with unread messages
* that mention your nick.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_unread_message_nick_said_text_info(PidginBlistTheme *theme);
@@ -209,6 +239,8 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Returns the text font and color to be used for a buddy's status message.
*
+ * @param theme The theme.
+ *
* @returns A font and color pair.
*/
FontColorPair *pidgin_blist_theme_get_status_text_info(PidginBlistTheme *theme);
@@ -218,6 +250,7 @@ gdouble pidgin_blist_theme_get_opacity(PidginBlistTheme *theme);
/**
* Sets the background color to be used for this buddy list theme.
*
+ * @param theme The theme.
* @param color The new background color.
*/
void pidgin_blist_theme_set_background_color(PidginBlistTheme *theme, GdkColor *color);
@@ -225,6 +258,7 @@ void pidgin_blist_theme_set_background_color(PidginBlistTheme *theme, GdkColor *
/**
* Sets the opacity to be used for this buddy list theme.
*
+ * @param theme The theme.
* @param opacity The new opacity setting.
*/
void pidgin_blist_theme_set_opacity(PidginBlistTheme *theme, gdouble opacity);
@@ -232,6 +266,7 @@ void pidgin_blist_theme_set_opacity(PidginBlistTheme *theme, gdouble opacity);
/**
* Sets the buddy list layout to be used for this buddy list theme.
*
+ * @param theme The theme.
* @param layout The new layout.
*/
void pidgin_blist_theme_set_layout(PidginBlistTheme *theme, PidginBlistLayout *layout);
@@ -239,6 +274,7 @@ void pidgin_blist_theme_set_layout(PidginBlistTheme *theme, PidginBlistLayout *l
/**
* Sets the background color to be used for expanded groups.
*
+ * @param theme The theme.
* @param color The new background color.
*/
void pidgin_blist_theme_set_expanded_background_color(PidginBlistTheme *theme, GdkColor *color);
@@ -246,13 +282,15 @@ void pidgin_blist_theme_set_expanded_background_color(PidginBlistTheme *theme, G
/**
* Sets the text color and font to be used for expanded groups.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_expanded_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the background color to be used for collapsed groups.
*
+ * @param theme The theme.
* @param color The new background color.
*/
void pidgin_blist_theme_set_collapsed_background_color(PidginBlistTheme *theme, GdkColor *color);
@@ -260,13 +298,15 @@ void pidgin_blist_theme_set_collapsed_background_color(PidginBlistTheme *theme,
/**
* Sets the text color and font to be used for expanded groups.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_collapsed_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the background color to be used for contacts and chats.
*
+ * @param theme The theme.
* @param color The color to use for contacts and chats.
*/
void pidgin_blist_theme_set_contact_color(PidginBlistTheme *theme, GdkColor *color);
@@ -274,42 +314,48 @@ void pidgin_blist_theme_set_contact_color(PidginBlistTheme *theme, GdkColor *col
/**
* Sets the text color and font to be used for expanded contacts.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_contact_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for online buddies.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_online_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for away and idle buddies.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_away_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for offline buddies.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_offline_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for idle buddies.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_idle_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for buddies with unread messages.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_unread_message_text_info(PidginBlistTheme *theme, FontColorPair *pair);
@@ -317,14 +363,16 @@ void pidgin_blist_theme_set_unread_message_text_info(PidginBlistTheme *theme, Fo
* Sets the text color and font to be used for a chat with unread messages
* that mention your nick.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_unread_message_nick_said_text_info(PidginBlistTheme *theme, FontColorPair *pair);
/**
* Sets the text color and font to be used for buddy status messages.
*
- * @param pair The new text font at color pair.
+ * @param theme The theme.
+ * @param pair The new text font and color pair.
*/
void pidgin_blist_theme_set_status_text_info(PidginBlistTheme *theme, FontColorPair *pair);
diff --git a/pidgin/gtkicon-theme-loader.h b/pidgin/gtkicon-theme-loader.h
index 57ab2b53a3..eccb85dc32 100644
--- a/pidgin/gtkicon-theme-loader.h
+++ b/pidgin/gtkicon-theme-loader.h
@@ -1,5 +1,5 @@
/**
- * @file gtkicon-loader.h Pidgin Icon Theme Loader Class API
+ * @file gtkicon-theme-loader.h Pidgin Icon Theme Loader Class API
*/
/* purple
diff --git a/pidgin/gtkicon-theme.h b/pidgin/gtkicon-theme.h
index 0ba669d349..ce67048ba8 100644
--- a/pidgin/gtkicon-theme.h
+++ b/pidgin/gtkicon-theme.h
@@ -1,5 +1,5 @@
/**
- * @file icon-theme.h Pidgin Icon Theme Class API
+ * @file gtkicon-theme.h Pidgin Icon Theme Class API
*/
/* pidgin
@@ -72,6 +72,7 @@ GType pidgin_icon_theme_get_type(void);
/**
* Returns a copy of the filename for the icon event or NULL if it is not set
*
+ * @param theme the theme
* @param event the pidgin icon event to look up
*
* @returns the filename of the icon event
@@ -82,6 +83,7 @@ const gchar *pidgin_icon_theme_get_icon(PidginIconTheme *theme,
/**
* Sets the filename for a given icon id, setting the icon to NULL will remove the icon from the theme
*
+ * @param theme the theme
* @param icon_id a string representing what the icon is to be used for
* @param filename the name of the file to be used for the given id
*/
diff --git a/pidgin/gtkstatus-icon-theme.h b/pidgin/gtkstatus-icon-theme.h
index 9dbc14c02d..ba8269a778 100644
--- a/pidgin/gtkstatus-icon-theme.h
+++ b/pidgin/gtkstatus-icon-theme.h
@@ -1,5 +1,5 @@
/**
- * @file status_icon-theme.h Pidgin Icon Theme Class API
+ * @file gtkstatus-icon-theme.h Pidgin Icon Theme Class API
*/
/* pidgin