Mercurial > pidgin.yaz
annotate src/main.c @ 5745:cae58ab49118
[gaim-migrate @ 6169]
This should fix the infinite loop on disconnect in Trepia.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 04 Jun 2003 08:59:33 +0000 (2003-06-04) |
parents | 5cd96052bc45 |
children | 7ec0cd751e6b |
rev | line source |
---|---|
4489 | 1 /* |
2 * gaim | |
3 * | |
4 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
22 #ifdef HAVE_CONFIG_H | |
23 #include <config.h> | |
24 #endif | |
25 #ifdef GAIM_PLUGINS | |
26 #ifndef _WIN32 | |
27 #include <dlfcn.h> | |
28 #endif | |
29 #endif /* GAIM_PLUGINS */ | |
30 #include <gtk/gtk.h> | |
31 #ifndef _WIN32 | |
32 #include <gdk/gdkx.h> | |
33 #include <unistd.h> | |
34 #include <sys/socket.h> | |
35 #include <netinet/in.h> | |
36 #include <arpa/inet.h> | |
37 #include <sys/un.h> | |
38 #include <sys/wait.h> | |
39 #endif /* !_WIN32 */ | |
40 #include <gdk/gdk.h> | |
41 #include <sys/types.h> | |
42 #include <sys/stat.h> | |
43 #include <errno.h> | |
44 #include <stdio.h> | |
45 #include <string.h> | |
46 #include <stdarg.h> | |
47 #include <stdlib.h> | |
48 #include <ctype.h> | |
49 #include "prpl.h" | |
4561 | 50 #include "sound.h" |
5684 | 51 #include "gtksound.h" |
4489 | 52 #include "gaim.h" |
53 #include "gaim-socket.h" | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
54 #include "account.h" |
5440 | 55 #include "prefs.h" |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
56 #include "notify.h" |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
57 #include "gtkaccount.h" |
5228
1a53330dfd34
[gaim-migrate @ 5598]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
58 #include "gtkblist.h" |
5717 | 59 #include "gtkconn.h" |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
60 #include "gtkdebug.h" |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
61 #include "gtknotify.h" |
5492
a75a952d78db
[gaim-migrate @ 5888]
Christian Hammond <chipx86@chipx86.com>
parents:
5480
diff
changeset
|
62 #include "gtkrequest.h" |
5684 | 63 #include "gtksound.h" |
4489 | 64 #if HAVE_SIGNAL_H |
65 #include <signal.h> | |
66 #endif | |
67 #include "locale.h" | |
68 #include <getopt.h> | |
69 | |
70 #ifdef _WIN32 | |
71 #include "win32dep.h" | |
72 #endif | |
73 | |
74 static GtkWidget *name; | |
75 static GtkWidget *pass; | |
76 | |
77 GList *log_conversations = NULL; | |
78 GSList *away_messages = NULL; | |
79 GSList *message_queue = NULL; | |
80 GSList *unread_message_queue = NULL; | |
81 GSList *away_time_queue = NULL; | |
82 | |
83 GtkWidget *mainwindow = NULL; | |
84 | |
4561 | 85 |
4489 | 86 int opt_away = 0; |
4687 | 87 int docklet_count = 0; |
4489 | 88 char *opt_away_arg = NULL; |
89 char *opt_rcfile_arg = NULL; | |
90 int opt_debug = 0; | |
91 #ifdef _WIN32 | |
92 int opt_gdebug = 0; | |
93 #endif | |
94 | |
95 #if HAVE_SIGNAL_H | |
96 /* | |
97 * Lists of signals we wish to catch and those we wish to ignore. | |
98 * Each list terminated with -1 | |
99 */ | |
100 static int catch_sig_list[] = { | |
101 SIGSEGV, | |
102 SIGHUP, | |
103 SIGINT, | |
104 SIGTERM, | |
105 SIGQUIT, | |
106 SIGCHLD, | |
107 -1 | |
108 }; | |
109 | |
110 static int ignore_sig_list[] = { | |
111 SIGPIPE, | |
112 -1 | |
113 }; | |
114 #endif | |
115 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
116 STATIC_PROTO_INIT |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
117 |
4489 | 118 void do_quit() |
119 { | |
120 /* captain's log, stardate... */ | |
121 system_log(log_quit, NULL, NULL, OPT_LOG_BUDDY_SIGNON | OPT_LOG_MY_SIGNON); | |
122 | |
123 /* the self destruct sequence has been initiated */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
124 gaim_event_broadcast(event_quit); |
4489 | 125 |
126 /* transmission ends */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
127 gaim_connections_disconnect_all(); |
4489 | 128 |
129 /* record what we have before we blow it away... */ | |
5534 | 130 gaim_prefs_sync(); |
5573
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
131 gaim_accounts_sync(); |
4489 | 132 |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
133 gaim_debug(GAIM_DEBUG_INFO, "main", "Unloading all plugins\n"); |
5242
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
134 gaim_plugins_destroy_all(); |
4489 | 135 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
136 /* XXX */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
137 #if 0 |
4489 | 138 #ifdef USE_PERL |
139 /* yup, perl too */ | |
140 perl_end(); | |
141 #endif | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
142 #endif |
4489 | 143 |
144 #ifdef USE_SM | |
145 /* unplug */ | |
146 session_end(); | |
147 #endif | |
148 | |
149 /* and end it all... */ | |
150 gtk_main_quit(); | |
151 } | |
152 | |
4561 | 153 static guint snd_tmout = 0; |
4489 | 154 static gboolean sound_timeout(gpointer data) |
155 { | |
5684 | 156 gaim_gtk_sound_set_login_mute(FALSE); |
4561 | 157 snd_tmout = 0; |
4489 | 158 return FALSE; |
159 } | |
160 | |
161 /* we need to do this for Oscar because serv_login only starts the login | |
162 * process, it doesn't end there. gaim_setup will be called later from | |
163 * oscar.c, after the buddy list is made and serv_finish_login is called */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
164 void gaim_setup(GaimConnection *gc) |
4489 | 165 { |
5734 | 166 if (gaim_prefs_get_bool("/gaim/gtk/sound/enabled/login") |
167 && gaim_prefs_get_bool("/gaim/gtk/sound/silent_signon")) { | |
4561 | 168 if(snd_tmout) { |
169 g_source_remove(snd_tmout); | |
170 } | |
5684 | 171 gaim_gtk_sound_set_login_mute(TRUE); |
4489 | 172 snd_tmout = g_timeout_add(10000, sound_timeout, NULL); |
173 } | |
174 } | |
175 | |
176 static gboolean domiddleclick(GtkWidget *w, GdkEventButton *event, gpointer null) | |
177 { | |
178 if (event->button != 2) | |
179 return FALSE; | |
180 | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
181 /* TODO auto_login(); */ |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
182 |
4489 | 183 return TRUE; |
184 } | |
185 | |
186 static void dologin(GtkWidget *widget, GtkWidget *w) | |
187 { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
188 GaimAccount *account; |
4489 | 189 const char *username = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(name)->entry)); |
190 const char *password = gtk_entry_get_text(GTK_ENTRY(pass)); | |
191 | |
192 if (!strlen(username)) { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
193 gaim_notify_error(NULL, NULL, _("Please enter your login."), NULL); |
4489 | 194 return; |
195 } | |
196 | |
197 /* if there is more than one user of the same name, then fuck | |
198 * them, they just have to use the account editor to sign in | |
199 * the second one */ | |
200 | |
4491 | 201 account = gaim_account_find(username, -1); |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
202 if (!account) { |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
203 account = gaim_account_new(username, GAIM_PROTO_DEFAULT); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
204 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
205 gaim_account_set_remember_password(account, TRUE); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
206 } |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
207 |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
208 gaim_account_set_password(account, password); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
209 |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
210 gaim_account_connect(account); |
4489 | 211 } |
212 | |
213 /* <name> is a comma-separated list of names, or NULL | |
214 if NULL and there is at least one user defined in .gaimrc, try to login. | |
215 if not NULL, parse <name> into separate strings, look up each one in | |
216 .gaimrc and, if it's there, try to login. | |
217 returns: 0 if successful | |
218 -1 if no user was found that had a saved password | |
219 */ | |
220 static int dologin_named(char *name) | |
221 { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
222 GaimAccount *account; |
4489 | 223 char **names, **n; |
224 int retval = -1; | |
225 | |
226 if (name !=NULL) { /* list of names given */ | |
227 names = g_strsplit(name, ",", 32); | |
228 for (n = names; *n != NULL; n++) { | |
4491 | 229 account = gaim_account_find(*n, -1); |
230 if (account) { /* found a user */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
231 if (gaim_account_get_remember_password(account)) { |
4489 | 232 retval = 0; |
4491 | 233 serv_login(account); |
4489 | 234 } |
235 } | |
236 } | |
237 g_strfreev(names); | |
238 } else { /* no name given, use default */ | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
239 account = (GaimAccount *)gaim_accounts_get_all()->data; |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
240 |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
241 if (gaim_account_get_remember_password(account)) { |
4489 | 242 retval = 0; |
4491 | 243 serv_login(account); |
4489 | 244 } |
245 } | |
246 | |
247 return retval; | |
248 } | |
249 | |
250 | |
251 static void doenter(GtkWidget *widget, GtkWidget *w) | |
252 { | |
253 if (widget == name) { | |
254 gtk_entry_set_text(GTK_ENTRY(pass), ""); | |
4635 | 255 gtk_editable_select_region(GTK_EDITABLE(GTK_COMBO(name)->entry), 0, 0); |
4489 | 256 gtk_widget_grab_focus(pass); |
257 } else if (widget == pass) { | |
258 dologin(widget, w); | |
259 } | |
260 } | |
261 | |
262 | |
263 static void combo_changed(GtkWidget *w, GtkWidget *combo) | |
264 { | |
265 const char *txt = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(combo)->entry)); | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
266 GaimAccount *account; |
4489 | 267 |
4491 | 268 account = gaim_account_find(txt, -1); |
4489 | 269 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
270 if (account && gaim_account_get_remember_password(account)) { |
4491 | 271 gtk_entry_set_text(GTK_ENTRY(pass), account->password); |
4489 | 272 } else { |
273 gtk_entry_set_text(GTK_ENTRY(pass), ""); | |
274 } | |
275 } | |
276 | |
277 | |
278 static GList *combo_user_names() | |
279 { | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
280 GList *accts = gaim_accounts_get_all(); |
4489 | 281 GList *tmp = NULL; |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
282 GaimAccount *account; |
4489 | 283 |
4491 | 284 if (!accts) |
4489 | 285 return g_list_append(NULL, _("<New User>")); |
286 | |
4491 | 287 while (accts) { |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
288 account = (GaimAccount *)accts->data; |
4491 | 289 tmp = g_list_append(tmp, account->username); |
290 accts = accts->next; | |
4489 | 291 } |
292 | |
293 return tmp; | |
294 } | |
295 | |
296 static void login_window_closed(GtkWidget *w, GdkEvent *ev, gpointer d) | |
297 { | |
298 if(docklet_count) { | |
4880
9b51c090236a
[gaim-migrate @ 5210]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4800
diff
changeset
|
299 #ifdef _WIN32 |
4489 | 300 wgaim_systray_minimize(mainwindow); |
301 #endif | |
302 gtk_widget_hide(mainwindow); | |
303 } else | |
304 do_quit(); | |
305 } | |
306 | |
307 void show_login() | |
308 { | |
309 GtkWidget *image; | |
310 GtkWidget *vbox; | |
311 GtkWidget *button; | |
312 GtkWidget *hbox; | |
313 GtkWidget *label; | |
314 GtkWidget *vbox2; | |
315 GList *tmp; | |
316 | |
317 /* Do we already have a main window opened? If so, bring it back, baby... ribs... yeah */ | |
318 if (mainwindow) { | |
319 gtk_window_present(GTK_WINDOW(mainwindow)); | |
320 return; | |
321 } | |
322 | |
323 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
324 | |
325 gtk_window_set_role(GTK_WINDOW(mainwindow), "login"); | |
4635 | 326 gtk_window_set_resizable(GTK_WINDOW(mainwindow), FALSE); |
4703 | 327 gtk_window_set_title(GTK_WINDOW(mainwindow), _("Login")); |
4489 | 328 gtk_widget_realize(mainwindow); |
329 gdk_window_set_group(mainwindow->window, mainwindow->window); | |
330 gtk_container_set_border_width(GTK_CONTAINER(mainwindow), 5); | |
331 g_signal_connect(G_OBJECT(mainwindow), "delete_event", | |
332 G_CALLBACK(login_window_closed), mainwindow); | |
333 | |
334 vbox = gtk_vbox_new(FALSE, 0); | |
335 gtk_container_add(GTK_CONTAINER(mainwindow), vbox); | |
336 | |
5024 | 337 image = gtk_image_new_from_stock(GAIM_STOCK_LOGO, gtk_icon_size_from_name(GAIM_ICON_SIZE_LOGO)); |
4489 | 338 gtk_box_pack_start(GTK_BOX(vbox), image, FALSE, FALSE, 0); |
339 | |
340 vbox2 = gtk_vbox_new(FALSE, 0); | |
341 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
342 | |
343 label = gtk_label_new(_("Screen Name:")); | |
344 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
345 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
346 | |
347 name = gtk_combo_new(); | |
348 tmp = combo_user_names(); | |
349 gtk_combo_set_popdown_strings(GTK_COMBO(name), tmp); | |
350 g_list_free(tmp); | |
351 g_signal_connect(G_OBJECT(GTK_COMBO(name)->entry), "activate", | |
352 G_CALLBACK(doenter), mainwindow); | |
353 g_signal_connect(G_OBJECT(GTK_COMBO(name)->entry), "changed", | |
354 G_CALLBACK(combo_changed), name); | |
355 gtk_box_pack_start(GTK_BOX(vbox2), name, FALSE, TRUE, 0); | |
356 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
357 | |
358 vbox2 = gtk_vbox_new(FALSE, 0); | |
359 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
360 | |
361 label = gtk_label_new(_("Password:")); | |
362 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
363 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
364 | |
365 pass = gtk_entry_new(); | |
366 gtk_entry_set_visibility(GTK_ENTRY(pass), FALSE); | |
367 g_signal_connect(G_OBJECT(pass), "activate", | |
368 G_CALLBACK(doenter), mainwindow); | |
369 gtk_box_pack_start(GTK_BOX(vbox2), pass, FALSE, TRUE, 0); | |
370 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
371 | |
372 /* Now for the button box */ | |
373 hbox = gtk_hbox_new(TRUE, 0); | |
374 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 5); | |
375 | |
376 /* And now for the buttons */ | |
5024 | 377 button = gaim_pixbuf_button_from_stock(_("Accounts"), GAIM_STOCK_ACCOUNTS, GAIM_BUTTON_VERTICAL); |
4489 | 378 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
379 g_signal_connect(G_OBJECT(button), "clicked", | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
380 G_CALLBACK(gaim_gtk_account_dialog_show), mainwindow); |
4489 | 381 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
382 | |
383 #ifdef NO_MULTI | |
384 gtk_widget_set_sensitive(GTK_WIDGET(button), FALSE); | |
385 #endif | |
386 | |
5024 | 387 button = gaim_pixbuf_button_from_stock(_("Preferences"), GTK_STOCK_PREFERENCES, GAIM_BUTTON_VERTICAL); |
4489 | 388 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
389 g_signal_connect(G_OBJECT(button), "clicked", | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5492
diff
changeset
|
390 G_CALLBACK(gaim_gtk_prefs_show), mainwindow); |
4489 | 391 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
392 | |
5024 | 393 button = gaim_pixbuf_button_from_stock(_("Sign On"), GAIM_STOCK_SIGN_ON, GAIM_BUTTON_VERTICAL); |
4489 | 394 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
395 g_signal_connect(G_OBJECT(button), "clicked", | |
396 G_CALLBACK(dologin), mainwindow); | |
397 g_signal_connect(G_OBJECT(button), "button-press-event", G_CALLBACK(domiddleclick), NULL); | |
398 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
399 | |
400 /* Now grab the focus that we need */ | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
401 if (gaim_accounts_get_all()) { |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
402 GaimAccount *account = gaim_accounts_get_all()->data; |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
403 |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
404 if (gaim_account_get_remember_password(account)) { |
4489 | 405 combo_changed(NULL, name); |
406 gtk_widget_grab_focus(button); | |
407 } else { | |
408 gtk_widget_grab_focus(pass); | |
409 } | |
410 } else { | |
411 gtk_widget_grab_focus(name); | |
412 } | |
413 | |
414 /* And raise the curtain! */ | |
415 gtk_widget_show_all(mainwindow); | |
416 | |
417 } | |
418 | |
419 #if HAVE_SIGNAL_H | |
420 void sighandler(int sig) | |
421 { | |
422 switch (sig) { | |
423 case SIGHUP: | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
424 gaim_debug(GAIM_DEBUG_WARNING, "sighandler", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
425 "Caught signal %d\n", sig); |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
426 gaim_connections_disconnect_all(); |
4489 | 427 break; |
428 case SIGSEGV: | |
429 core_quit(); | |
430 #ifndef DEBUG | |
431 fprintf(stderr, "Gaim has segfaulted and attempted to dump a core file.\n" | |
432 "This is a bug in the software and has happened through\n" | |
433 "no fault of your own.\n\n" | |
434 "It is possible that this bug is already fixed in CVS.\n" | |
435 "You can get a tarball of CVS from the Gaim website, at\n" | |
436 WEBSITE "gaim-CVS.tar.gz.\n\n" | |
437 "If you are already using CVS, or can reproduce the crash\n" | |
438 "using the CVS version, please notify the gaim maintainers\n" | |
439 "by reporting a bug at\n" | |
440 WEBSITE "bug.php\n\n" | |
441 "Please make sure to specify what you were doing at the time,\n" | |
442 "and post the backtrace from the core file. If you do not know\n" | |
443 "how to get the backtrace, please get instructions at\n" | |
444 WEBSITE "gdb.php. If you need further\n" | |
445 "assistance, please IM either RobFlynn or SeanEgn and\n" | |
446 "they can help you.\n"); | |
447 #else | |
448 fprintf(stderr, "Oh no! Segmentation fault!\n"); | |
4703 | 449 /*g_on_error_query (g_get_prgname());*/ |
4489 | 450 exit(1); |
451 #endif | |
452 abort(); | |
453 break; | |
454 case SIGCHLD: | |
455 clean_pid(); | |
456 #if HAVE_SIGNAL_H | |
457 signal(SIGCHLD, sighandler); /* restore signal catching on this one! */ | |
458 #endif | |
459 break; | |
460 default: | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
461 gaim_debug(GAIM_DEBUG_WARNING, "sighandler", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
462 "Caught signal %d\n", sig); |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
463 gaim_connections_disconnect_all(); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
464 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
465 gaim_plugins_unload_all(); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
466 |
4489 | 467 if (gtk_main_level()) |
468 gtk_main_quit(); | |
469 core_quit(); | |
470 exit(0); | |
471 } | |
472 } | |
473 #endif | |
474 | |
475 #ifndef _WIN32 | |
476 static gboolean socket_readable(GIOChannel *source, GIOCondition cond, gpointer ud) | |
477 { | |
478 guchar type; | |
479 guchar subtype; | |
480 guint32 len; | |
481 guchar *data; | |
482 guint32 x; | |
4793 | 483 GError *error; |
4489 | 484 |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
485 gaim_debug(GAIM_DEBUG_INFO, "core socket", "Core says: "); |
4793 | 486 g_io_channel_read_chars(source, &type, sizeof(type), &x, &error); |
487 if(error) | |
4800 | 488 g_error_free(error); |
4489 | 489 if (x == 0) { |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
490 gaim_debug(GAIM_DEBUG_ERROR, NULL, "CORE IS GONE!\n"); |
4793 | 491 g_io_channel_shutdown(source, TRUE, &error); |
492 if(error) | |
493 g_free(error); | |
4489 | 494 return FALSE; |
495 } | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
496 gaim_debug(GAIM_DEBUG_INFO, NULL, "%d ", type); |
4793 | 497 g_io_channel_read_chars(source, &subtype, sizeof(subtype), &x, &error); |
498 if(error) | |
4800 | 499 g_error_free(error); |
4489 | 500 if (x == 0) { |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
501 gaim_debug(GAIM_DEBUG_ERROR, NULL, "CORE IS GONE!\n"); |
4793 | 502 g_io_channel_shutdown(source, TRUE, &error); |
503 if(error) | |
4800 | 504 g_error_free(error); |
4489 | 505 return FALSE; |
506 } | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
507 |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
508 gaim_debug(GAIM_DEBUG_INFO, NULL, "%d ", subtype); |
4793 | 509 g_io_channel_read_chars(source, (guchar *)&len, sizeof(len), &x, &error); |
510 if(error) | |
4800 | 511 g_error_free(error); |
4489 | 512 if (x == 0) { |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
513 gaim_debug(GAIM_DEBUG_ERROR, NULL, "CORE IS GONE!\n"); |
4793 | 514 g_io_channel_shutdown(source, TRUE, &error); |
515 if(error) | |
4800 | 516 g_error_free(error); |
4489 | 517 return FALSE; |
518 } | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
519 |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
520 gaim_debug(GAIM_DEBUG_INFO, NULL, "(%d bytes)\n", len); |
4489 | 521 |
522 data = g_malloc(len); | |
4793 | 523 g_io_channel_read_chars(source, data, len, &x, &error); |
524 if(error) | |
4800 | 525 g_error_free(error); |
4489 | 526 if (x != len) { |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
527 gaim_debug(GAIM_DEBUG_ERROR, "core socket", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
528 "CORE IS GONE! (read %d/%d bytes)\n", x, len); |
4489 | 529 g_free(data); |
4793 | 530 g_io_channel_shutdown(source, TRUE, &error); |
531 if(error) | |
4800 | 532 g_error_free(error); |
4489 | 533 return FALSE; |
534 } | |
535 | |
536 g_free(data); | |
537 return TRUE; | |
538 } | |
539 #endif /* _WIN32 */ | |
540 | |
541 static int ui_main() | |
542 { | |
543 #ifndef _WIN32 | |
544 GIOChannel *channel; | |
545 int UI_fd; | |
546 char name[256]; | |
547 GList *icons = NULL; | |
548 GdkPixbuf *icon = NULL; | |
549 char *icon_path; | |
550 #endif | |
4978 | 551 |
4489 | 552 if (current_smiley_theme == NULL) { |
553 smiley_theme_probe(); | |
554 if (smiley_themes) { | |
555 struct smiley_theme *smile = smiley_themes->data; | |
556 load_smiley_theme(smile->path, TRUE); | |
557 } | |
558 } | |
559 | |
5422 | 560 gaim_gtk_blist_setup_sort_methods(); |
4489 | 561 setup_stock(); |
562 | |
563 #ifndef _WIN32 | |
564 /* use the nice PNG icon for all the windows */ | |
5024 | 565 icon_path = g_build_filename(DATADIR, "pixmaps", "gaim", "icons", "online.png", NULL); |
4489 | 566 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
567 g_free(icon_path); | |
568 if (icon) { | |
569 icons = g_list_append(icons,icon); | |
570 gtk_window_set_default_icon_list(icons); | |
571 g_object_unref(G_OBJECT(icon)); | |
4978 | 572 g_list_free(icons); |
4489 | 573 } else { |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
574 gaim_debug(GAIM_DEBUG_ERROR, "ui_main", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
575 "Failed to load the default window icon!\n"); |
4489 | 576 } |
577 | |
578 g_snprintf(name, sizeof(name), "%s" G_DIR_SEPARATOR_S "gaim_%s.%d", g_get_tmp_dir(), g_get_user_name(), gaim_session); | |
579 UI_fd = gaim_connect_to_session(0); | |
580 if (UI_fd < 0) | |
581 return 1; | |
582 | |
583 channel = g_io_channel_unix_new(UI_fd); | |
584 g_io_add_watch(channel, G_IO_IN | G_IO_HUP | G_IO_ERR, socket_readable, NULL); | |
585 #endif | |
4978 | 586 |
4489 | 587 return 0; |
588 } | |
589 | |
590 static void set_first_user(char *name) | |
591 { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
592 GaimAccount *account; |
4489 | 593 |
4491 | 594 account = gaim_account_find(name, -1); |
4489 | 595 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
596 if (account == NULL) /* new user */ |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
597 account = gaim_account_new(name, GAIM_PROTO_DEFAULT); |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
598 |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
599 /* Place it as the first user. */ |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
600 gaim_accounts_reorder(account, 0); |
4489 | 601 } |
602 | |
603 #ifdef _WIN32 | |
604 /* WIN32 print and log handlers */ | |
605 | |
606 static void gaim_dummy_print( const gchar* string ) { | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
607 return; |
4489 | 608 } |
609 | |
610 static void gaim_dummy_log_handler (const gchar *domain, | |
611 GLogLevelFlags flags, | |
612 const gchar *msg, | |
613 gpointer user_data) { | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
614 return; |
4489 | 615 } |
616 | |
617 static void gaim_log_handler (const gchar *domain, | |
618 GLogLevelFlags flags, | |
619 const gchar *msg, | |
620 gpointer user_data) { | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
621 gaim_debug(GAIM_DEBUG_MISC, "log", "%s - %s\n", domain, msg); |
4489 | 622 g_log_default_handler(domain, flags, msg, user_data); |
623 } | |
624 #endif /* _WIN32 */ | |
625 | |
626 /* FUCKING GET ME A TOWEL! */ | |
627 #ifdef _WIN32 | |
628 int gaim_main(int argc, char *argv[]) | |
629 #else | |
630 int main(int argc, char *argv[]) | |
631 #endif | |
632 { | |
633 int opt_acct = 0, opt_help = 0, opt_version = 0, opt_login = 0, opt_nologin = 0, dologin_ret = -1; | |
634 char *opt_user_arg = NULL, *opt_login_arg = NULL; | |
635 char *opt_session_arg = NULL; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
636 char *plugin_search_paths[3]; |
4489 | 637 #if HAVE_SIGNAL_H |
638 int sig_indx; /* for setting up signal catching */ | |
639 sigset_t sigset; | |
640 void (*prev_sig_disp)(); | |
641 #endif | |
642 int opt, opt_user = 0; | |
643 int i; | |
644 | |
645 struct option long_options[] = { | |
646 {"acct", no_argument, NULL, 'a'}, | |
647 /*{"away", optional_argument, NULL, 'w'}, */ | |
648 {"help", no_argument, NULL, 'h'}, | |
649 /*{"login", optional_argument, NULL, 'l'}, */ | |
650 {"loginwin", no_argument, NULL, 'n'}, | |
651 {"user", required_argument, NULL, 'u'}, | |
652 {"file", required_argument, NULL, 'f'}, | |
653 {"debug", no_argument, NULL, 'd'}, | |
654 {"version", no_argument, NULL, 'v'}, | |
655 {"session", required_argument, NULL, 's'}, | |
656 {0, 0, 0, 0} | |
657 }; | |
658 | |
659 #ifdef DEBUG | |
660 opt_debug = 1; | |
661 #endif | |
662 | |
663 #ifdef ENABLE_NLS | |
664 bindtextdomain(PACKAGE, LOCALEDIR); | |
665 bind_textdomain_codeset(PACKAGE, "UTF-8"); | |
666 textdomain(PACKAGE); | |
667 #endif | |
668 | |
669 #if HAVE_SIGNAL_H | |
670 /* Let's not violate any PLA's!!!! */ | |
671 /* jseymour: whatever the fsck that means */ | |
672 /* Robot101: for some reason things like gdm like to block * | |
673 * useful signals like SIGCHLD, so we unblock all the ones we * | |
674 * declare a handler for. thanks JSeymour and Vann. */ | |
675 if (sigemptyset(&sigset)) { | |
676 char errmsg[BUFSIZ]; | |
5435 | 677 snprintf(errmsg, BUFSIZ, "Warning: couldn't initialise empty signal set"); |
4489 | 678 perror(errmsg); |
679 } | |
680 for(sig_indx = 0; catch_sig_list[sig_indx] != -1; ++sig_indx) { | |
681 if((prev_sig_disp = signal(catch_sig_list[sig_indx], sighandler)) == SIG_ERR) { | |
682 char errmsg[BUFSIZ]; | |
5435 | 683 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d for catching", |
4489 | 684 catch_sig_list[sig_indx]); |
685 perror(errmsg); | |
686 } | |
687 if(sigaddset(&sigset, catch_sig_list[sig_indx])) { | |
688 char errmsg[BUFSIZ]; | |
5435 | 689 snprintf(errmsg, BUFSIZ, "Warning: couldn't include signal %d for unblocking", |
4489 | 690 catch_sig_list[sig_indx]); |
691 perror(errmsg); | |
692 } | |
693 } | |
694 for(sig_indx = 0; ignore_sig_list[sig_indx] != -1; ++sig_indx) { | |
695 if((prev_sig_disp = signal(ignore_sig_list[sig_indx], SIG_IGN)) == SIG_ERR) { | |
696 char errmsg[BUFSIZ]; | |
5435 | 697 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d to ignore", |
4489 | 698 ignore_sig_list[sig_indx]); |
699 perror(errmsg); | |
700 } | |
701 } | |
702 | |
703 if (sigprocmask(SIG_UNBLOCK, &sigset, NULL)) { | |
704 char errmsg[BUFSIZ]; | |
5435 | 705 snprintf(errmsg, BUFSIZ, "Warning: couldn't unblock signals"); |
4489 | 706 perror(errmsg); |
707 } | |
708 #endif | |
709 | |
710 for (i = 0; i < argc; i++) { | |
711 /* --login option */ | |
712 if (strstr(argv[i], "--l") == argv[i]) { | |
713 char *equals; | |
714 opt_login = 1; | |
715 if ((equals = strchr(argv[i], '=')) != NULL) { | |
716 /* --login=NAME */ | |
717 opt_login_arg = g_strdup(equals + 1); | |
718 if (strlen(opt_login_arg) == 0) { | |
719 g_free(opt_login_arg); | |
720 opt_login_arg = NULL; | |
721 } | |
722 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
723 /* --login NAME */ | |
724 opt_login_arg = g_strdup(argv[i + 1]); | |
725 strcpy(argv[i + 1], " "); | |
726 } | |
727 strcpy(argv[i], " "); | |
728 } | |
729 /* -l option */ | |
730 else if (strstr(argv[i], "-l") == argv[i]) { | |
731 opt_login = 1; | |
732 if (strlen(argv[i]) > 2) { | |
733 /* -lNAME */ | |
734 opt_login_arg = g_strdup(argv[i] + 2); | |
735 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
736 /* -l NAME */ | |
737 opt_login_arg = g_strdup(argv[i + 1]); | |
738 strcpy(argv[i + 1], " "); | |
739 } | |
740 strcpy(argv[i], " "); | |
741 } | |
742 /* --away option */ | |
743 else if (strstr(argv[i], "--aw") == argv[i]) { | |
744 char *equals; | |
745 opt_away = 1; | |
746 if ((equals = strchr(argv[i], '=')) != NULL) { | |
747 /* --away=MESG */ | |
748 opt_away_arg = g_strdup(equals + 1); | |
749 if (strlen(opt_away_arg) == 0) { | |
750 g_free(opt_away_arg); | |
751 opt_away_arg = NULL; | |
752 } | |
753 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
754 /* --away MESG */ | |
755 opt_away_arg = g_strdup(argv[i + 1]); | |
756 strcpy(argv[i + 1], " "); | |
757 } | |
758 strcpy(argv[i], " "); | |
759 } | |
760 /* -w option */ | |
761 else if (strstr(argv[i], "-w") == argv[i]) { | |
762 opt_away = 1; | |
763 if (strlen(argv[i]) > 2) { | |
764 /* -wMESG */ | |
765 opt_away_arg = g_strdup(argv[i] + 2); | |
766 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
767 /* -w MESG */ | |
768 opt_away_arg = g_strdup(argv[i + 1]); | |
769 strcpy(argv[i + 1], " "); | |
770 } | |
771 strcpy(argv[i], " "); | |
772 } | |
773 } | |
774 /* | |
775 if (opt_login) { | |
776 printf ("--login given with arg %s\n", | |
777 opt_login_arg ? opt_login_arg : "NULL"); | |
778 exit(0); | |
779 } | |
780 */ | |
781 | |
782 gtk_set_locale(); | |
783 gtk_init(&argc, &argv); | |
784 | |
785 /* scan command-line options */ | |
786 opterr = 1; | |
787 while ((opt = getopt_long(argc, argv, | |
788 #ifndef _WIN32 | |
789 "adhu:f:vns:", | |
790 #else | |
791 "adghu:f:vn", | |
792 #endif | |
793 long_options, NULL)) != -1) { | |
794 switch (opt) { | |
795 case 'u': /* set user */ | |
796 opt_user = 1; | |
797 opt_user_arg = g_strdup(optarg); | |
798 break; | |
799 case 'a': /* account editor */ | |
800 opt_acct = 1; | |
801 break; | |
802 case 'd': /* debug */ | |
803 opt_debug = 1; | |
804 break; | |
805 case 'f': | |
806 opt_rcfile_arg = g_strdup(optarg); | |
807 break; | |
808 case 's': /* use existing session ID */ | |
809 opt_session_arg = g_strdup(optarg); | |
810 break; | |
811 case 'v': /* version */ | |
812 opt_version = 1; | |
813 break; | |
814 case 'h': /* help */ | |
815 opt_help = 1; | |
816 break; | |
817 case 'n': /* don't autologin */ | |
818 opt_nologin = 1; | |
819 break; | |
820 #ifdef _WIN32 | |
821 case 'g': /* debug GTK and GLIB */ | |
822 opt_gdebug = 1; | |
823 break; | |
824 #endif | |
825 case '?': | |
826 default: | |
827 show_usage(1, argv[0]); | |
828 return 0; | |
829 break; | |
830 } | |
831 } | |
832 | |
833 #ifdef _WIN32 | |
834 /* We don't want a console window.. */ | |
835 /* | |
836 * Any calls to the glib logging functions, result in a call to AllocConsole(). | |
837 * ME and 98 will in such cases produce a console window (2000 not), despite | |
838 * being built as a windows app rather than a console app. So we should either | |
839 * ignore messages by setting dummy log handlers, or redirect messages. | |
840 * This requires setting handlers for all domains (any lib which uses g_logging). | |
841 */ | |
842 | |
843 g_log_set_handler (NULL, G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
844 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
845 NULL); | |
846 g_log_set_handler ("Gdk", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
847 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
848 NULL); | |
849 g_log_set_handler ("Gtk", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
850 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
851 NULL); | |
852 g_log_set_handler ("GLib", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
853 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
854 NULL); | |
855 g_log_set_handler ("GModule", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
856 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
857 NULL); | |
858 g_log_set_handler ("GLib-GObject", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
859 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
860 NULL); | |
861 g_log_set_handler ("GThread", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, | |
862 (opt_gdebug ? gaim_log_handler : gaim_dummy_log_handler), | |
863 NULL); | |
864 | |
865 /* g_print also makes a call to AllocConsole(), therefore a handler needs to be | |
866 set here aswell */ | |
867 if(!opt_debug) | |
868 g_set_print_handler( gaim_dummy_print ); | |
869 | |
870 #endif | |
871 | |
872 /* show help message */ | |
873 if (opt_help) { | |
874 show_usage(0, argv[0]); | |
875 return 0; | |
876 } | |
877 /* show version message */ | |
878 if (opt_version) { | |
879 printf("Gaim %s\n",VERSION); | |
880 return 0; | |
881 } | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
882 |
5684 | 883 gaim_prefs_init(); |
884 gaim_gtk_prefs_init(); | |
885 | |
886 /* This kind of has to be here.. sucks, but it's important. */ | |
887 gaim_set_debug_ui_ops(gaim_get_gtk_debug_ui_ops()); | |
888 gaim_gtk_debug_init(); | |
889 | |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
890 /* Set the UI operation structures. */ |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
891 gaim_set_win_ui_ops(gaim_get_gtk_window_ui_ops()); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
892 gaim_set_xfer_ui_ops(gaim_get_gtk_xfer_ui_ops()); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
893 gaim_set_blist_ui_ops(gaim_get_gtk_blist_ui_ops()); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
894 gaim_set_notify_ui_ops(gaim_get_gtk_notify_ui_ops()); |
5480
f19620d8694f
[gaim-migrate @ 5876]
Christian Hammond <chipx86@chipx86.com>
parents:
5440
diff
changeset
|
895 gaim_set_request_ui_ops(gaim_get_gtk_request_ui_ops()); |
5684 | 896 gaim_set_sound_ui_ops(gaim_get_gtk_sound_ui_ops()); |
5717 | 897 gaim_set_connection_ui_ops(gaim_get_gtk_connection_ui_ops()); |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
898 |
5683
9befba33f7c8
[gaim-migrate @ 6102]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
899 gaim_proxy_init(); |
5684 | 900 gaim_sound_init(); |
5683
9befba33f7c8
[gaim-migrate @ 6102]
Christian Hammond <chipx86@chipx86.com>
parents:
5673
diff
changeset
|
901 |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5665
diff
changeset
|
902 gaim_gtk_conversation_init(); |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5665
diff
changeset
|
903 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
904 plugin_search_paths[0] = LIBDIR; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
905 plugin_search_paths[1] = gaim_user_dir(); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
906 plugin_search_paths[2] = g_strdup_printf("%s/plugins", gaim_user_dir()); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
907 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
908 gaim_plugins_set_search_paths(sizeof(plugin_search_paths) / |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
909 sizeof(*plugin_search_paths), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
910 plugin_search_paths); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
911 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
912 g_free(plugin_search_paths[2]); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
913 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
914 gaim_plugins_probe(NULL); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
915 |
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
916 if (!gaim_prefs_load()) { |
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
917 load_prefs(); |
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
918 gaim_prefs_sync(); |
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
919 } |
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
920 |
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
921 |
5581
3a9b54f260e3
[gaim-migrate @ 5985]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
922 gaim_accounts_load(); |
3a9b54f260e3
[gaim-migrate @ 5985]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
923 |
4489 | 924 #ifdef _WIN32 |
925 /* Various win32 initializations */ | |
926 wgaim_init(); | |
927 #endif | |
928 | |
929 core_main(); | |
5032
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
930 load_pounces(); |
4489 | 931 ui_main(); |
932 | |
933 #ifdef USE_SM | |
934 session_init(argv[0], opt_session_arg); | |
935 #endif | |
936 if (opt_session_arg != NULL) { | |
937 g_free(opt_session_arg); | |
938 opt_session_arg = NULL; | |
939 }; | |
940 | |
941 /* set the default username */ | |
942 if (opt_user_arg != NULL) { | |
943 set_first_user(opt_user_arg); | |
944 g_free(opt_user_arg); | |
945 opt_user_arg = NULL; | |
946 } | |
947 | |
5535 | 948 if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled")) |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
949 gaim_gtk_debug_window_show(); |
4489 | 950 |
951 static_proto_init(); | |
952 | |
953 /* deal with --login */ | |
954 if (opt_login) { | |
955 dologin_ret = dologin_named(opt_login_arg); | |
956 if (opt_login_arg != NULL) { | |
957 g_free(opt_login_arg); | |
958 opt_login_arg = NULL; | |
959 } | |
960 } | |
961 | |
962 if (!opt_acct && !opt_nologin && gaim_session == 0) | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
963 ; /* TODO auto_login(); */ |
4489 | 964 |
965 if (opt_acct) { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
966 gaim_gtk_account_dialog_show(); |
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
967 } else if ((dologin_ret == -1) && !gaim_connections_get_all()) |
4489 | 968 show_login(); |
969 | |
970 gtk_main(); | |
971 core_quit(); | |
5684 | 972 gaim_sound_shutdown(); |
4489 | 973 #ifdef _WIN32 |
974 wgaim_cleanup(); | |
975 #endif | |
976 return 0; | |
977 | |
978 } |