aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-theme-manager.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-12-16 17:24:35 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-12-16 17:24:35 +0800
commit109f46a8278fc797ba526f69f44335063903066c (patch)
treee65ec3672e6c2df4ede307296d81adf348c7e560 /libempathy-gtk/empathy-theme-manager.h
parent031e66bd2b0b63a6d33d3242e24392e2109a82e2 (diff)
downloadgsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.gz
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.bz2
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.lz
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.xz
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.zst
gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.zip
Completely rework the theming system to make easy implementing themes based on other classes like webkit.
svn path=/trunk/; revision=1993
Diffstat (limited to 'libempathy-gtk/empathy-theme-manager.h')
-rw-r--r--libempathy-gtk/empathy-theme-manager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-theme-manager.h b/libempathy-gtk/empathy-theme-manager.h
index 5c0f579b9..05661d306 100644
--- a/libempathy-gtk/empathy-theme-manager.h
+++ b/libempathy-gtk/empathy-theme-manager.h
@@ -1,6 +1,7 @@
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2005-2007 Imendio AB
+ * Copyright (C) 2008 Collabora Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -16,12 +17,15 @@
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
*/
#ifndef __EMPATHY_THEME_MANAGER_H__
#define __EMPATHY_THEME_MANAGER_H__
#include <glib-object.h>
+#include "empathy-chat-view.h"
G_BEGIN_DECLS
@@ -44,14 +48,10 @@ struct _EmpathyThemeManagerClass {
GObjectClass parent_class;
};
-GType empathy_theme_manager_get_type (void) G_GNUC_CONST;
-EmpathyThemeManager *empathy_theme_manager_get (void);
-const gchar ** empathy_theme_manager_get_themes (void);
-void empathy_theme_manager_apply (EmpathyThemeManager *manager,
- EmpathyChatView *view,
- const gchar *theme);
-void empathy_theme_manager_apply_saved (EmpathyThemeManager *manager,
- EmpathyChatView *view);
+GType empathy_theme_manager_get_type (void) G_GNUC_CONST;
+EmpathyThemeManager * empathy_theme_manager_get (void);
+const gchar ** empathy_theme_manager_get_themes (void);
+EmpathyChatView * empathy_theme_manager_create_view (EmpathyThemeManager *manager);
G_END_DECLS