diff options
Diffstat (limited to 'src/fs/gnunet-fs-gtk_anonymity-widgets.h')
-rw-r--r-- | src/fs/gnunet-fs-gtk_anonymity-widgets.h | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.h b/src/fs/gnunet-fs-gtk_anonymity-widgets.h new file mode 100644 index 00000000..9dcb090c --- /dev/null +++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.h | |||
@@ -0,0 +1,80 @@ | |||
1 | /* | ||
2 | This file is part of GNUnet | ||
3 | (C) 2005, 2006, 2010, 2012 Christian Grothoff (and other contributing authors) | ||
4 | |||
5 | GNUnet is free software; you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published | ||
7 | by the Free Software Foundation; either version 2, or (at your | ||
8 | option) any later version. | ||
9 | |||
10 | GNUnet is distributed in the hope that it will be useful, but | ||
11 | WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
13 | General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with GNUnet; see the file COPYING. If not, write to the | ||
17 | Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
18 | Boston, MA 02111-1307, USA. | ||
19 | */ | ||
20 | |||
21 | /** | ||
22 | * @file src/fs/gnunet-fs-gtk_anonymtiy-widgets.h | ||
23 | * @author Christian Grothoff | ||
24 | * @brief operations to manage user's anonymity level selections | ||
25 | */ | ||
26 | #ifndef GNUNET_FS_GTK_ANONYMITY_SPIN_BUTTONS_H | ||
27 | #define GNUNET_FS_GTK_ANONYMITY_SPIN_BUTTONS_H | ||
28 | |||
29 | #include "gnunet-fs-gtk-common.h" | ||
30 | #include <gdk/gdk.h> | ||
31 | |||
32 | |||
33 | /** | ||
34 | * Obtain the numeric anonymity level selected by a GtkComboBox. | ||
35 | * | ||
36 | * @param builder builder for looking up widgets | ||
37 | * @param combo_name name of the GtkComboBox with the anonymity selection | ||
38 | * @param p_level where to store the anonymity level | ||
39 | * @return TRUE on success, FALSE on failure | ||
40 | */ | ||
41 | gboolean | ||
42 | GNUNET_GTK_get_selected_anonymity_level (GtkBuilder * builder, | ||
43 | gchar * combo_name, guint * p_level); | ||
44 | |||
45 | |||
46 | /** | ||
47 | * Obtain the numeric anonymity level selected by a GtkComboBox. | ||
48 | * | ||
49 | * @param combo the GtkComboBox with the anonymity selection | ||
50 | * @param p_level where to store the anonymity level | ||
51 | * @return TRUE on success, FALSE on failure | ||
52 | */ | ||
53 | gboolean | ||
54 | GNUNET_GTK_get_selected_anonymity_combo_level (GtkComboBox *combo, guint *p_level); | ||
55 | |||
56 | |||
57 | /** | ||
58 | * Set the anonymity level displayed by a combo box. | ||
59 | * | ||
60 | * @param builder the builder of the combo box | ||
61 | * @param combo_name name of the combo box | ||
62 | * @param sel_level desired anonymity level | ||
63 | * @return TRUE on success, FALSE on failure | ||
64 | */ | ||
65 | gboolean | ||
66 | GNUNET_GTK_select_anonymity_level (GtkBuilder * builder, gchar * combo_name, | ||
67 | guint sel_level); | ||
68 | |||
69 | |||
70 | /** | ||
71 | * Set the anonymity level displayed by a combo box. | ||
72 | * | ||
73 | * @param combo the combo box | ||
74 | * @param sel_level desired anonymity level | ||
75 | * @return TRUE on success, FALSE on failure | ||
76 | */ | ||
77 | gboolean | ||
78 | GNUNET_GTK_select_anonymity_combo_level (GtkComboBox *combo, guint sel_level); | ||
79 | |||
80 | #endif | ||