aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-file-priv.h
blob: 8f1b215ef44c02fe1e59f66a6fd1f2407f80f7c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2007 Marco Barisione <marco@barisione.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifndef __EMPATHY_TP_FILE_PRIV_H__
#define __EMPATHY_TP_FILE_PRIV_H__

#include <glib.h>

#include <gio/gio.h>

#include "empathy-file.h"
#include "empathy-tp-file.h"

#include <libmissioncontrol/mc-account.h>

G_BEGIN_DECLS

guint64                                 _empathy_tp_file_get_transferred_bytes   (EmpathyTpFile   *tp_file);
EmpathyContact *                        _empathy_tp_file_get_contact             (EmpathyTpFile   *tp_file);
GInputStream *                          _empathy_tp_file_get_input_stream        (EmpathyTpFile   *tp_file);
GOutputStream *                         _empathy_tp_file_get_output_stream       (EmpathyTpFile   *tp_file);
const gchar *                           _empathy_tp_file_get_filename            (EmpathyTpFile   *tp_file);
EmpFileTransferDirection          _empathy_tp_file_get_direction           (EmpathyTpFile   *tp_file);
EmpFileTransferState              _empathy_tp_file_get_state               (EmpathyTpFile   *tp_file);
EmpFileTransferStateChangeReason  _empathy_tp_file_get_state_change_reason (EmpathyTpFile   *tp_file);
guint64                                 _empathy_tp_file_get_size                (EmpathyTpFile   *tp_file);
guint64                                 _empathy_tp_file_get_transferred_bytes   (EmpathyTpFile   *tp_file);
gint                                    _empathy_tp_file_get_remaining_time      (EmpathyTpFile   *tp_file);

void                                    _empathy_tp_file_set_input_stream        (EmpathyTpFile   *tp_file,
                                        GInputStream  *uri);
void                                    _empathy_tp_file_set_output_stream       (EmpathyTpFile   *tp_file,
                                        GOutputStream *uri);
void                                    _empathy_tp_file_set_filename            (EmpathyTpFile   *tp_file,
                                        const gchar   *filename);

G_END_DECLS

#endif /* __EMPATHY_TP_FILE_PRIV_H__ */