]> git.0d.be Git - empathy.git/blob - src/empathy-ft-manager.h
Clean up #include directives in source files
[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 <glib-object.h>
29
30 #include "empathy-ft-handler.h"
31
32 G_BEGIN_DECLS
33
34 #define EMPATHY_TYPE_FT_MANAGER \
35   (empathy_ft_manager_get_type ())
36 #define EMPATHY_FT_MANAGER(o) \
37   (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManager))
38 #define EMPATHY_FT_MANAGER_CLASS(k) \
39   (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManagerClass))
40 #define EMPATHY_IS_FT_MANAGER(o) \
41   (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_FT_MANAGER))
42 #define EMPATHY_IS_FT_MANAGER_CLASS(k) \
43   (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_FT_MANAGER))
44 #define EMPATHY_FT_MANAGER_GET_CLASS(o) \
45   (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_FT_MANAGER, EmpathyFTManagerClass))
46
47 typedef struct _EmpathyFTManager EmpathyFTManager;
48 typedef struct _EmpathyFTManagerClass EmpathyFTManagerClass;
49
50 struct _EmpathyFTManager {
51   GObject parent;
52   gpointer priv;
53 };
54
55 struct _EmpathyFTManagerClass {
56   GObjectClass parent_class;
57 };
58
59 GType empathy_ft_manager_get_type (void);
60
61 /* public methods */
62 void empathy_ft_manager_add_handler (EmpathyFTHandler *handler);
63 void empathy_ft_manager_display_error (EmpathyFTHandler *handler,
64   const GError *error);
65 void empathy_ft_manager_show (void);
66
67 G_END_DECLS
68
69 #endif /* __EMPATHY_FT_MANAGER_H__ */