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