]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-theme-manager.h
Updated Basque translation.
[empathy.git] / libempathy-gtk / empathy-theme-manager.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __EMPATHY_THEME_MANAGER_H__
22 #define __EMPATHY_THEME_MANAGER_H__
23
24 #include <glib-object.h>
25
26 G_BEGIN_DECLS
27
28 #define EMPATHY_TYPE_THEME_MANAGER         (empathy_theme_manager_get_type ())
29 #define EMPATHY_THEME_MANAGER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManager))
30 #define EMPATHY_THEME_MANAGER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManagerClass))
31 #define EMPATHY_IS_THEME_MANAGER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_THEME_MANAGER))
32 #define EMPATHY_IS_THEME_MANAGER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_THEME_MANAGER))
33 #define EMPATHY_THEME_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManagerClass))
34
35 typedef struct _EmpathyThemeManager      EmpathyThemeManager;
36 typedef struct _EmpathyThemeManagerClass EmpathyThemeManagerClass;
37
38 struct _EmpathyThemeManager {
39         GObject parent;
40         gpointer priv;
41 };
42
43 struct _EmpathyThemeManagerClass {
44         GObjectClass parent_class;
45 };
46
47 GType               empathy_theme_manager_get_type            (void) G_GNUC_CONST;
48 EmpathyThemeManager *empathy_theme_manager_get                 (void);
49 const gchar **      empathy_theme_manager_get_themes          (void);
50 void                empathy_theme_manager_apply               (EmpathyThemeManager *manager,
51                                                               EmpathyChatView     *view,
52                                                               const gchar        *theme);
53 void                empathy_theme_manager_apply_saved         (EmpathyThemeManager *manager,
54                                                               EmpathyChatView     *view);
55
56 G_END_DECLS
57
58 #endif /* __EMPATHY_THEME_MANAGER_H__ */