1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
/*
This file is part of GNUnet.
(C) 2005, 2006 Christian Grothoff (and other contributing authors)
GNUnet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2, or (at your
option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNUnet; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
/**
* @file src/core/main.c
* @brief Main function of gnunet-gtk
* @author Christian Grothoff
*/
#include "platform.h"
#include "gnunetgtk_common.h"
#include <GNUnet/gnunet_directories.h>
#include <GNUnet/gnunet_util_boot.h>
#include "eggtrayicon.h"
#ifdef WINDOWS
#include "wintrayicon.h"
static int debug_mode = NO;
#endif
static char * cfgFilename = DEFAULT_CLIENT_CONFIG_FILE;
/**
* All gnunet-gtk command line options
*/
static struct CommandLineOption gnunetgtkOptions[] = {
COMMAND_LINE_OPTION_CFG_FILE(&cfgFilename), /* -c */
#ifdef WINDOWS
{ 'd', "debug", NULL,
gettext_noop("run in debug mode"),
0, &gnunet_getopt_configure_set_one, &debug_mode },
#endif
COMMAND_LINE_OPTION_HELP(gettext_noop("GNUnet GTK user interface.")), /* -h */
COMMAND_LINE_OPTION_HOSTNAME, /* -H */
COMMAND_LINE_OPTION_LOGGING, /* -L */
COMMAND_LINE_OPTION_VERSION(VERSION), /* -v */
COMMAND_LINE_OPTION_VERBOSE,
COMMAND_LINE_OPTION_END,
};
static void * shutdownCode(void * unused) {
shutdownPlugins();
return NULL;
}
void gnunet_gtk_main_quit() {
GE_setDefaultContext(NULL);
run_with_save_calls(&shutdownCode,
NULL);
gtk_main_quit();
}
#if 0
static void customLog(const char * msg) {
addLogEntry("%s", msg);
}
#endif
int main(int argc,
char * argv[]) {
GtkWidget * root;
int i;
struct GE_Context * ectx;
struct GC_Configuration * cfg;
#ifdef WINDOWS
SetCursor(LoadCursor(NULL, IDC_APPSTARTING));
#endif
g_thread_init(NULL);
gtk_init(&argc, &argv);
i = GNUNET_init(argc,
(const char**) argv,
"gnunet-gtk",
&cfgFilename,
gnunetgtkOptions,
&ectx,
&cfg);
if (i == -1) {
GNUNET_fini(ectx, cfg);
return -1;
}
#ifdef WINDOWS
if (!debug_mode)
FreeConsole();
#endif
#if ENABLE_NLS
BINDTEXTDOMAIN("gnunet-gtk", PACKAGE_LOCALE_DIR);
textdomain("gnunet-gtk");
bind_textdomain_codeset("GNUnet", "UTF-8");
bind_textdomain_codeset("gnunet-gtk", "UTF-8");
#endif
initGNUnetGTKCommon(ectx,
cfg,
&gnunet_gtk_main_quit);
root
= glade_xml_get_widget(getMainXML(),
"mainWindow");
gtk_window_maximize(GTK_WINDOW(root));
#ifndef WINDOWS
initTrayIcon();
#endif
gtk_widget_show(root);
// GE_setDefaultContext(customLog);
/* start the event loop */
gdk_threads_enter();
#ifdef WINDOWS
SetCursor(LoadCursor(NULL, IDC_ARROW));
#endif
gtk_main();
gdk_threads_leave();
doneGNUnetGTKCommon();
GNUNET_fini(ectx, cfg);
return 0;
}
/* ************* end of main.c ************ */
|