aboutsummaryrefslogtreecommitdiff
path: root/src/setup/gnunet-setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/setup/gnunet-setup.h')
-rw-r--r--src/setup/gnunet-setup.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/setup/gnunet-setup.h b/src/setup/gnunet-setup.h
index bc7deef8..4864c902 100644
--- a/src/setup/gnunet-setup.h
+++ b/src/setup/gnunet-setup.h
@@ -32,6 +32,56 @@
32#include <gladeui/glade.h> 32#include <gladeui/glade.h>
33#include <gtk/gtk.h> 33#include <gtk/gtk.h>
34 34
35
36/**
37 * Columns in the gns setup model.
38 */
39enum GNUNET_GTK_SETUP_HostlistUrlModelColumns
40 {
41 /**
42 * A gchararray
43 */
44 GNUNET_GTK_SETUP_HOSTLIST_URL_MC_URL = 0,
45
46 /**
47 * A gboolean
48 */
49 GNUNET_GTK_SETUP_HOSTLIST_URL_MC_EDITABLE = 1,
50 };
51
52
53/**
54 * Columns in the hostlist url setup model.
55 */
56enum GNUNET_GTK_SETUP_GnsModelColumns
57 {
58 /**
59 * A gchararray
60 */
61 GNUNET_GTK_SETUP_GNS_MC_HOSTNAME = 0,
62
63 /**
64 * A guint
65 */
66 GNUNET_GTK_SETUP_GNS_MC_SOURCEPORT = 1,
67
68 /**
69 * A guint
70 */
71 GNUNET_GTK_SETUP_GNS_MC_TARGETPORT = 2,
72
73 /**
74 * A gchararray
75 */
76 GNUNET_GTK_SETUP_GNS_MC_TARGETHOSTNAME = 3,
77
78 /**
79 * A gchararray
80 */
81 GNUNET_GTK_SETUP_GNS_MC_ISUDP = 4,
82 };
83
84
35/** 85/**
36 * Get an object from the main window. 86 * Get an object from the main window.
37 * 87 *