pidgin/prefs/pidginproxyprefs.h

changeset 41370
0ae2dfa4a5cf
child 41550
a1e1d5c248e4
equal deleted inserted replaced
41369:70144e5e0a89 41370:0ae2dfa4a5cf
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_PROXY_PREFS_H
28 #define PIDGIN_PROXY_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 * PidginProxyPrefs:
39 *
40 * #PidginProxyPrefs is a widget for the preferences window to let users
41 * choose and configure their proxy settings.
42 *
43 * Since: 3.0.0
44 */
45 #define PIDGIN_TYPE_PROXY_PREFS (pidgin_proxy_prefs_get_type())
46 G_DECLARE_FINAL_TYPE(PidginProxyPrefs, pidgin_proxy_prefs,
47 PIDGIN, PROXY_PREFS, HdyPreferencesPage)
48
49 /**
50 * pidgin_proxy_prefs_new:
51 *
52 * Creates a new #PidginProxyPrefs instance.
53 *
54 * Returns: (transfer full): The new #PidginProxyPrefs instance.
55 *
56 * Since: 3.0.0
57 */
58 GtkWidget *pidgin_proxy_prefs_new(void);
59
60 G_END_DECLS
61
62 #endif /* PIDGIN_PROXY_PREFS_H */

mercurial