pidgin
2.14.14
Toggle main menu visibility
Loading...
Searching...
No Matches
theme.h
Go to the documentation of this file.
1
4
5
/* purple
6
*
7
* Purple 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
9
* source distribution.
10
*
11
* This program is free software; you can redistribute it and/or modify
12
* it under the terms of the GNU General Public License as published by
13
* the Free Software Foundation; either version 2 of the License, or
14
* (at your option) any later version.
15
*
16
* This program is distributed in the hope that it will be useful,
17
* but WITHOUT ANY WARRANTY; without even the implied warranty of
18
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
* GNU General Public License for more details.
20
*
21
* You should have received a copy of the GNU General Public License
22
* along with this program; if not, write to the Free Software
23
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24
*/
25
26
#ifndef PURPLE_THEME_H
27
#define PURPLE_THEME_H
28
29
#include <glib.h>
30
#include <glib-object.h>
31
#include "
imgstore.h
"
32
39
typedef
struct
_PurpleTheme
PurpleTheme
;
40
typedef
struct
_PurpleThemeClass
PurpleThemeClass;
41
42
#define PURPLE_TYPE_THEME (purple_theme_get_type ())
43
#define PURPLE_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PURPLE_TYPE_THEME, PurpleTheme))
44
#define PURPLE_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PURPLE_TYPE_THEME, PurpleThemeClass))
45
#define PURPLE_IS_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PURPLE_TYPE_THEME))
46
#define PURPLE_IS_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PURPLE_TYPE_THEME))
47
#define PURPLE_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PURPLE_TYPE_THEME, PurpleThemeClass))
48
49
struct
_PurpleTheme
50
{
51
GObject parent;
52
gpointer priv;
53
};
54
55
struct
_PurpleThemeClass
56
{
57
GObjectClass parent_class;
58
};
59
60
/**************************************************************************/
62
/**************************************************************************/
63
G_BEGIN_DECLS
64
69
GType
purple_theme_get_type
(
void
);
70
78
const
gchar *
purple_theme_get_name
(
PurpleTheme
*theme);
79
86
void
purple_theme_set_name
(
PurpleTheme
*theme,
const
gchar *name);
87
95
const
gchar *
purple_theme_get_description
(
PurpleTheme
*theme);
96
103
void
purple_theme_set_description
(
PurpleTheme
*theme,
const
gchar *description);
104
112
const
gchar *
purple_theme_get_author
(
PurpleTheme
*theme);
113
120
void
purple_theme_set_author
(
PurpleTheme
*theme,
const
gchar *author);
121
129
const
gchar *
purple_theme_get_type_string
(
PurpleTheme
*theme);
130
138
const
gchar *
purple_theme_get_dir
(
PurpleTheme
*theme);
139
146
void
purple_theme_set_dir
(
PurpleTheme
*theme,
const
gchar *dir);
147
155
const
gchar *
purple_theme_get_image
(
PurpleTheme
*theme);
156
164
gchar *
purple_theme_get_image_full
(
PurpleTheme
*theme);
165
172
void
purple_theme_set_image
(
PurpleTheme
*theme,
const
gchar *img);
173
174
G_END_DECLS
175
#endif
/* PURPLE_THEME_H */
imgstore.h
IM Image Store API.
_PurpleThemeClass
Definition
theme.h:56
_PurpleTheme
Definition
theme.h:50
purple_theme_set_author
void purple_theme_set_author(PurpleTheme *theme, const gchar *author)
Sets the author of the PurpleTheme object.
purple_theme_set_name
void purple_theme_set_name(PurpleTheme *theme, const gchar *name)
Sets the name of the PurpleTheme object.
purple_theme_get_dir
const gchar * purple_theme_get_dir(PurpleTheme *theme)
Returns the directory of the PurpleTheme object.
purple_theme_get_name
const gchar * purple_theme_get_name(PurpleTheme *theme)
Returns the name of the PurpleTheme object.
purple_theme_set_dir
void purple_theme_set_dir(PurpleTheme *theme, const gchar *dir)
Sets the directory of the PurpleTheme object.
purple_theme_get_type
G_BEGIN_DECLS GType purple_theme_get_type(void)
GObject foo.
purple_theme_get_type_string
const gchar * purple_theme_get_type_string(PurpleTheme *theme)
Returns the type (string) of the PurpleTheme object.
purple_theme_get_description
const gchar * purple_theme_get_description(PurpleTheme *theme)
Returns the description of the PurpleTheme object.
purple_theme_get_author
const gchar * purple_theme_get_author(PurpleTheme *theme)
Returns the author of the PurpleTheme object.
purple_theme_get_image_full
gchar * purple_theme_get_image_full(PurpleTheme *theme)
Returns the image preview and directory of the PurpleTheme object.
purple_theme_get_image
const gchar * purple_theme_get_image(PurpleTheme *theme)
Returns the image preview of the PurpleTheme object.
purple_theme_set_image
void purple_theme_set_image(PurpleTheme *theme, const gchar *img)
Sets the directory of the PurpleTheme object.
PurpleTheme
struct _PurpleTheme PurpleTheme
A purple theme.
Definition
theme.h:39
purple_theme_set_description
void purple_theme_set_description(PurpleTheme *theme, const gchar *description)
Sets the description of the PurpleTheme object.
libpurple
theme.h
Generated on
for pidgin by
1.17.0