Mercurial > pidgin
annotate finch/gntft.h @ 29554:41e557b8d38c
jabber: Use the jabber-specific function that is guaranteed to always be SHA1
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Mon, 08 Mar 2010 22:51:42 +0000 |
parents | c38d72677c8a |
children | 1cdae196aac8 |
rev | line source |
---|---|
15817 | 1 /** |
2 * @file gntft.h GNT File Transfer UI | |
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
15870
diff
changeset
|
3 * @ingroup finch |
20074
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19681
diff
changeset
|
4 */ |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19681
diff
changeset
|
5 |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19681
diff
changeset
|
6 /* finch |
15817 | 7 * |
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
8 * Finch is the legal property of its developers, whose names are too numerous |
15817 | 9 * to list here. Please refer to the COPYRIGHT file distributed with this |
10 * source distribution. | |
11 * | |
12 * This program is free software; you can redistribute it and/or modify | |
13 * it under the terms of the GNU General Public License as published by | |
14 * the Free Software Foundation; either version 2 of the License, or | |
15 * (at your option) any later version. | |
16 * | |
17 * This program is distributed in the hope that it will be useful, | |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
23 * along with this program; if not, write to the Free Software | |
19681
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16201
diff
changeset
|
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
15817 | 25 */ |
15822 | 26 #ifndef _FINCHFT_H_ |
27 #define _FINCHFT_H_ | |
15817 | 28 |
29 #include "ft.h" | |
30 | |
31 | |
32 /**************************************************************************/ | |
33 /** @name GNT File Transfer Dialog API */ | |
34 /**************************************************************************/ | |
35 /*@{*/ | |
36 | |
37 /** | |
38 * Creates a new file transfer dialog. | |
39 * | |
40 * @return The new dialog. | |
41 */ | |
42 void finch_xfer_dialog_new(void); | |
43 | |
44 /** | |
45 * Destroys a file transfer dialog. | |
46 */ | |
47 void finch_xfer_dialog_destroy(void); | |
48 | |
49 /** | |
50 * Displays the file transfer dialog given. | |
51 * If dialog is @c NULL, displays the default dialog, creating one if necessary | |
52 */ | |
53 void finch_xfer_dialog_show(void); | |
54 | |
55 /** | |
56 * Hides the file transfer dialog. | |
57 */ | |
22007
c38d72677c8a
Probe for -Wstrict-prototypes to get some more warnings. I then cleaned up
Richard Laager <rlaager@wiktel.com>
parents:
20074
diff
changeset
|
58 void finch_xfer_dialog_hide(void); |
15817 | 59 |
60 /** | |
61 * Adds a file transfer to the dialog. | |
62 * | |
63 * @param xfer The file transfer. | |
64 */ | |
15822 | 65 void finch_xfer_dialog_add_xfer(PurpleXfer *xfer); |
15817 | 66 |
67 /** | |
68 * Removes a file transfer from the dialog. | |
69 * | |
70 * @param xfer The file transfer. | |
71 */ | |
15822 | 72 void finch_xfer_dialog_remove_xfer(PurpleXfer *xfer); |
15817 | 73 |
74 /** | |
75 * Indicate in a file transfer dialog that a transfer was canceled. | |
76 * | |
77 * @param xfer The file transfer that was canceled. | |
78 */ | |
15822 | 79 void finch_xfer_dialog_cancel_xfer(PurpleXfer *xfer); |
15817 | 80 |
81 /** | |
82 * Updates the information for a transfer in the dialog. | |
83 * | |
84 * @param xfer The file transfer. | |
85 */ | |
15822 | 86 void finch_xfer_dialog_update_xfer(PurpleXfer *xfer); |
15817 | 87 |
88 /*@}*/ | |
89 | |
90 /**************************************************************************/ | |
91 /** @name GNT File Transfer API */ | |
92 /**************************************************************************/ | |
93 /*@{*/ | |
94 | |
95 /** | |
96 * Initializes the GNT file transfer system. | |
97 */ | |
98 void finch_xfers_init(void); | |
99 | |
100 /** | |
101 * Uninitializes the GNT file transfer system. | |
102 */ | |
103 void finch_xfers_uninit(void); | |
104 | |
105 /** | |
106 * Returns the UI operations structure for the GNT file transfer UI. | |
107 * | |
108 * @return The GNT file transfer UI operations structure. | |
109 */ | |
15822 | 110 PurpleXferUiOps *finch_xfers_get_ui_ops(void); |
15817 | 111 |
112 /*@}*/ | |
113 | |
15822 | 114 #endif /* _FINCHFT_H_ */ |