fixed a crash when creating account
[empathy-mirror.git] / libempathy / empathy-ft-factory.h
blobcffb73301d14e735df0fe333e71e8e777d45078e
1 /*
2 * empathy-ft-factory.h - Header for EmpathyFTFactory
3 * Copyright (C) 2009 Collabora Ltd.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library 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 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
22 /* empathy-ft-factory.h */
24 #ifndef __EMPATHY_FT_FACTORY_H__
25 #define __EMPATHY_FT_FACTORY_H__
27 #include <glib-object.h>
28 #include <gio/gio.h>
30 #include "empathy-contact.h"
31 #include "empathy-ft-handler.h"
32 #include "empathy-dispatch-operation.h"
34 G_BEGIN_DECLS
36 #define EMPATHY_TYPE_FT_FACTORY empathy_ft_factory_get_type()
37 #define EMPATHY_FT_FACTORY(obj) \
38 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
39 EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactory))
40 #define EMPATHY_FT_FACTORY_CLASS(klass) \
41 (G_TYPE_CHECK_CLASS_CAST ((klass), \
42 EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass))
43 #define EMPATHY_IS_FT_FACTORY(obj) \
44 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_FT_FACTORY))
45 #define EMPATHY_IS_FT_FACTORY_CLASS(klass) \
46 (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_FT_FACTORY))
47 #define EMPATHY_FT_FACTORY_GET_CLASS(obj) \
48 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
49 EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass))
51 typedef struct {
52 GObject parent;
53 gpointer priv;
54 } EmpathyFTFactory;
56 typedef struct {
57 GObjectClass parent_class;
58 } EmpathyFTFactoryClass;
60 GType empathy_ft_factory_get_type (void);
62 /* public methods */
63 EmpathyFTFactory* empathy_ft_factory_dup_singleton (void);
64 void empathy_ft_factory_new_transfer_outgoing (EmpathyFTFactory *factory,
65 EmpathyContact *contact,
66 GFile *source);
67 void empathy_ft_factory_claim_channel (EmpathyFTFactory *factory,
68 EmpathyDispatchOperation *operation);
69 void empathy_ft_factory_set_destination_for_incoming_handler (
70 EmpathyFTFactory *factory,
71 EmpathyFTHandler *handler,
72 GFile *destination);
74 G_END_DECLS
76 #endif /* __EMPATHY_FT_FACTORY_H__ */