]> git.0d.be Git - empathy.git/blob - libempathy/empathy-ft-factory.h
Updated Swedish translation
[empathy.git] / libempathy / empathy-ft-factory.h
1 /*
2  * empathy-ft-factory.h - Header for EmpathyFTFactory
3  * Copyright (C) 2009 Collabora Ltd.
4  *
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.
9  *
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.
14  *
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
18  *
19  * Author: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
20  */
21
22 /* empathy-ft-factory.h */
23
24 #ifndef __EMPATHY_FT_FACTORY_H__
25 #define __EMPATHY_FT_FACTORY_H__
26
27 #include <glib-object.h>
28 #include <gio/gio.h>
29
30 #include "empathy-contact.h"
31 #include "empathy-ft-handler.h"
32
33 G_BEGIN_DECLS
34
35 #define EMPATHY_TYPE_FT_FACTORY empathy_ft_factory_get_type()
36 #define EMPATHY_FT_FACTORY(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
38    EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactory))
39 #define EMPATHY_FT_FACTORY_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST ((klass), \
41    EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass))
42 #define EMPATHY_IS_FT_FACTORY(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_FT_FACTORY))
44 #define EMPATHY_IS_FT_FACTORY_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_FT_FACTORY))
46 #define EMPATHY_FT_FACTORY_GET_CLASS(obj) \
47   (G_TYPE_INSTANCE_GET_CLASS ((obj), \
48    EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass))
49
50 typedef struct {
51   GObject parent;
52   gpointer priv;
53 } EmpathyFTFactory;
54
55 typedef struct {
56   GObjectClass parent_class;
57 } EmpathyFTFactoryClass;
58
59 GType empathy_ft_factory_get_type (void);
60
61 /* public methods */
62 EmpathyFTFactory* empathy_ft_factory_dup_singleton (void);
63 void empathy_ft_factory_new_transfer_outgoing (EmpathyFTFactory *factory,
64     EmpathyContact *contact,
65     GFile *source,
66     gint64 user_action_time);
67 void empathy_ft_factory_set_destination_for_incoming_handler (
68     EmpathyFTFactory *factory,
69     EmpathyFTHandler *handler,
70     GFile *destination);
71
72 gboolean empathy_ft_factory_register (EmpathyFTFactory *self,
73     GError **error);
74
75 G_END_DECLS
76
77 #endif /* __EMPATHY_FT_FACTORY_H__ */
78