4514
|
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_ */
|