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