comparison src/gtkft.h @ 4514:7521e29658bc

[gaim-migrate @ 4792] Of course, file transfer wasn't really gone.. I'm trying my hardest to bring on the end of the world (see the roadmap at http://gaim.sf.net/roadmap.png). File transfer is being rewritten. This isn't the finished implementation, but it's enough to let us get the prpls working. There is now a file transfer dialog, which will appear when you get a new transfer request or when you go to Tools -> File Transfers. This is of course core/UI split. I'll also be working on documentation on how to write FT support in a prpl. Oh, and I'll get resumes and transfer batches done when school isn't breathing down my back. Only DCC receive in IRC currently works. Sorry. We'll get the other prpls working soon, as well as send. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 04 Feb 2003 06:57:35 +0000
parents
children d03fcb3f4be2
comparison
equal deleted inserted replaced
4513:adb0245e1dfc 4514:7521e29658bc
1 /**
2 * @file gtkft.h The GTK+ file transfer UI
3 *
4 * gaim
5 *
6 * Copyright (C) 2003, Christian Hammond <chipx86@gnupdate.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23 #ifndef _GAIM_GTK_FT_H_
24 #define _GAIM_GTK_FT_H_
25
26 /**************************************************************************/
27 /** @name GTK+ File Transfer API */
28 /**************************************************************************/
29 /*@{*/
30
31 /**
32 * Displays the file transfer dialog.
33 */
34 void gaim_gtkxfer_dialog_show(void);
35
36 /**
37 * Hides the file transfer dialog.
38 */
39 void gaim_gtkxfer_dialog_hide(void);
40
41 /**
42 * Returns the UI operations structure for the GTK+ file transfer UI.
43 *
44 * @return The GTK+ file transfer UI operations structure.
45 */
46 struct gaim_xfer_ui_ops *gaim_get_gtk_xfer_ui_ops(void);
47
48 /*@}*/
49
50 #endif /* _GAIM_GTK_FT_H_ */