|
pidgin 2.14.14
|
Pidgin Icon Theme Class API. More...
Go to the source code of this file.
Data Structures | |
| struct | _PidginIconTheme |
| struct | _PidginIconThemeClass |
Macros | |
| #define | PIDGIN_TYPE_ICON_THEME (pidgin_icon_theme_get_type ()) |
| #define | PIDGIN_ICON_THEME(obj) |
| #define | PIDGIN_ICON_THEME_CLASS(klass) |
| #define | PIDGIN_IS_ICON_THEME(obj) |
| #define | PIDGIN_IS_ICON_THEME_CLASS(klass) |
| #define | PIDGIN_ICON_THEME_GET_CLASS(obj) |
Typedefs | |
| typedef struct _PidginIconTheme | PidginIconTheme |
| extends PurpleTheme (theme.h) A pidgin icon theme. | |
| typedef struct _PidginIconThemeClass | PidginIconThemeClass |
Functions | |
Pidgin Icon Theme API | |
| G_BEGIN_DECLS GType | pidgin_icon_theme_get_type (void) |
| GObject foo. | |
| const gchar * | pidgin_icon_theme_get_icon (PidginIconTheme *theme, const gchar *event) |
| Returns a copy of the filename for the icon event or NULL if it is not set. | |
| void | pidgin_icon_theme_set_icon (PidginIconTheme *theme, const gchar *icon_id, const gchar *filename) |
| Sets the filename for a given icon id, setting the icon to NULL will remove the icon from the theme. | |
Pidgin Icon Theme Class API.
Definition in file gtkicon-theme.h.
| #define PIDGIN_ICON_THEME | ( | obj | ) |
Definition at line 44 of file gtkicon-theme.h.
| #define PIDGIN_ICON_THEME_CLASS | ( | klass | ) |
Definition at line 45 of file gtkicon-theme.h.
| #define PIDGIN_ICON_THEME_GET_CLASS | ( | obj | ) |
Definition at line 48 of file gtkicon-theme.h.
| #define PIDGIN_IS_ICON_THEME | ( | obj | ) |
Definition at line 46 of file gtkicon-theme.h.
| #define PIDGIN_IS_ICON_THEME_CLASS | ( | klass | ) |
Definition at line 47 of file gtkicon-theme.h.
| #define PIDGIN_TYPE_ICON_THEME (pidgin_icon_theme_get_type ()) |
Definition at line 43 of file gtkicon-theme.h.
| typedef struct _PidginIconTheme PidginIconTheme |
extends PurpleTheme (theme.h) A pidgin icon theme.
This object represents a Pidgin icon theme.
PidginIconTheme is a PurpleTheme Object.
Definition at line 40 of file gtkicon-theme.h.
| typedef struct _PidginIconThemeClass PidginIconThemeClass |
Definition at line 41 of file gtkicon-theme.h.
| const gchar * pidgin_icon_theme_get_icon | ( | PidginIconTheme * | theme, |
| const gchar * | event ) |
Returns a copy of the filename for the icon event or NULL if it is not set.
| theme | the theme |
| event | the pidgin icon event to look up |
| void pidgin_icon_theme_set_icon | ( | PidginIconTheme * | theme, |
| const gchar * | icon_id, | ||
| const gchar * | filename ) |
Sets the filename for a given icon id, setting the icon to NULL will remove the icon from the theme.
| theme | the theme |
| icon_id | a string representing what the icon is to be used for |
| filename | the name of the file to be used for the given id |