Updated for release
[empathy-mirror.git] / libempathy-gtk / empathy-theme-manager.h
blobd20a916e1245aacccf56c42e330c0f8a22608778
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2005-2007 Imendio AB
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.
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.
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.
20 * Authors: Richard Hult <richard@imendio.com>
23 #ifndef __EMPATHY_THEME_MANAGER_H__
24 #define __EMPATHY_THEME_MANAGER_H__
26 #include <glib-object.h>
28 #include "empathy-chat-view.h"
30 G_BEGIN_DECLS
32 #define EMPATHY_TYPE_THEME_MANAGER (empathy_theme_manager_get_type ())
33 #define EMPATHY_THEME_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManager))
34 #define EMPATHY_THEME_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManagerClass))
35 #define EMPATHY_IS_THEME_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_THEME_MANAGER))
36 #define EMPATHY_IS_THEME_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_THEME_MANAGER))
37 #define EMPATHY_THEME_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_THEME_MANAGER, EmpathyThemeManagerClass))
39 typedef struct _EmpathyThemeManager EmpathyThemeManager;
40 typedef struct _EmpathyThemeManagerClass EmpathyThemeManagerClass;
42 struct _EmpathyThemeManager {
43 GObject parent;
46 struct _EmpathyThemeManagerClass {
47 GObjectClass parent_class;
50 GType empathy_theme_manager_get_type (void) G_GNUC_CONST;
51 EmpathyThemeManager *empathy_theme_manager_get (void);
52 const gchar ** empathy_theme_manager_get_themes (void);
53 void empathy_theme_manager_apply (EmpathyThemeManager *manager,
54 EmpathyChatView *view,
55 const gchar *theme);
56 void empathy_theme_manager_apply_saved (EmpathyThemeManager *manager,
57 EmpathyChatView *view);
58 void empathy_theme_manager_update_show_avatars (EmpathyThemeManager *manager,
59 EmpathyChatView *view,
60 gboolean show);
62 G_END_DECLS
64 #endif /* __EMPATHY_THEME_MANAGER_H__ */