Mercurial > pidgin
annotate src/main.c @ 7724:613b20c69d2c
[gaim-migrate @ 8369]
this didn't cause me any problems yesterday, and it compiles, and bug fixing is a good thing.
"Some month ago I introduced translatable texts for "gaim --help" and
"gaim-remote --help".
Unfortunately the output of the translated text is often unreadable.
The problem is, that Gaim's *.po files have the UTF-8 locale (because
this is the default charset for GTK+ 2.0). But the users may have
configured other locales. For instance my SuSE Linux 9.0 system is
configured with LANG=de_DE@euro. "euro" is ISO-8859-1 (Western
character set, 8 Bit, with the Euro currency symbol). Lots of UTF-8
characters are unreadable if they are displayed in a 8 Bit charset
without conversion. Only the 7 Bit chars are displayed right.
There are two possible solutions:
1) Make the console texts untranslatable. This isn't very clever.
2) Convert the texts from UTF-8 to user's locale.
I choose the second solution.
The conversion cannot be made during the translation, because gettext
does not allow a mix of different character sets in one po-file.
My patch converts the console strings from UTF-8 to users locale.
Normally this works right, because most users have a locale which is
compatible with their language.
The case where a user uses a language (for instance German:
LANG=de_DE) with an incompatible character set (for instance the 7Bit
charset LC_CTYPE=C) is also handled. The user then sees a warning and
the original UTF-8 message.
At first I tried to make a new UTF-8 function in src/util.c. But the
function is needed 5 times in src/gaim-remote.c and 2 times in
src/main.c. gaim-remote is not linked against util.o. Also there are a
lot of dependencies from util.o to other files, so I will introduce a
lot of trouble to link gaim-remote against util.o.
So I only wrote a function in src/gaim-remote.c and used the UTF-8
conversion inline in src/main.c." --Bjoern Voigt
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 03 Dec 2003 13:21:55 +0000 |
| parents | f48c6e4db102 |
| children | 565369d12874 |
| 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 | |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6313
diff
changeset
|
22 #include "gtkinternal.h" |
|
5872
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" |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
26 #include "core.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
27 #include "debug.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
28 #include "ft.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
29 #include "log.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
30 #include "notify.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
31 #include "prefs.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
32 #include "prpl.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
33 #include "pounce.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
34 #include "sound.h" |
| 6106 | 35 #include "status.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
36 #include "util.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
37 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
38 #include "gtkaccount.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
39 #include "gtkblist.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
40 #include "gtkconn.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
41 #include "gtkconv.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
42 #include "gtkdebug.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
43 #include "gtkft.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
44 #include "gtknotify.h" |
|
5875
448f2f4ca3ec
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5874
diff
changeset
|
45 #include "gtkpounce.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
46 #include "gtkprefs.h" |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6313
diff
changeset
|
47 #include "gtkprivacy.h" |
|
5872
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 |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
62 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
63 # define SN_API_NOT_YET_FROZEN |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
64 # include <libsn/sn-launchee.h> |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
65 # include <gdk/gdkx.h> |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
66 #endif |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
67 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
68 extern void load_prefs(); |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
69 extern void load_pounces(); |
| 4489 | 70 |
| 71 static GtkWidget *name; | |
| 72 static GtkWidget *pass; | |
| 73 | |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
74 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
75 static SnLauncheeContext *sn_context = NULL; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
76 static SnDisplay *sn_display = NULL; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
77 #endif |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
78 |
| 4489 | 79 GtkWidget *mainwindow = NULL; |
| 80 | |
| 81 int opt_away = 0; | |
| 4687 | 82 int docklet_count = 0; |
| 4489 | 83 char *opt_away_arg = NULL; |
| 84 char *opt_rcfile_arg = NULL; | |
| 85 int opt_debug = 0; | |
| 86 | |
| 87 #if HAVE_SIGNAL_H | |
| 88 /* | |
| 89 * Lists of signals we wish to catch and those we wish to ignore. | |
| 90 * Each list terminated with -1 | |
| 91 */ | |
| 92 static int catch_sig_list[] = { | |
| 93 SIGSEGV, | |
| 94 SIGHUP, | |
| 95 SIGINT, | |
| 96 SIGTERM, | |
| 97 SIGQUIT, | |
| 98 SIGCHLD, | |
| 99 -1 | |
| 100 }; | |
| 101 | |
| 102 static int ignore_sig_list[] = { | |
| 103 SIGPIPE, | |
| 104 -1 | |
| 105 }; | |
| 106 #endif | |
| 107 | |
| 4561 | 108 static guint snd_tmout = 0; |
| 4489 | 109 static gboolean sound_timeout(gpointer data) |
| 110 { | |
| 5684 | 111 gaim_gtk_sound_set_login_mute(FALSE); |
| 4561 | 112 snd_tmout = 0; |
| 4489 | 113 return FALSE; |
| 114 } | |
| 115 | |
| 116 /* we need to do this for Oscar because serv_login only starts the login | |
| 117 * process, it doesn't end there. gaim_setup will be called later from | |
| 118 * 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
|
119 void gaim_setup(GaimConnection *gc) |
| 4489 | 120 { |
| 5734 | 121 if (gaim_prefs_get_bool("/gaim/gtk/sound/enabled/login") |
| 122 && gaim_prefs_get_bool("/gaim/gtk/sound/silent_signon")) { | |
| 4561 | 123 if(snd_tmout) { |
| 124 g_source_remove(snd_tmout); | |
| 125 } | |
| 5684 | 126 gaim_gtk_sound_set_login_mute(TRUE); |
| 4489 | 127 snd_tmout = g_timeout_add(10000, sound_timeout, NULL); |
| 128 } | |
| 129 } | |
| 130 | |
| 131 static gboolean domiddleclick(GtkWidget *w, GdkEventButton *event, gpointer null) | |
| 132 { | |
| 133 if (event->button != 2) | |
| 134 return FALSE; | |
| 135 | |
|
5780
a9029bed0479
[gaim-migrate @ 6205]
Christian Hammond <chipx86@chipx86.com>
parents:
5766
diff
changeset
|
136 gaim_accounts_auto_login(GAIM_GTK_UI); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
137 |
| 4489 | 138 return TRUE; |
| 139 } | |
| 140 | |
| 141 static void dologin(GtkWidget *widget, GtkWidget *w) | |
| 142 { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
143 GaimAccount *account; |
| 4489 | 144 const char *username = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(name)->entry)); |
| 145 const char *password = gtk_entry_get_text(GTK_ENTRY(pass)); | |
| 146 | |
| 6036 | 147 if (*username == '\0') { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
148 gaim_notify_error(NULL, NULL, _("Please enter your login."), NULL); |
| 4489 | 149 return; |
| 150 } | |
| 151 | |
| 152 /* if there is more than one user of the same name, then fuck | |
| 153 * them, they just have to use the account editor to sign in | |
| 154 * the second one */ | |
| 155 | |
| 7132 | 156 account = gaim_accounts_find(username, NULL); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
157 if (!account) { |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5909
diff
changeset
|
158 account = gaim_account_new(username, "prpl-oscar"); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
159 gaim_account_set_remember_password(account, TRUE); |
| 6231 | 160 gaim_accounts_add(account); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
161 } |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
162 |
| 6036 | 163 gaim_account_set_password(account, (*password != '\0') ? password : NULL); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
164 |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
165 gaim_account_connect(account); |
| 4489 | 166 } |
| 167 | |
| 168 /* <name> is a comma-separated list of names, or NULL | |
| 169 if NULL and there is at least one user defined in .gaimrc, try to login. | |
| 170 if not NULL, parse <name> into separate strings, look up each one in | |
| 171 .gaimrc and, if it's there, try to login. | |
| 172 returns: 0 if successful | |
| 173 -1 if no user was found that had a saved password | |
| 174 */ | |
| 175 static int dologin_named(char *name) | |
| 176 { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
177 GaimAccount *account; |
| 4489 | 178 char **names, **n; |
| 179 int retval = -1; | |
| 180 | |
| 181 if (name !=NULL) { /* list of names given */ | |
| 182 names = g_strsplit(name, ",", 32); | |
| 183 for (n = names; *n != NULL; n++) { | |
| 7132 | 184 account = gaim_accounts_find(*n, NULL); |
| 4491 | 185 if (account) { /* found a user */ |
| 6231 | 186 retval = 0; |
| 187 gaim_account_connect(account); | |
| 4489 | 188 } |
| 189 } | |
| 190 g_strfreev(names); | |
| 191 } else { /* no name given, use default */ | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
192 account = (GaimAccount *)gaim_accounts_get_all()->data; |
| 6231 | 193 retval = 0; |
| 194 gaim_account_connect(account); | |
| 4489 | 195 } |
| 196 | |
| 197 return retval; | |
| 198 } | |
| 199 | |
| 200 | |
| 201 static void doenter(GtkWidget *widget, GtkWidget *w) | |
| 202 { | |
| 6109 | 203 gtk_entry_set_text(GTK_ENTRY(pass), ""); |
| 204 gtk_editable_select_region(GTK_EDITABLE(GTK_COMBO(name)->entry), 0, 0); | |
| 205 gtk_widget_grab_focus(pass); | |
| 4489 | 206 } |
| 207 | |
| 208 | |
| 209 static void combo_changed(GtkWidget *w, GtkWidget *combo) | |
| 210 { | |
| 211 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
|
212 GaimAccount *account; |
| 4489 | 213 |
| 7132 | 214 account = gaim_accounts_find(txt, NULL); |
| 4489 | 215 |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
216 if (account && gaim_account_get_remember_password(account)) { |
| 4491 | 217 gtk_entry_set_text(GTK_ENTRY(pass), account->password); |
| 4489 | 218 } else { |
| 219 gtk_entry_set_text(GTK_ENTRY(pass), ""); | |
| 220 } | |
| 221 } | |
| 222 | |
| 223 | |
| 224 static GList *combo_user_names() | |
| 225 { | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
226 GList *accts = gaim_accounts_get_all(); |
| 4489 | 227 GList *tmp = NULL; |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
228 GaimAccount *account; |
| 4489 | 229 |
| 4491 | 230 if (!accts) |
| 4489 | 231 return g_list_append(NULL, _("<New User>")); |
| 232 | |
| 4491 | 233 while (accts) { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
234 account = (GaimAccount *)accts->data; |
| 4491 | 235 tmp = g_list_append(tmp, account->username); |
| 236 accts = accts->next; | |
| 4489 | 237 } |
| 238 | |
| 239 return tmp; | |
| 240 } | |
| 241 | |
| 242 static void login_window_closed(GtkWidget *w, GdkEvent *ev, gpointer d) | |
| 243 { | |
| 244 if(docklet_count) { | |
|
4880
9b51c090236a
[gaim-migrate @ 5210]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4800
diff
changeset
|
245 #ifdef _WIN32 |
| 4489 | 246 wgaim_systray_minimize(mainwindow); |
| 247 #endif | |
| 248 gtk_widget_hide(mainwindow); | |
| 249 } else | |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
250 gaim_core_quit(); |
| 4489 | 251 } |
| 252 | |
| 253 void show_login() | |
| 254 { | |
| 255 GtkWidget *image; | |
| 256 GtkWidget *vbox; | |
| 257 GtkWidget *button; | |
| 258 GtkWidget *hbox; | |
| 259 GtkWidget *label; | |
| 260 GtkWidget *vbox2; | |
| 261 GList *tmp; | |
| 262 | |
| 263 /* Do we already have a main window opened? If so, bring it back, baby... ribs... yeah */ | |
| 264 if (mainwindow) { | |
| 265 gtk_window_present(GTK_WINDOW(mainwindow)); | |
| 266 return; | |
| 267 } | |
| 268 | |
| 269 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 270 | |
| 271 gtk_window_set_role(GTK_WINDOW(mainwindow), "login"); | |
| 4635 | 272 gtk_window_set_resizable(GTK_WINDOW(mainwindow), FALSE); |
| 4703 | 273 gtk_window_set_title(GTK_WINDOW(mainwindow), _("Login")); |
| 4489 | 274 gtk_widget_realize(mainwindow); |
| 275 gdk_window_set_group(mainwindow->window, mainwindow->window); | |
| 276 gtk_container_set_border_width(GTK_CONTAINER(mainwindow), 5); | |
| 277 g_signal_connect(G_OBJECT(mainwindow), "delete_event", | |
| 278 G_CALLBACK(login_window_closed), mainwindow); | |
| 279 | |
| 280 vbox = gtk_vbox_new(FALSE, 0); | |
| 281 gtk_container_add(GTK_CONTAINER(mainwindow), vbox); | |
| 282 | |
| 5024 | 283 image = gtk_image_new_from_stock(GAIM_STOCK_LOGO, gtk_icon_size_from_name(GAIM_ICON_SIZE_LOGO)); |
| 4489 | 284 gtk_box_pack_start(GTK_BOX(vbox), image, FALSE, FALSE, 0); |
| 285 | |
| 286 vbox2 = gtk_vbox_new(FALSE, 0); | |
| 287 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
| 288 | |
| 289 label = gtk_label_new(_("Screen Name:")); | |
| 290 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 291 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
| 292 | |
| 293 name = gtk_combo_new(); | |
| 294 tmp = combo_user_names(); | |
| 295 gtk_combo_set_popdown_strings(GTK_COMBO(name), tmp); | |
| 296 g_list_free(tmp); | |
| 297 g_signal_connect(G_OBJECT(GTK_COMBO(name)->entry), "activate", | |
| 298 G_CALLBACK(doenter), mainwindow); | |
| 299 g_signal_connect(G_OBJECT(GTK_COMBO(name)->entry), "changed", | |
| 300 G_CALLBACK(combo_changed), name); | |
| 301 gtk_box_pack_start(GTK_BOX(vbox2), name, FALSE, TRUE, 0); | |
| 302 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
| 303 | |
| 304 vbox2 = gtk_vbox_new(FALSE, 0); | |
| 305 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
| 306 | |
| 307 label = gtk_label_new(_("Password:")); | |
| 308 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 309 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
| 310 | |
| 311 pass = gtk_entry_new(); | |
| 312 gtk_entry_set_visibility(GTK_ENTRY(pass), FALSE); | |
| 313 g_signal_connect(G_OBJECT(pass), "activate", | |
| 6109 | 314 G_CALLBACK(dologin), mainwindow); |
| 4489 | 315 gtk_box_pack_start(GTK_BOX(vbox2), pass, FALSE, TRUE, 0); |
| 316 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
| 317 | |
| 318 /* Now for the button box */ | |
| 319 hbox = gtk_hbox_new(TRUE, 0); | |
| 320 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 5); | |
| 321 | |
| 322 /* And now for the buttons */ | |
| 5024 | 323 button = gaim_pixbuf_button_from_stock(_("Accounts"), GAIM_STOCK_ACCOUNTS, GAIM_BUTTON_VERTICAL); |
| 4489 | 324 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 325 g_signal_connect(G_OBJECT(button), "clicked", | |
|
6119
0d2bd49c611e
[gaim-migrate @ 6588]
Christian Hammond <chipx86@chipx86.com>
parents:
6109
diff
changeset
|
326 G_CALLBACK(gaim_gtk_accounts_window_show), mainwindow); |
| 4489 | 327 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 328 | |
| 329 #ifdef NO_MULTI | |
| 330 gtk_widget_set_sensitive(GTK_WIDGET(button), FALSE); | |
| 331 #endif | |
| 332 | |
| 5024 | 333 button = gaim_pixbuf_button_from_stock(_("Preferences"), GTK_STOCK_PREFERENCES, GAIM_BUTTON_VERTICAL); |
| 4489 | 334 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 335 g_signal_connect(G_OBJECT(button), "clicked", | |
|
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5492
diff
changeset
|
336 G_CALLBACK(gaim_gtk_prefs_show), mainwindow); |
| 4489 | 337 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 338 | |
| 6623 | 339 button = gaim_pixbuf_button_from_stock(_("Sign on"), GAIM_STOCK_SIGN_ON, GAIM_BUTTON_VERTICAL); |
| 4489 | 340 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 341 g_signal_connect(G_OBJECT(button), "clicked", | |
| 342 G_CALLBACK(dologin), mainwindow); | |
| 343 g_signal_connect(G_OBJECT(button), "button-press-event", G_CALLBACK(domiddleclick), NULL); | |
| 344 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 345 | |
| 346 /* Now grab the focus that we need */ | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
347 if (gaim_accounts_get_all()) { |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
348 GaimAccount *account = gaim_accounts_get_all()->data; |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
349 |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
350 if (gaim_account_get_remember_password(account)) { |
| 4489 | 351 combo_changed(NULL, name); |
| 352 gtk_widget_grab_focus(button); | |
| 353 } else { | |
| 354 gtk_widget_grab_focus(pass); | |
| 355 } | |
| 356 } else { | |
| 357 gtk_widget_grab_focus(name); | |
| 358 } | |
| 359 | |
| 360 /* And raise the curtain! */ | |
| 361 gtk_widget_show_all(mainwindow); | |
| 362 | |
| 363 } | |
| 364 | |
|
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
365 static void |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
366 clean_pid(void) |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
367 { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
368 #ifndef _WIN32 |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
369 int status; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
370 pid_t pid; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
371 |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
372 do { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
373 pid = waitpid(-1, &status, WNOHANG); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
374 } while (pid != 0 && pid != (pid_t)-1); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
375 if(pid == (pid_t)-1 && errno != ECHILD) { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
376 char errmsg[BUFSIZ]; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
377 snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
378 perror(errmsg); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
379 } |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
380 #endif |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
381 } |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
382 |
| 4489 | 383 #if HAVE_SIGNAL_H |
| 384 void sighandler(int sig) | |
| 385 { | |
| 386 switch (sig) { | |
| 387 case SIGHUP: | |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
388 gaim_debug(GAIM_DEBUG_WARNING, "sighandler", |
|
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
389 "Caught signal %d\n", sig); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
390 gaim_connections_disconnect_all(); |
| 4489 | 391 break; |
| 392 case SIGSEGV: | |
| 393 #ifndef DEBUG | |
| 394 fprintf(stderr, "Gaim has segfaulted and attempted to dump a core file.\n" | |
| 395 "This is a bug in the software and has happened through\n" | |
| 396 "no fault of your own.\n\n" | |
| 397 "It is possible that this bug is already fixed in CVS.\n" | |
| 5747 | 398 "If you can reproduce the crash, please notify the gaim\n" |
| 399 "maintainers by reporting a bug at\n" | |
|
6383
d6777fa16645
[gaim-migrate @ 6888]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
400 GAIM_WEBSITE "bug.php\n\n" |
| 4489 | 401 "Please make sure to specify what you were doing at the time,\n" |
| 402 "and post the backtrace from the core file. If you do not know\n" | |
| 403 "how to get the backtrace, please get instructions at\n" | |
|
6383
d6777fa16645
[gaim-migrate @ 6888]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
404 GAIM_WEBSITE "gdb.php. If you need further\n" |
| 4489 | 405 "assistance, please IM either RobFlynn or SeanEgn and\n" |
| 406 "they can help you.\n"); | |
| 407 #else | |
| 408 fprintf(stderr, "Oh no! Segmentation fault!\n"); | |
| 4703 | 409 /*g_on_error_query (g_get_prgname());*/ |
| 4489 | 410 #endif |
| 411 abort(); | |
| 412 break; | |
| 413 case SIGCHLD: | |
| 414 clean_pid(); | |
| 415 #if HAVE_SIGNAL_H | |
| 416 signal(SIGCHLD, sighandler); /* restore signal catching on this one! */ | |
| 417 #endif | |
| 418 break; | |
| 419 default: | |
|
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(); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
423 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
424 gaim_plugins_unload_all(); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
425 |
| 4489 | 426 if (gtk_main_level()) |
| 427 gtk_main_quit(); | |
| 428 exit(0); | |
| 429 } | |
| 430 } | |
| 431 #endif | |
| 432 | |
| 433 static int ui_main() | |
| 434 { | |
| 435 #ifndef _WIN32 | |
| 436 GList *icons = NULL; | |
| 437 GdkPixbuf *icon = NULL; | |
| 438 char *icon_path; | |
| 439 #endif | |
| 4978 | 440 |
| 4489 | 441 if (current_smiley_theme == NULL) { |
| 442 smiley_theme_probe(); | |
| 443 if (smiley_themes) { | |
| 444 struct smiley_theme *smile = smiley_themes->data; | |
| 445 load_smiley_theme(smile->path, TRUE); | |
| 446 } | |
| 447 } | |
| 448 | |
| 5422 | 449 gaim_gtk_blist_setup_sort_methods(); |
| 4489 | 450 |
| 451 #ifndef _WIN32 | |
| 452 /* use the nice PNG icon for all the windows */ | |
| 5024 | 453 icon_path = g_build_filename(DATADIR, "pixmaps", "gaim", "icons", "online.png", NULL); |
| 4489 | 454 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
| 455 g_free(icon_path); | |
| 456 if (icon) { | |
| 457 icons = g_list_append(icons,icon); | |
| 458 gtk_window_set_default_icon_list(icons); | |
| 459 g_object_unref(G_OBJECT(icon)); | |
| 4978 | 460 g_list_free(icons); |
| 4489 | 461 } else { |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
462 gaim_debug(GAIM_DEBUG_ERROR, "ui_main", |
|
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
463 "Failed to load the default window icon!\n"); |
| 4489 | 464 } |
| 465 #endif | |
| 4978 | 466 |
| 4489 | 467 return 0; |
| 468 } | |
| 469 | |
| 470 static void set_first_user(char *name) | |
| 471 { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
472 GaimAccount *account; |
| 4489 | 473 |
| 7132 | 474 account = gaim_accounts_find(name, NULL); |
| 4489 | 475 |
| 6231 | 476 if (account == NULL) { /* new user */ |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5909
diff
changeset
|
477 account = gaim_account_new(name, "prpl-oscar"); |
| 6231 | 478 gaim_accounts_add(account); |
| 479 } | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
480 |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
481 /* Place it as the first user. */ |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
482 gaim_accounts_reorder(account, 0); |
| 4489 | 483 } |
| 484 | |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
485 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
486 debug_init(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
487 { |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
488 gaim_debug_set_ui_ops(gaim_gtk_debug_get_ui_ops()); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
489 gaim_gtk_debug_init(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
490 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
491 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
492 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
493 gaim_gtk_ui_init(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
494 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
495 /* Set the UI operation structures. */ |
|
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
6890
diff
changeset
|
496 gaim_accounts_set_ui_ops(gaim_gtk_accounts_get_ui_ops()); |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
497 gaim_conversations_set_win_ui_ops(gaim_gtk_conversations_get_win_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
498 gaim_xfers_set_ui_ops(gaim_gtk_xfers_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
499 gaim_blist_set_ui_ops(gaim_gtk_blist_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
500 gaim_notify_set_ui_ops(gaim_gtk_notify_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
501 gaim_privacy_set_ui_ops(gaim_gtk_privacy_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
502 gaim_request_set_ui_ops(gaim_gtk_request_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
503 gaim_sound_set_ui_ops(gaim_gtk_sound_get_ui_ops()); |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
504 gaim_connections_set_ui_ops(gaim_gtk_connections_get_ui_ops()); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
505 |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
506 gaim_gtk_stock_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
507 gaim_gtk_prefs_init(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
508 gaim_gtk_blist_init(); |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
509 gaim_gtk_conversations_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
510 gaim_gtk_pounces_init(); |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6313
diff
changeset
|
511 gaim_gtk_privacy_init(); |
|
6263
3565ee7a5dd3
[gaim-migrate @ 6760]
Christian Hammond <chipx86@chipx86.com>
parents:
6231
diff
changeset
|
512 gaim_gtk_xfers_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
513 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
514 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
515 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
516 gaim_gtk_quit(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
517 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
518 /* XXX? */ |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
519 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
520 /* captain's log, stardate... */ |
| 7475 | 521 /* LOG system_log(log_quit, NULL, NULL, OPT_LOG_BUDDY_SIGNON | OPT_LOG_MY_SIGNON); */ |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
522 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
523 #ifdef USE_SM |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
524 /* unplug */ |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
525 session_end(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
526 #endif |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
527 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
528 /* and end it all... */ |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
529 gtk_main_quit(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
530 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
531 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
532 static GaimCoreUiOps core_ops = |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
533 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
534 gaim_gtk_prefs_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
535 debug_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
536 gaim_gtk_ui_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
537 gaim_gtk_quit |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
538 }; |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
539 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
540 static GaimCoreUiOps * |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
541 gaim_gtk_core_get_ui_ops(void) |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
542 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
543 return &core_ops; |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
544 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
545 |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
546 static void |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
547 show_usage(int mode, const char *name) |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
548 { |
| 7724 | 549 char *text=NULL; |
| 550 | |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
551 switch (mode) { |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
552 case 0: /* full help text */ |
| 7724 | 553 text=g_strdup_printf(_("Gaim %s\n" |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
554 "Usage: %s [OPTION]...\n\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
555 " -a, --acct display account editor window\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
556 " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
557 " name of away message to use)\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
558 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
559 " account(s) to use, seperated by commas)\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
560 " -n, --loginwin don't automatically login; show login window\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
561 " -u, --user=NAME use account NAME\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
562 " -f, --file=FILE use FILE as config\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
563 " -d, --debug print debugging messages to stdout\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
564 " -v, --version display the current version and exit\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
565 " -h, --help display this help and exit\n"), VERSION, name); |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
566 break; |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
567 case 1: /* short message */ |
| 7724 | 568 text=g_strdup_printf(_("Gaim %s. Try `%s -h' for more information.\n"), VERSION, name); |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
569 break; |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
570 } |
| 7724 | 571 |
| 572 if(text) { | |
| 573 char *text_conv; | |
| 574 GError *error=NULL; | |
| 575 | |
| 576 /* tries to convert 'text' to users locale */ | |
| 577 text_conv=g_locale_from_utf8(text,-1,NULL,NULL,&error); | |
| 578 if(text_conv) { | |
| 579 puts(text_conv); | |
| 580 g_free(text_conv); | |
| 581 } | |
| 582 /* use 'text' as a fallback */ | |
| 583 else { | |
| 584 g_warning("%s\n", error->message); | |
| 585 g_error_free(error); | |
| 586 puts(text); | |
| 587 } | |
| 588 g_free(text); | |
| 589 } | |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
590 } |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
591 |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
592 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
593 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
594 sn_error_trap_push(SnDisplay *display, Display *xdisplay) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
595 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
596 gdk_error_trap_push(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
597 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
598 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
599 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
600 sn_error_trap_pop(SnDisplay *display, Display *xdisplay) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
601 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
602 gdk_error_trap_pop(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
603 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
604 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
605 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
606 startup_notification_complete(void) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
607 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
608 Display *xdisplay; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
609 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
610 xdisplay = GDK_DISPLAY(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
611 sn_display = sn_display_new(xdisplay, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
612 sn_error_trap_push, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
613 sn_error_trap_pop); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
614 sn_context = |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
615 sn_launchee_context_new_from_environment(sn_display, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
616 DefaultScreen(xdisplay)); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
617 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
618 if (sn_context != NULL) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
619 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
620 sn_launchee_context_complete(sn_context); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
621 sn_launchee_context_unref(sn_context); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
622 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
623 sn_display_unref(sn_display); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
624 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
625 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
626 #endif /* HAVE_STARTUP_NOTIFICATION */ |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
627 |
| 4489 | 628 /* FUCKING GET ME A TOWEL! */ |
| 629 #ifdef _WIN32 | |
|
6890
4eee806af511
[gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6816
diff
changeset
|
630 int gaim_main(HINSTANCE hint, int argc, char *argv[]) |
| 4489 | 631 #else |
| 632 int main(int argc, char *argv[]) | |
| 633 #endif | |
| 634 { | |
| 635 int opt_acct = 0, opt_help = 0, opt_version = 0, opt_login = 0, opt_nologin = 0, dologin_ret = -1; | |
| 636 char *opt_user_arg = NULL, *opt_login_arg = NULL; | |
| 637 char *opt_session_arg = NULL; | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
638 char *plugin_search_paths[3]; |
| 4489 | 639 #if HAVE_SIGNAL_H |
| 640 int sig_indx; /* for setting up signal catching */ | |
| 641 sigset_t sigset; | |
| 642 void (*prev_sig_disp)(); | |
| 643 #endif | |
| 644 int opt, opt_user = 0; | |
| 645 int i; | |
| 7438 | 646 gboolean gui_check; |
| 4489 | 647 |
| 648 struct option long_options[] = { | |
| 649 {"acct", no_argument, NULL, 'a'}, | |
| 650 /*{"away", optional_argument, NULL, 'w'}, */ | |
| 651 {"help", no_argument, NULL, 'h'}, | |
| 652 /*{"login", optional_argument, NULL, 'l'}, */ | |
| 653 {"loginwin", no_argument, NULL, 'n'}, | |
| 654 {"user", required_argument, NULL, 'u'}, | |
| 655 {"file", required_argument, NULL, 'f'}, | |
| 656 {"debug", no_argument, NULL, 'd'}, | |
| 657 {"version", no_argument, NULL, 'v'}, | |
| 658 {"session", required_argument, NULL, 's'}, | |
| 659 {0, 0, 0, 0} | |
| 660 }; | |
| 661 | |
| 662 #ifdef DEBUG | |
| 663 opt_debug = 1; | |
| 664 #endif | |
| 665 #ifdef ENABLE_NLS | |
| 666 bindtextdomain(PACKAGE, LOCALEDIR); | |
| 667 bind_textdomain_codeset(PACKAGE, "UTF-8"); | |
| 668 textdomain(PACKAGE); | |
| 669 #endif | |
| 670 | |
| 671 #if HAVE_SIGNAL_H | |
| 672 /* Let's not violate any PLA's!!!! */ | |
| 673 /* jseymour: whatever the fsck that means */ | |
| 674 /* Robot101: for some reason things like gdm like to block * | |
| 675 * useful signals like SIGCHLD, so we unblock all the ones we * | |
| 676 * declare a handler for. thanks JSeymour and Vann. */ | |
| 677 if (sigemptyset(&sigset)) { | |
| 678 char errmsg[BUFSIZ]; | |
| 5435 | 679 snprintf(errmsg, BUFSIZ, "Warning: couldn't initialise empty signal set"); |
| 4489 | 680 perror(errmsg); |
| 681 } | |
| 682 for(sig_indx = 0; catch_sig_list[sig_indx] != -1; ++sig_indx) { | |
| 683 if((prev_sig_disp = signal(catch_sig_list[sig_indx], sighandler)) == SIG_ERR) { | |
| 684 char errmsg[BUFSIZ]; | |
| 5435 | 685 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d for catching", |
| 4489 | 686 catch_sig_list[sig_indx]); |
| 687 perror(errmsg); | |
| 688 } | |
| 689 if(sigaddset(&sigset, catch_sig_list[sig_indx])) { | |
| 690 char errmsg[BUFSIZ]; | |
| 5435 | 691 snprintf(errmsg, BUFSIZ, "Warning: couldn't include signal %d for unblocking", |
| 4489 | 692 catch_sig_list[sig_indx]); |
| 693 perror(errmsg); | |
| 694 } | |
| 695 } | |
| 696 for(sig_indx = 0; ignore_sig_list[sig_indx] != -1; ++sig_indx) { | |
| 697 if((prev_sig_disp = signal(ignore_sig_list[sig_indx], SIG_IGN)) == SIG_ERR) { | |
| 698 char errmsg[BUFSIZ]; | |
| 5435 | 699 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d to ignore", |
| 4489 | 700 ignore_sig_list[sig_indx]); |
| 701 perror(errmsg); | |
| 702 } | |
| 703 } | |
| 704 | |
| 705 if (sigprocmask(SIG_UNBLOCK, &sigset, NULL)) { | |
| 706 char errmsg[BUFSIZ]; | |
| 5435 | 707 snprintf(errmsg, BUFSIZ, "Warning: couldn't unblock signals"); |
| 4489 | 708 perror(errmsg); |
| 709 } | |
| 710 #endif | |
| 711 | |
| 712 for (i = 0; i < argc; i++) { | |
| 713 /* --login option */ | |
| 714 if (strstr(argv[i], "--l") == argv[i]) { | |
| 715 char *equals; | |
| 716 opt_login = 1; | |
| 717 if ((equals = strchr(argv[i], '=')) != NULL) { | |
| 718 /* --login=NAME */ | |
| 719 opt_login_arg = g_strdup(equals + 1); | |
| 720 if (strlen(opt_login_arg) == 0) { | |
| 721 g_free(opt_login_arg); | |
| 722 opt_login_arg = NULL; | |
| 723 } | |
| 724 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 725 /* --login NAME */ | |
| 726 opt_login_arg = g_strdup(argv[i + 1]); | |
| 727 strcpy(argv[i + 1], " "); | |
| 728 } | |
| 729 strcpy(argv[i], " "); | |
| 730 } | |
| 731 /* -l option */ | |
| 732 else if (strstr(argv[i], "-l") == argv[i]) { | |
| 733 opt_login = 1; | |
| 734 if (strlen(argv[i]) > 2) { | |
| 735 /* -lNAME */ | |
| 736 opt_login_arg = g_strdup(argv[i] + 2); | |
| 737 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 738 /* -l NAME */ | |
| 739 opt_login_arg = g_strdup(argv[i + 1]); | |
| 740 strcpy(argv[i + 1], " "); | |
| 741 } | |
| 742 strcpy(argv[i], " "); | |
| 743 } | |
| 744 /* --away option */ | |
| 745 else if (strstr(argv[i], "--aw") == argv[i]) { | |
| 746 char *equals; | |
| 747 opt_away = 1; | |
| 748 if ((equals = strchr(argv[i], '=')) != NULL) { | |
| 749 /* --away=MESG */ | |
| 750 opt_away_arg = g_strdup(equals + 1); | |
| 751 if (strlen(opt_away_arg) == 0) { | |
| 752 g_free(opt_away_arg); | |
| 753 opt_away_arg = NULL; | |
| 754 } | |
| 755 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 756 /* --away MESG */ | |
| 757 opt_away_arg = g_strdup(argv[i + 1]); | |
| 758 strcpy(argv[i + 1], " "); | |
| 759 } | |
| 760 strcpy(argv[i], " "); | |
| 761 } | |
| 762 /* -w option */ | |
| 763 else if (strstr(argv[i], "-w") == argv[i]) { | |
| 764 opt_away = 1; | |
| 765 if (strlen(argv[i]) > 2) { | |
| 766 /* -wMESG */ | |
| 767 opt_away_arg = g_strdup(argv[i] + 2); | |
| 768 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 769 /* -w MESG */ | |
| 770 opt_away_arg = g_strdup(argv[i + 1]); | |
| 771 strcpy(argv[i + 1], " "); | |
| 772 } | |
| 773 strcpy(argv[i], " "); | |
| 774 } | |
| 775 } | |
| 776 /* | |
| 777 if (opt_login) { | |
| 778 printf ("--login given with arg %s\n", | |
| 779 opt_login_arg ? opt_login_arg : "NULL"); | |
| 780 exit(0); | |
| 781 } | |
| 782 */ | |
| 783 | |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
784 gui_check = gtk_init_check(&argc, &argv); |
| 4489 | 785 |
| 786 /* scan command-line options */ | |
| 787 opterr = 1; | |
| 788 while ((opt = getopt_long(argc, argv, | |
| 789 #ifndef _WIN32 | |
| 790 "adhu:f:vns:", | |
| 791 #else | |
|
7212
42ef0c41cefb
[gaim-migrate @ 7781]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7168
diff
changeset
|
792 "adhu:f:vn", |
| 4489 | 793 #endif |
| 794 long_options, NULL)) != -1) { | |
| 795 switch (opt) { | |
| 796 case 'u': /* set user */ | |
| 797 opt_user = 1; | |
| 798 opt_user_arg = g_strdup(optarg); | |
| 799 break; | |
| 800 case 'a': /* account editor */ | |
| 801 opt_acct = 1; | |
| 802 break; | |
| 803 case 'd': /* debug */ | |
| 804 opt_debug = 1; | |
| 805 break; | |
| 806 case 'f': | |
| 807 opt_rcfile_arg = g_strdup(optarg); | |
| 808 break; | |
| 809 case 's': /* use existing session ID */ | |
| 810 opt_session_arg = g_strdup(optarg); | |
| 811 break; | |
| 812 case 'v': /* version */ | |
| 813 opt_version = 1; | |
| 814 break; | |
| 815 case 'h': /* help */ | |
| 816 opt_help = 1; | |
| 817 break; | |
| 818 case 'n': /* don't autologin */ | |
| 819 opt_nologin = 1; | |
| 820 break; | |
| 821 case '?': | |
| 822 default: | |
| 823 show_usage(1, argv[0]); | |
| 824 return 0; | |
| 825 break; | |
| 826 } | |
| 827 } | |
| 828 | |
| 829 /* show help message */ | |
| 830 if (opt_help) { | |
| 831 show_usage(0, argv[0]); | |
| 832 return 0; | |
| 833 } | |
| 834 /* show version message */ | |
| 835 if (opt_version) { | |
| 836 printf("Gaim %s\n",VERSION); | |
| 837 return 0; | |
| 838 } | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
839 |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
840 if (!gui_check) { |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
841 char *display = gdk_get_display(); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
842 |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
843 g_warning("cannot open display: %s", display ? display : "unset"); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
844 g_free(display); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
845 |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
846 return 1; |
| 7438 | 847 } |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
848 |
|
7521
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
849 #ifdef _WIN32 |
|
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
850 wgaim_init(hint); |
|
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
851 #endif |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
852 gaim_core_set_ui_ops(gaim_gtk_core_get_ui_ops()); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
853 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
854 if (!gaim_core_init(GAIM_GTK_UI)) { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
855 fprintf(stderr, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
856 "Initialization of the Gaim core failed. Dumping core.\n" |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
857 "Please report this!\n"); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
858 abort(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
859 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
860 |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
861 plugin_search_paths[0] = LIBDIR; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
862 plugin_search_paths[1] = gaim_user_dir(); |
|
7600
f48c6e4db102
[gaim-migrate @ 8222]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7538
diff
changeset
|
863 plugin_search_paths[2] = g_build_filename(gaim_user_dir(), "plugins", NULL); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
864 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
865 gaim_plugins_set_search_paths(sizeof(plugin_search_paths) / |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
866 sizeof(*plugin_search_paths), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
867 plugin_search_paths); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
868 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
869 g_free(plugin_search_paths[2]); |
|
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_probe(NULL); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
872 |
| 5909 | 873 gaim_prefs_load(); |
| 874 | |
| 875 /* we only read ~/.gaimrc (load_prefs()) if there is no accounts.xml | |
| 876 * since prefs.xml existed alongside ~/.gaim in 0.64 */ | |
| 877 if (!gaim_accounts_load()) { | |
|
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
878 load_prefs(); |
|
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
879 gaim_prefs_sync(); |
|
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
880 } |
|
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
881 |
| 6693 | 882 gaim_prefs_rename_old(); |
| 883 | |
| 5838 | 884 /* load plugins we had when we quit */ |
|
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
885 gaim_plugins_load_saved("/gaim/gtk/plugins/loaded"); |
|
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
886 |
|
5866
d6b5cab288bb
[gaim-migrate @ 6297]
Christian Hammond <chipx86@chipx86.com>
parents:
5859
diff
changeset
|
887 gaim_pounces_load(); |
| 6065 | 888 gaim_status_load(); |
|
5581
3a9b54f260e3
[gaim-migrate @ 5985]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
889 |
|
5859
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
890 gaim_set_blist(gaim_blist_new()); |
|
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
891 gaim_blist_load(); |
|
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
892 |
|
5032
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
893 load_pounces(); |
| 4489 | 894 ui_main(); |
| 895 | |
| 896 #ifdef USE_SM | |
| 897 session_init(argv[0], opt_session_arg); | |
| 898 #endif | |
| 899 if (opt_session_arg != NULL) { | |
| 900 g_free(opt_session_arg); | |
| 901 opt_session_arg = NULL; | |
| 902 }; | |
| 903 | |
| 904 /* set the default username */ | |
| 905 if (opt_user_arg != NULL) { | |
| 906 set_first_user(opt_user_arg); | |
| 907 g_free(opt_user_arg); | |
| 908 opt_user_arg = NULL; | |
| 909 } | |
| 910 | |
| 5535 | 911 if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled")) |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
912 gaim_gtk_debug_window_show(); |
| 4489 | 913 |
| 914 /* deal with --login */ | |
| 915 if (opt_login) { | |
| 916 dologin_ret = dologin_named(opt_login_arg); | |
| 917 if (opt_login_arg != NULL) { | |
| 918 g_free(opt_login_arg); | |
| 919 opt_login_arg = NULL; | |
| 920 } | |
| 921 } | |
| 922 | |
|
5859
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
923 if (!opt_acct && !opt_nologin) |
|
5780
a9029bed0479
[gaim-migrate @ 6205]
Christian Hammond <chipx86@chipx86.com>
parents:
5766
diff
changeset
|
924 gaim_accounts_auto_login(GAIM_GTK_UI); |
| 4489 | 925 |
| 926 if (opt_acct) { | |
|
6119
0d2bd49c611e
[gaim-migrate @ 6588]
Christian Hammond <chipx86@chipx86.com>
parents:
6109
diff
changeset
|
927 gaim_gtk_accounts_window_show(); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
928 } else if ((dologin_ret == -1) && !gaim_connections_get_all()) |
| 4489 | 929 show_login(); |
| 930 | |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
931 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
932 startup_notification_complete(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
933 #endif |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
934 |
| 4489 | 935 gtk_main(); |
| 5684 | 936 gaim_sound_shutdown(); |
| 4489 | 937 #ifdef _WIN32 |
| 938 wgaim_cleanup(); | |
| 939 #endif | |
| 940 return 0; | |
| 941 | |
| 942 } |
