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