]> git.0d.be Git - empathy.git/blob - src/empathy-ft-manager.h
Merge branch 'sasl'
[empathy.git] / src / empathy-ft-manager.h
1 /*
2  * Copyright (C) 2007 Marco Barisione <marco@barisione.org>
3  * Copyright (C) 2008-2009 Collabora Ltd.
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., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Marco Barisione <marco@barisione.org>
21  *          Jonny Lamb <jonny.lamb@collabora.co.uk>
22  *          Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23  */
24
25 #ifndef __EMPATHY_FT_MANAGER_H__
26 #define __EMPATHY_FT_MANAGER_H__
27
28 #include <gtk/gtk.h>
29 #include <glib-object.h>
30 #include <glib.h>
31
32 #include <libempathy/empathy-ft-handler.h>
33
34 G_BEGIN_DECLS
35
36 #define EMPATHY_TYPE_FT_MANAGER \
37   (empathy_ft_manager_get_type ())
38 #define EMPATHY_FT_MANAGER(o) \
39   (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManager))
40 #define EMPATHY_FT_MANAGER_CLASS(k) \
41   (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManagerClass))
42 #define EMPATHY_IS_FT_MANAGER(o) \
43   (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_FT_MANAGER))
44 #define EMPATHY_IS_FT_MANAGER_CLASS(k) \
45   (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_FT_MANAGER))
46 #define EMPATHY_FT_MANAGER_GET_CLASS(o) \
47   (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManagerClass))
48
49 typedef struct _EmpathyFTManager EmpathyFTManager;
50 typedef struct _EmpathyFTManagerClass EmpathyFTManagerClass;
51
52 struct _EmpathyFTManager {
53   GObject parent;
54   gpointer priv;
55 };
56
57 struct _EmpathyFTManagerClass {
58   GObjectClass parent_class;
59 };
60
61 GType empathy_ft_manager_get_type (void);
62
63 /* public methods */
64 void empathy_ft_manager_add_handler (EmpathyFTHandler *handler);
65 void empathy_ft_manager_display_error (EmpathyFTHandler *handler,
66   const GError *error);
67 void empathy_ft_manager_show (void);
68
69 G_END_DECLS
70
71 #endif /* __EMPATHY_FT_MANAGER_H__ */