]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-file.h
21007291d315ad003c9cabb4df90293eaac05a12
[empathy.git] / libempathy / empathy-tp-file.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  * Copyright (C) 2007 Marco Barisione <marco@barisione.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * Authors: Marco Barisione <marco@barisione.org>
21  *          Jonny Lamb <jonny.lamb@collabora.co.uk>
22  */
23
24 #ifndef __EMPATHY_TP_FILE_H__
25 #define __EMPATHY_TP_FILE_H__
26
27 #include <gio/gio.h>
28 #include <glib.h>
29
30 #include <telepathy-glib/channel.h>
31 #include <libtelepathy/tp-constants.h>
32
33 #include <extensions/extensions.h>
34
35 #include "empathy-contact.h"
36
37 #include <libmissioncontrol/mc-account.h>
38
39 #include "empathy-tp-file.h"
40
41 G_BEGIN_DECLS
42
43 #define EMPATHY_TP_FILE_UNKNOWN_SIZE G_MAXUINT64
44
45 #define EMPATHY_TYPE_TP_FILE         (empathy_tp_file_get_type ())
46 #define EMPATHY_TP_FILE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_TP_FILE, EmpathyTpFile))
47 #define EMPATHY_TP_FILE_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_TP_FILE, EmpathyTpFileClass))
48 #define EMPATHY_IS_TP_FILE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_TP_FILE))
49 #define EMPATHY_IS_TP_FILE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_TP_FILE))
50 #define EMPATHY_TP_FILE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_TP_FILE, EmpathyTpFileClass))
51
52 typedef struct _EmpathyTpFile EmpathyTpFile;
53 typedef struct _EmpathyTpFilePriv EmpathyTpFilePriv;
54 typedef struct _EmpathyTpFileClass EmpathyTpFileClass;
55
56 struct _EmpathyTpFile
57 {
58   GObject      parent;
59
60   EmpathyTpFilePriv *priv;
61 };
62
63 struct _EmpathyTpFileClass
64 {
65   GObjectClass parent_class;
66 };
67
68 GType empathy_tp_file_get_type (void) G_GNUC_CONST;
69
70 EmpathyTpFile *empathy_tp_file_new (McAccount *account, TpChannel *channel);
71
72 TpChannel *empathy_tp_file_get_channel (EmpathyTpFile *tp_file);
73 void empathy_tp_file_accept (EmpathyTpFile *tp_file, guint64 offset);
74 void empathy_tp_file_cancel (EmpathyTpFile *tp_file);
75 void empathy_tp_file_offer (EmpathyTpFile *tp_file);
76
77 const gchar *empathy_tp_file_get_id (EmpathyTpFile *tp_file);
78 guint64 empathy_tp_file_get_transferred_bytes (EmpathyTpFile *tp_file);
79 EmpathyContact *empathy_tp_file_get_contact (EmpathyTpFile *tp_file);
80 GInputStream *empathy_tp_file_get_input_stream (EmpathyTpFile *tp_file);
81 GOutputStream *empathy_tp_file_get_output_stream (EmpathyTpFile *tp_file);
82 const gchar *empathy_tp_file_get_filename (EmpathyTpFile *tp_file);
83 gboolean empathy_tp_file_get_incoming (EmpathyTpFile *tp_file);
84 EmpFileTransferState empathy_tp_file_get_state (EmpathyTpFile *tp_file);
85 EmpFileTransferStateChangeReason empathy_tp_file_get_state_change_reason (EmpathyTpFile *tp_file);
86 guint64 empathy_tp_file_get_size (EmpathyTpFile *tp_file);
87 guint64 empathy_tp_file_get_transferred_bytes (EmpathyTpFile *tp_file);
88 gint empathy_tp_file_get_remaining_time (EmpathyTpFile *tp_file);
89
90 void empathy_tp_file_set_input_stream (EmpathyTpFile *tp_file, GInputStream *uri);
91 void empathy_tp_file_set_output_stream (EmpathyTpFile *tp_file, GOutputStream *uri);
92 void empathy_tp_file_set_filename (EmpathyTpFile *tp_file, const gchar *filename);
93
94 G_END_DECLS
95
96 #endif /* __EMPATHY_TP_FILE_H__ */