Fri, 31 Jan 2014 17:37:00 +0530
Remove entries in .hgignore that are covered by wider expressions
| 6371 | 1 | /** |
| 2 | * @file gtkprivacy.h GTK+ Privacy UI | |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* pidgin |
| 6371 | 7 | * |
| 15572 | 8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 8046 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
|
7035
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
11 | * |
| 6371 | 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 | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16254
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 6371 | 25 | */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
26 | #ifndef _PIDGINPRIVACY_H_ |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
27 | #define _PIDGINPRIVACY_H_ |
| 6371 | 28 | |
|
34586
9ed4700451cc
Refactored gtkprivacy to use the new API. Added (moved) gtkprivacy's UI ops to gtkaccount's UI ops.
Ankit Vani <a@nevitus.org>
parents:
32790
diff
changeset
|
29 | #include "account.h" |
| 6371 | 30 | |
|
32790
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
20147
diff
changeset
|
31 | G_BEGIN_DECLS |
|
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
20147
diff
changeset
|
32 | |
| 6371 | 33 | /** |
| 34 | * Initializes the GTK+ privacy subsystem. | |
| 35 | */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
36 | void pidgin_privacy_init(void); |
| 6371 | 37 | |
| 38 | /** | |
| 39 | * Shows the privacy dialog. | |
| 40 | */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
41 | void pidgin_privacy_dialog_show(void); |
| 6371 | 42 | |
| 43 | /** | |
| 44 | * Hides the privacy dialog. | |
| 45 | */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
46 | void pidgin_privacy_dialog_hide(void); |
| 6371 | 47 | |
| 48 | /** | |
| 49 | * Requests confirmation to add a user to the allow list for an account, | |
| 50 | * and then adds it. | |
| 51 | * | |
| 52 | * If @a name is not specified, an input dialog will be presented. | |
| 53 | * | |
|
37023
d9bcdc9a91e6
Revert changes to doc comments
Ankit Vani <a@nevitus.org>
parents:
37017
diff
changeset
|
54 | * @param account The account. |
|
d9bcdc9a91e6
Revert changes to doc comments
Ankit Vani <a@nevitus.org>
parents:
37017
diff
changeset
|
55 | * @param name The name of the user to add. |
| 6371 | 56 | */ |
| 15884 | 57 | void pidgin_request_add_permit(PurpleAccount *account, const char *name); |
| 6371 | 58 | |
| 59 | /** | |
| 60 | * Requests confirmation to add a user to the block list for an account, | |
| 61 | * and then adds it. | |
| 62 | * | |
| 63 | * If @a name is not specified, an input dialog will be presented. | |
| 64 | * | |
|
37023
d9bcdc9a91e6
Revert changes to doc comments
Ankit Vani <a@nevitus.org>
parents:
37017
diff
changeset
|
65 | * @param account The account. |
|
d9bcdc9a91e6
Revert changes to doc comments
Ankit Vani <a@nevitus.org>
parents:
37017
diff
changeset
|
66 | * @param name The name of the user to add. |
| 6371 | 67 | */ |
| 15884 | 68 | void pidgin_request_add_block(PurpleAccount *account, const char *name); |
| 6371 | 69 | |
|
32790
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
20147
diff
changeset
|
70 | G_END_DECLS |
|
b95c7c504118
Add G_BEGIN/END_DECLS to Pidgin public headers, most of which did
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
20147
diff
changeset
|
71 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
72 | #endif /* _PIDGINPRIVACY_H_ */ |