pidgin/prefs/pidgincredentialprefs.h

changeset 41375
e7f3a586b63f
parent 41197
1fbba07f21cf
child 41520
a5dd595361b4
equal deleted inserted replaced
41374:ea87294eff71 41375:e7f3a586b63f
1 /*
2 * Pidgin - Internet Messenger
3 * Copyright (C) Pidgin Developers <devel@pidgin.im>
4 *
5 * Pidgin is the legal property of its developers, whose names are too numerous
6 * to list here. Please refer to the COPYRIGHT file distributed with this
7 * source distribution.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <https://www.gnu.org/licenses/>.
21 */
22
23 #if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION)
24 # error "only <pidgin.h> may be included directly"
25 #endif
26
27 #ifndef PIDGIN_CREDENTIAL_PREFS_H
28 #define PIDGIN_CREDENTIAL_PREFS_H
29
30 #include <glib.h>
31
32 #include <gtk/gtk.h>
33 #include <handy.h>
34
35 G_BEGIN_DECLS
36
37 /**
38 * PIDGIN_TYPE_CREDENTIAL_PREFS:
39 *
40 * The standard _get_type macro for #PidginCredentialPrefs.
41 *
42 * Since: 3.0.0
43 */
44 #define PIDGIN_TYPE_CREDENTIAL_PREFS (pidgin_credential_prefs_get_type())
45 G_DECLARE_FINAL_TYPE(PidginCredentialPrefs, pidgin_credential_prefs,
46 PIDGIN, CREDENTIAL_PREFS, HdyPreferencesPage)
47
48 /**
49 * PidginCredentialPrefs:
50 *
51 * #PidginCredentialPrefs is a widget for the preferences window to let users
52 * choose and configure their credential provider.
53 *
54 * Since: 3.0.0
55 */
56
57 /**
58 * pidgin_credential_prefs_new:
59 *
60 * Creates a new #PidginCredentialPrefs instance.
61 *
62 * Returns: (transfer full): The new #PidginCredentialPrefs instance.
63 *
64 * Since: 3.0.0
65 */
66 GtkWidget *pidgin_credential_prefs_new(void);
67
68 G_END_DECLS
69
70 #endif /* PIDGIN_CREDENTIAL_PREFS_H */

mercurial