Updated French translation
[empathy-mirror.git] / src / empathy-ft-manager.h
blobbe41730ebeba12b380b5e1cbe0b1b6e70f4a2528
1 /*
2 * Copyright (C) 2007 Marco Barisione <marco@barisione.org>
3 * Copyright (C) 2008-2009 Collabora Ltd.
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., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301 USA
20 * Authors: Marco Barisione <marco@barisione.org>
21 * Jonny Lamb <jonny.lamb@collabora.co.uk>
22 * Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
25 #ifndef __EMPATHY_FT_MANAGER_H__
26 #define __EMPATHY_FT_MANAGER_H__
28 #include <glib-object.h>
30 #include "empathy-ft-handler.h"
32 G_BEGIN_DECLS
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))
47 typedef struct _EmpathyFTManager EmpathyFTManager;
48 typedef struct _EmpathyFTManagerClass EmpathyFTManagerClass;
50 struct _EmpathyFTManager {
51 GObject parent;
52 gpointer priv;
55 struct _EmpathyFTManagerClass {
56 GObjectClass parent_class;
59 GType empathy_ft_manager_get_type (void);
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);
67 G_END_DECLS
69 #endif /* __EMPATHY_FT_MANAGER_H__ */