Mercurial > pidgin
annotate src/main.c @ 10252:5ce83aad6869
[gaim-migrate @ 11392]
This does #2 of binreloc, by reworking ben miller's patch #780565
It's untested, since i don't have a system without /proc, and worse,
the m4 macro will compile it to use the hard coded prefix if the
/proc file doesn't exist. So this needs to be fixed yet.
committer: Tailor Script <tailor@pidgin.im>
| author | Tim Ringenbach <marv@pidgin.im> |
|---|---|
| date | Tue, 23 Nov 2004 21:24:32 +0000 |
| parents | c143a3fac58d |
| children | 1668fcab5968 |
| rev | line source |
|---|---|
| 4489 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
| 5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 6 * source distribution. | |
| 4489 | 7 * |
| 8 * This program is free software; you can redistribute it and/or modify | |
| 9 * it under the terms of the GNU General Public License as published by | |
| 10 * the Free Software Foundation; either version 2 of the License, or | |
| 11 * (at your option) any later version. | |
| 12 * | |
| 13 * This program is distributed in the hope that it will be useful, | |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 * GNU General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU General Public License | |
| 19 * along with this program; if not, write to the Free Software | |
| 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 * | |
| 22 */ | |
| 23 | |
| 9791 | 24 #include "internal.h" |
| 25 #include "gtkgaim.h" | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
26 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
27 #include "account.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
28 #include "conversation.h" |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
29 #include "core.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
30 #include "debug.h" |
|
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8241
diff
changeset
|
31 #include "eventloop.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
32 #include "ft.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
33 #include "log.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
34 #include "notify.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
35 #include "prefs.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
36 #include "prpl.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
37 #include "pounce.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
38 #include "sound.h" |
| 6106 | 39 #include "status.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
40 #include "util.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
41 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
42 #include "gtkaccount.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
43 #include "gtkblist.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
44 #include "gtkconn.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
45 #include "gtkconv.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
46 #include "gtkdebug.h" |
| 9709 | 47 #include "gtkdialogs.h" |
|
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8241
diff
changeset
|
48 #include "gtkeventloop.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
49 #include "gtkft.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
50 #include "gtknotify.h" |
|
7966
7d25d4e50343
[gaim-migrate @ 8643]
Christian Hammond <chipx86@chipx86.com>
parents:
7956
diff
changeset
|
51 #include "gtkplugin.h" |
|
5875
448f2f4ca3ec
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5874
diff
changeset
|
52 #include "gtkpounce.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
53 #include "gtkprefs.h" |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6313
diff
changeset
|
54 #include "gtkprivacy.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
55 #include "gtkrequest.h" |
| 8113 | 56 #include "gtkroomlist.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
57 #include "gtksound.h" |
|
5943
a4f2aba0848d
[gaim-migrate @ 6384]
Christian Hammond <chipx86@chipx86.com>
parents:
5909
diff
changeset
|
58 #include "gtkutils.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
59 #include "stock.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
60 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
61 #if HAVE_SIGNAL_H |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
62 # include <signal.h> |
| 4489 | 63 #endif |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
64 |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
65 #include <getopt.h> |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5866
diff
changeset
|
66 |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
67 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
68 # define SN_API_NOT_YET_FROZEN |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
69 # include <libsn/sn-launchee.h> |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
70 # include <gdk/gdkx.h> |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
71 #endif |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
72 |
| 4489 | 73 static GtkWidget *name; |
| 74 static GtkWidget *pass; | |
| 75 | |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
76 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
77 static SnLauncheeContext *sn_context = NULL; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
78 static SnDisplay *sn_display = NULL; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
79 #endif |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
80 |
| 4489 | 81 GtkWidget *mainwindow = NULL; |
| 82 | |
| 83 int opt_away = 0; | |
| 4687 | 84 int docklet_count = 0; |
| 4489 | 85 char *opt_away_arg = NULL; |
| 86 int opt_debug = 0; | |
| 87 | |
| 88 #if HAVE_SIGNAL_H | |
| 89 /* | |
| 90 * Lists of signals we wish to catch and those we wish to ignore. | |
| 91 * Each list terminated with -1 | |
| 92 */ | |
| 93 static int catch_sig_list[] = { | |
| 94 SIGSEGV, | |
| 95 SIGHUP, | |
| 96 SIGINT, | |
| 97 SIGTERM, | |
| 98 SIGQUIT, | |
| 99 SIGCHLD, | |
| 100 -1 | |
| 101 }; | |
| 102 | |
| 103 static int ignore_sig_list[] = { | |
| 104 SIGPIPE, | |
| 105 -1 | |
| 106 }; | |
| 107 #endif | |
| 108 | |
| 4561 | 109 static guint snd_tmout = 0; |
| 4489 | 110 static gboolean sound_timeout(gpointer data) |
| 111 { | |
| 5684 | 112 gaim_gtk_sound_set_login_mute(FALSE); |
| 4561 | 113 snd_tmout = 0; |
| 4489 | 114 return FALSE; |
| 115 } | |
| 116 | |
| 117 /* we need to do this for Oscar because serv_login only starts the login | |
| 118 * process, it doesn't end there. gaim_setup will be called later from | |
| 119 * 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
|
120 void gaim_setup(GaimConnection *gc) |
| 4489 | 121 { |
| 8947 | 122 if (gaim_prefs_get_bool("/gaim/gtk/sound/enabled/login")) { |
| 123 if (snd_tmout) | |
| 4561 | 124 g_source_remove(snd_tmout); |
| 5684 | 125 gaim_gtk_sound_set_login_mute(TRUE); |
|
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8241
diff
changeset
|
126 snd_tmout = gaim_timeout_add(10000, sound_timeout, NULL); |
| 4489 | 127 } |
| 128 } | |
| 129 | |
| 130 static gboolean domiddleclick(GtkWidget *w, GdkEventButton *event, gpointer null) | |
| 131 { | |
| 132 if (event->button != 2) | |
| 133 return FALSE; | |
| 134 | |
|
5780
a9029bed0479
[gaim-migrate @ 6205]
Christian Hammond <chipx86@chipx86.com>
parents:
5766
diff
changeset
|
135 gaim_accounts_auto_login(GAIM_GTK_UI); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
136 |
| 4489 | 137 return TRUE; |
| 138 } | |
| 139 | |
| 140 static void dologin(GtkWidget *widget, GtkWidget *w) | |
| 141 { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
142 GaimAccount *account; |
| 8136 | 143 GtkWidget *item; |
| 4489 | 144 const char *password = gtk_entry_get_text(GTK_ENTRY(pass)); |
| 145 | |
| 8136 | 146 item = gtk_menu_get_active(GTK_MENU(gtk_option_menu_get_menu(GTK_OPTION_MENU(name)))); |
| 147 account = g_object_get_data(G_OBJECT(item), "account"); | |
| 4489 | 148 |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
149 if (!account) { |
| 8136 | 150 gaim_notify_error(NULL, NULL, _("Please create an account."), NULL); |
| 151 return; | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
152 } |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
153 |
| 6036 | 154 gaim_account_set_password(account, (*password != '\0') ? password : NULL); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
155 |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
156 gaim_account_connect(account); |
| 4489 | 157 } |
| 158 | |
| 159 /* <name> is a comma-separated list of names, or NULL | |
| 160 if NULL and there is at least one user defined in .gaimrc, try to login. | |
| 161 if not NULL, parse <name> into separate strings, look up each one in | |
| 162 .gaimrc and, if it's there, try to login. | |
| 163 returns: 0 if successful | |
| 164 -1 if no user was found that had a saved password | |
| 165 */ | |
| 166 static int dologin_named(char *name) | |
| 167 { | |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
168 GaimAccount *account; |
| 4489 | 169 char **names, **n; |
| 170 int retval = -1; | |
| 171 | |
| 172 if (name !=NULL) { /* list of names given */ | |
| 173 names = g_strsplit(name, ",", 32); | |
| 174 for (n = names; *n != NULL; n++) { | |
| 7132 | 175 account = gaim_accounts_find(*n, NULL); |
| 4491 | 176 if (account) { /* found a user */ |
| 6231 | 177 retval = 0; |
| 178 gaim_account_connect(account); | |
| 4489 | 179 } |
| 180 } | |
| 181 g_strfreev(names); | |
| 182 } else { /* no name given, use default */ | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
183 account = (GaimAccount *)gaim_accounts_get_all()->data; |
| 6231 | 184 retval = 0; |
| 185 gaim_account_connect(account); | |
| 4489 | 186 } |
| 187 | |
| 188 return retval; | |
| 189 } | |
| 190 | |
| 191 | |
| 8136 | 192 static void combo_changed(GtkWidget *menu, GaimAccount *account, gpointer data) |
| 4489 | 193 { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
194 if (account && gaim_account_get_remember_password(account)) { |
| 4491 | 195 gtk_entry_set_text(GTK_ENTRY(pass), account->password); |
| 4489 | 196 } else { |
| 197 gtk_entry_set_text(GTK_ENTRY(pass), ""); | |
| 198 } | |
| 199 } | |
| 200 | |
| 201 | |
| 202 static void login_window_closed(GtkWidget *w, GdkEvent *ev, gpointer d) | |
| 203 { | |
| 204 if(docklet_count) { | |
|
4880
9b51c090236a
[gaim-migrate @ 5210]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4800
diff
changeset
|
205 #ifdef _WIN32 |
| 4489 | 206 wgaim_systray_minimize(mainwindow); |
| 207 #endif | |
| 208 gtk_widget_hide(mainwindow); | |
| 209 } else | |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
210 gaim_core_quit(); |
| 4489 | 211 } |
| 212 | |
| 213 void show_login() | |
| 214 { | |
| 215 GtkWidget *image; | |
| 216 GtkWidget *vbox; | |
| 217 GtkWidget *button; | |
| 218 GtkWidget *hbox; | |
| 219 GtkWidget *label; | |
| 220 GtkWidget *vbox2; | |
| 221 | |
| 222 /* Do we already have a main window opened? If so, bring it back, baby... ribs... yeah */ | |
| 223 if (mainwindow) { | |
| 10023 | 224 gtk_window_present(GTK_WINDOW(mainwindow)); |
| 225 return; | |
| 4489 | 226 } |
| 227 | |
| 228 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
| 229 | |
| 230 gtk_window_set_role(GTK_WINDOW(mainwindow), "login"); | |
| 4635 | 231 gtk_window_set_resizable(GTK_WINDOW(mainwindow), FALSE); |
| 4703 | 232 gtk_window_set_title(GTK_WINDOW(mainwindow), _("Login")); |
| 4489 | 233 gtk_container_set_border_width(GTK_CONTAINER(mainwindow), 5); |
| 234 g_signal_connect(G_OBJECT(mainwindow), "delete_event", | |
| 235 G_CALLBACK(login_window_closed), mainwindow); | |
| 236 | |
| 237 vbox = gtk_vbox_new(FALSE, 0); | |
| 238 gtk_container_add(GTK_CONTAINER(mainwindow), vbox); | |
| 239 | |
| 5024 | 240 image = gtk_image_new_from_stock(GAIM_STOCK_LOGO, gtk_icon_size_from_name(GAIM_ICON_SIZE_LOGO)); |
| 4489 | 241 gtk_box_pack_start(GTK_BOX(vbox), image, FALSE, FALSE, 0); |
| 242 | |
| 243 vbox2 = gtk_vbox_new(FALSE, 0); | |
| 244 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
| 245 | |
| 8136 | 246 /* why isn't there a gtk_label_new_with_markup? */ |
| 247 label = gtk_label_new(NULL); | |
| 8878 | 248 gtk_label_set_markup_with_mnemonic(GTK_LABEL(label), _("<b>_Account:</b>")); |
| 4489 | 249 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
| 250 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
| 251 | |
| 8136 | 252 name = gaim_gtk_account_option_menu_new(NULL, TRUE, G_CALLBACK(combo_changed), NULL, NULL); |
| 8241 | 253 gtk_label_set_mnemonic_widget(GTK_LABEL(label), name); |
| 8136 | 254 |
| 4489 | 255 gtk_box_pack_start(GTK_BOX(vbox2), name, FALSE, TRUE, 0); |
| 256 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
| 257 | |
| 258 vbox2 = gtk_vbox_new(FALSE, 0); | |
| 259 gtk_container_set_border_width(GTK_CONTAINER(vbox2), 5); | |
| 260 | |
| 8136 | 261 label = gtk_label_new(NULL); |
| 8878 | 262 gtk_label_set_markup_with_mnemonic(GTK_LABEL(label), _("<b>_Password:</b>")); |
| 4489 | 263 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
| 264 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0); | |
| 265 | |
| 266 pass = gtk_entry_new(); | |
| 8241 | 267 gtk_label_set_mnemonic_widget(GTK_LABEL(label), pass); |
| 4489 | 268 gtk_entry_set_visibility(GTK_ENTRY(pass), FALSE); |
| 269 g_signal_connect(G_OBJECT(pass), "activate", | |
| 6109 | 270 G_CALLBACK(dologin), mainwindow); |
| 4489 | 271 gtk_box_pack_start(GTK_BOX(vbox2), pass, FALSE, TRUE, 0); |
| 272 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, TRUE, 0); | |
| 273 | |
| 274 /* Now for the button box */ | |
| 275 hbox = gtk_hbox_new(TRUE, 0); | |
| 276 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 5); | |
| 277 | |
| 278 /* And now for the buttons */ | |
| 9901 | 279 button = gaim_pixbuf_button_from_stock(_("A_ccounts"), GAIM_STOCK_ACCOUNTS, GAIM_BUTTON_VERTICAL); |
| 4489 | 280 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 281 g_signal_connect(G_OBJECT(button), "clicked", | |
|
6119
0d2bd49c611e
[gaim-migrate @ 6588]
Christian Hammond <chipx86@chipx86.com>
parents:
6109
diff
changeset
|
282 G_CALLBACK(gaim_gtk_accounts_window_show), mainwindow); |
| 4489 | 283 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 284 | |
| 9901 | 285 button = gaim_pixbuf_button_from_stock(_("P_references"), GTK_STOCK_PREFERENCES, GAIM_BUTTON_VERTICAL); |
| 4489 | 286 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 287 g_signal_connect(G_OBJECT(button), "clicked", | |
|
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5492
diff
changeset
|
288 G_CALLBACK(gaim_gtk_prefs_show), mainwindow); |
| 4489 | 289 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 290 | |
| 10159 | 291 button = gaim_pixbuf_button_from_stock(_("_Log in"), GAIM_STOCK_SIGN_ON, GAIM_BUTTON_VERTICAL); |
| 4489 | 292 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 293 g_signal_connect(G_OBJECT(button), "clicked", | |
| 294 G_CALLBACK(dologin), mainwindow); | |
| 295 g_signal_connect(G_OBJECT(button), "button-press-event", G_CALLBACK(domiddleclick), NULL); | |
| 296 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 297 | |
| 298 /* Now grab the focus that we need */ | |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
299 if (gaim_accounts_get_all()) { |
|
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
300 GaimAccount *account = gaim_accounts_get_all()->data; |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
301 |
|
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
302 if (gaim_account_get_remember_password(account)) { |
| 8136 | 303 combo_changed(NULL, account, NULL); |
| 4489 | 304 gtk_widget_grab_focus(button); |
| 305 } else { | |
| 306 gtk_widget_grab_focus(pass); | |
| 307 } | |
| 308 } else { | |
| 8136 | 309 gaim_gtk_accounts_window_show(); |
| 310 gtk_widget_grab_focus(button); | |
| 4489 | 311 } |
| 312 | |
| 313 /* And raise the curtain! */ | |
| 314 gtk_widget_show_all(mainwindow); | |
| 315 | |
| 316 } | |
| 317 | |
|
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
318 static void |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
319 clean_pid(void) |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
320 { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
321 #ifndef _WIN32 |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
322 int status; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
323 pid_t pid; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
324 |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
325 do { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
326 pid = waitpid(-1, &status, WNOHANG); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
327 } while (pid != 0 && pid != (pid_t)-1); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
328 if(pid == (pid_t)-1 && errno != ECHILD) { |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
329 char errmsg[BUFSIZ]; |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
330 snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
331 perror(errmsg); |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
332 } |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
333 #endif |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
334 } |
|
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7102
diff
changeset
|
335 |
| 4489 | 336 #if HAVE_SIGNAL_H |
| 337 void sighandler(int sig) | |
| 338 { | |
| 339 switch (sig) { | |
| 340 case SIGHUP: | |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
341 gaim_debug(GAIM_DEBUG_WARNING, "sighandler", |
|
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
342 "Caught signal %d\n", sig); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
343 gaim_connections_disconnect_all(); |
| 4489 | 344 break; |
| 345 case SIGSEGV: | |
| 346 #ifndef DEBUG | |
| 347 fprintf(stderr, "Gaim has segfaulted and attempted to dump a core file.\n" | |
| 348 "This is a bug in the software and has happened through\n" | |
| 349 "no fault of your own.\n\n" | |
| 350 "It is possible that this bug is already fixed in CVS.\n" | |
| 5747 | 351 "If you can reproduce the crash, please notify the gaim\n" |
| 352 "maintainers by reporting a bug at\n" | |
|
6383
d6777fa16645
[gaim-migrate @ 6888]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
353 GAIM_WEBSITE "bug.php\n\n" |
| 4489 | 354 "Please make sure to specify what you were doing at the time,\n" |
| 355 "and post the backtrace from the core file. If you do not know\n" | |
| 356 "how to get the backtrace, please get instructions at\n" | |
|
6383
d6777fa16645
[gaim-migrate @ 6888]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
357 GAIM_WEBSITE "gdb.php. If you need further\n" |
| 4489 | 358 "assistance, please IM either RobFlynn or SeanEgn and\n" |
| 359 "they can help you.\n"); | |
| 360 #else | |
| 8452 | 361 fprintf(stderr, "Hi, user. We need to talk.\n" |
| 362 "I think something's gone wrong here. It's probably my fault.\n" | |
| 363 "No, really, it's not you... it's me... no no no, I think we get along well\n" | |
| 364 "it's just that.... well, I want to see other people. I... what?!? NO! I haven't\n" | |
| 365 "been cheating on you!! How many times do you want me to tell you?! And for the\n" | |
| 366 "last time, it's just a rash!\n"); | |
| 4703 | 367 /*g_on_error_query (g_get_prgname());*/ |
| 4489 | 368 #endif |
| 369 abort(); | |
| 370 break; | |
| 371 case SIGCHLD: | |
| 372 clean_pid(); | |
| 373 #if HAVE_SIGNAL_H | |
| 374 signal(SIGCHLD, sighandler); /* restore signal catching on this one! */ | |
| 375 #endif | |
| 376 break; | |
| 377 default: | |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
378 gaim_debug(GAIM_DEBUG_WARNING, "sighandler", |
|
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
379 "Caught signal %d\n", sig); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
380 gaim_connections_disconnect_all(); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
381 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
382 gaim_plugins_unload_all(); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
383 |
| 4489 | 384 if (gtk_main_level()) |
| 385 gtk_main_quit(); | |
| 386 exit(0); | |
| 387 } | |
| 388 } | |
| 389 #endif | |
| 390 | |
| 391 static int ui_main() | |
| 392 { | |
| 393 #ifndef _WIN32 | |
| 394 GList *icons = NULL; | |
| 395 GdkPixbuf *icon = NULL; | |
| 396 char *icon_path; | |
| 397 #endif | |
| 4978 | 398 |
| 4489 | 399 if (current_smiley_theme == NULL) { |
| 400 smiley_theme_probe(); | |
| 401 if (smiley_themes) { | |
| 402 struct smiley_theme *smile = smiley_themes->data; | |
| 403 load_smiley_theme(smile->path, TRUE); | |
| 404 } | |
| 405 } | |
| 406 | |
| 5422 | 407 gaim_gtk_blist_setup_sort_methods(); |
| 4489 | 408 |
| 409 #ifndef _WIN32 | |
| 410 /* use the nice PNG icon for all the windows */ | |
| 5024 | 411 icon_path = g_build_filename(DATADIR, "pixmaps", "gaim", "icons", "online.png", NULL); |
| 4489 | 412 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
| 413 g_free(icon_path); | |
| 414 if (icon) { | |
| 415 icons = g_list_append(icons,icon); | |
| 416 gtk_window_set_default_icon_list(icons); | |
| 417 g_object_unref(G_OBJECT(icon)); | |
| 4978 | 418 g_list_free(icons); |
| 4489 | 419 } else { |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
420 gaim_debug(GAIM_DEBUG_ERROR, "ui_main", |
|
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
421 "Failed to load the default window icon!\n"); |
| 4489 | 422 } |
| 423 #endif | |
| 4978 | 424 |
| 4489 | 425 return 0; |
| 426 } | |
| 427 | |
| 9971 | 428 static void set_first_user(const char *name) |
| 4489 | 429 { |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
430 GaimAccount *account; |
| 4489 | 431 |
| 7132 | 432 account = gaim_accounts_find(name, NULL); |
| 4489 | 433 |
|
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5573
diff
changeset
|
434 /* Place it as the first user. */ |
| 9971 | 435 if (account != NULL) |
| 436 gaim_accounts_reorder(account, 0); | |
| 4489 | 437 } |
| 438 | |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
439 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
440 debug_init(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
441 { |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
442 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
|
443 gaim_gtk_debug_init(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
444 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
445 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
446 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
447 gaim_gtk_ui_init(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
448 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
449 /* Set the UI operation structures. */ |
|
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
6890
diff
changeset
|
450 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
|
451 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
|
452 gaim_xfers_set_ui_ops(gaim_gtk_xfers_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
453 gaim_blist_set_ui_ops(gaim_gtk_blist_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
454 gaim_notify_set_ui_ops(gaim_gtk_notify_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
455 gaim_privacy_set_ui_ops(gaim_gtk_privacy_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
456 gaim_request_set_ui_ops(gaim_gtk_request_get_ui_ops()); |
|
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
457 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
|
458 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
|
459 |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
460 gaim_gtk_stock_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
461 gaim_gtk_prefs_init(); |
| 9609 | 462 gaim_gtk_account_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
463 gaim_gtk_blist_init(); |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
464 gaim_gtk_conversations_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
465 gaim_gtk_pounces_init(); |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6313
diff
changeset
|
466 gaim_gtk_privacy_init(); |
|
6263
3565ee7a5dd3
[gaim-migrate @ 6760]
Christian Hammond <chipx86@chipx86.com>
parents:
6231
diff
changeset
|
467 gaim_gtk_xfers_init(); |
| 8113 | 468 gaim_gtk_roomlist_init(); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
469 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
470 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
471 static void |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
472 gaim_gtk_quit(void) |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
473 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
474 /* XXX? */ |
| 9594 | 475 /* YYY is there an XXX here? */ |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
476 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
477 /* captain's log, stardate... */ |
| 7475 | 478 /* 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
|
479 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
480 #ifdef USE_SM |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
481 /* unplug */ |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
482 session_end(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
483 #endif |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
484 |
|
7966
7d25d4e50343
[gaim-migrate @ 8643]
Christian Hammond <chipx86@chipx86.com>
parents:
7956
diff
changeset
|
485 /* Save the plugins we have loaded for next time. */ |
|
7d25d4e50343
[gaim-migrate @ 8643]
Christian Hammond <chipx86@chipx86.com>
parents:
7956
diff
changeset
|
486 gaim_gtk_plugins_save(); |
|
7d25d4e50343
[gaim-migrate @ 8643]
Christian Hammond <chipx86@chipx86.com>
parents:
7956
diff
changeset
|
487 |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
488 /* and end it all... */ |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
489 gtk_main_quit(); |
|
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 GaimCoreUiOps core_ops = |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
493 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
494 gaim_gtk_prefs_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
495 debug_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
496 gaim_gtk_ui_init, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
497 gaim_gtk_quit |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
498 }; |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
499 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
500 static GaimCoreUiOps * |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
501 gaim_gtk_core_get_ui_ops(void) |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
502 { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
503 return &core_ops; |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
504 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
505 |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
506 static void |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
507 show_usage(int mode, const char *name) |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
508 { |
| 7724 | 509 char *text=NULL; |
| 510 | |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
511 switch (mode) { |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
512 case 0: /* full help text */ |
| 7724 | 513 text=g_strdup_printf(_("Gaim %s\n" |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
514 "Usage: %s [OPTION]...\n\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
515 " -a, --acct display account editor window\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
516 " -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
|
517 " name of away message to use)\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
518 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
519 " account(s) to use, seperated by commas)\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
520 " -n, --loginwin don't automatically login; show login window\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
521 " -u, --user=NAME use account NAME\n" |
| 8596 | 522 " -c, --config=DIR use DIR for config files\n" |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
523 " -d, --debug print debugging messages to stdout\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
524 " -v, --version display the current version and exit\n" |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
525 " -h, --help display this help and exit\n"), VERSION, name); |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
526 break; |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
527 case 1: /* short message */ |
| 7724 | 528 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
|
529 break; |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
530 } |
| 7724 | 531 |
| 532 if(text) { | |
| 533 char *text_conv; | |
| 534 GError *error=NULL; | |
| 535 | |
| 536 /* tries to convert 'text' to users locale */ | |
| 537 text_conv=g_locale_from_utf8(text,-1,NULL,NULL,&error); | |
| 538 if(text_conv) { | |
| 539 puts(text_conv); | |
| 540 g_free(text_conv); | |
| 541 } | |
| 542 /* use 'text' as a fallback */ | |
| 543 else { | |
| 544 g_warning("%s\n", error->message); | |
| 545 g_error_free(error); | |
| 546 puts(text); | |
| 547 } | |
| 548 g_free(text); | |
| 549 } | |
|
7102
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
550 } |
|
c4faffdc0862
[gaim-migrate @ 7667]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
551 |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
552 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
553 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
554 sn_error_trap_push(SnDisplay *display, Display *xdisplay) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
555 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
556 gdk_error_trap_push(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
557 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
558 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
559 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
560 sn_error_trap_pop(SnDisplay *display, Display *xdisplay) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
561 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
562 gdk_error_trap_pop(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
563 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
564 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
565 static void |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
566 startup_notification_complete(void) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
567 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
568 Display *xdisplay; |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
569 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
570 xdisplay = GDK_DISPLAY(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
571 sn_display = sn_display_new(xdisplay, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
572 sn_error_trap_push, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
573 sn_error_trap_pop); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
574 sn_context = |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
575 sn_launchee_context_new_from_environment(sn_display, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
576 DefaultScreen(xdisplay)); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
577 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
578 if (sn_context != NULL) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
579 { |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
580 sn_launchee_context_complete(sn_context); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
581 sn_launchee_context_unref(sn_context); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
582 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
583 sn_display_unref(sn_display); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
584 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
585 } |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
586 #endif /* HAVE_STARTUP_NOTIFICATION */ |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
587 |
| 10252 | 588 static char *gaim_find_binary_location(void *symbol, void *data) |
| 589 { | |
| 590 static char *fullname = NULL; | |
| 591 static gboolean first = TRUE; | |
| 592 | |
| 593 char *argv0 = data; | |
| 594 struct stat st; | |
| 595 char *basebuf, *linkbuf, *fullbuf; | |
| 596 | |
| 597 if (!first) | |
| 598 /* We've already been through this. */ | |
| 599 return strdup(fullname); | |
| 600 | |
| 601 first = FALSE; | |
| 602 | |
| 603 if (!argv0) | |
| 604 return NULL; | |
| 605 | |
| 606 | |
| 607 basebuf = g_find_program_in_path(argv0); | |
| 608 | |
| 609 /* But we still need to deal with symbolic links */ | |
| 610 lstat(basebuf, &st); | |
| 611 while ((st.st_mode & S_IFLNK) == S_IFLNK) { | |
| 612 linkbuf = g_malloc(1024); | |
| 613 readlink(basebuf, linkbuf, 1024); | |
| 614 if (linkbuf[0] == G_DIR_SEPARATOR) { | |
| 615 /* an absolute path */ | |
| 616 fullbuf = g_strdup(linkbuf); | |
| 617 } else { | |
| 618 char *dirbuf = g_path_get_dirname(basebuf); | |
| 619 /* a relative path */ | |
| 620 fullbuf = g_strdup_printf("%s%s%s", | |
| 621 dirbuf, G_DIR_SEPARATOR_S, | |
| 622 linkbuf); | |
| 623 g_free(dirbuf); | |
| 624 } | |
| 625 /* There's no memory leak here. Really! */ | |
| 626 g_free(linkbuf); | |
| 627 g_free(basebuf); | |
| 628 basebuf = fullbuf; | |
| 629 lstat(basebuf, &st); | |
| 630 } | |
| 631 | |
| 632 fullname = basebuf; | |
| 633 return strdup(fullname); | |
| 634 } | |
| 635 | |
| 636 | |
| 4489 | 637 /* FUCKING GET ME A TOWEL! */ |
| 638 #ifdef _WIN32 | |
|
6890
4eee806af511
[gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6816
diff
changeset
|
639 int gaim_main(HINSTANCE hint, int argc, char *argv[]) |
| 4489 | 640 #else |
| 641 int main(int argc, char *argv[]) | |
| 642 #endif | |
| 643 { | |
| 644 int opt_acct = 0, opt_help = 0, opt_version = 0, opt_login = 0, opt_nologin = 0, dologin_ret = -1; | |
| 645 char *opt_user_arg = NULL, *opt_login_arg = NULL; | |
| 8601 | 646 char *opt_session_arg = NULL, *opt_config_dir_arg = NULL; |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
647 char *plugin_search_paths[3]; |
| 4489 | 648 #if HAVE_SIGNAL_H |
| 649 int sig_indx; /* for setting up signal catching */ | |
| 650 sigset_t sigset; | |
| 651 void (*prev_sig_disp)(); | |
| 652 #endif | |
| 653 int opt, opt_user = 0; | |
| 654 int i; | |
| 7438 | 655 gboolean gui_check; |
| 9594 | 656 gchar *gaimrc, *accountsxml; |
| 4489 | 657 |
| 658 struct option long_options[] = { | |
| 659 {"acct", no_argument, NULL, 'a'}, | |
| 660 /*{"away", optional_argument, NULL, 'w'}, */ | |
| 661 {"help", no_argument, NULL, 'h'}, | |
| 662 /*{"login", optional_argument, NULL, 'l'}, */ | |
| 663 {"loginwin", no_argument, NULL, 'n'}, | |
| 664 {"user", required_argument, NULL, 'u'}, | |
| 8596 | 665 {"config", required_argument, NULL, 'c'}, |
| 4489 | 666 {"debug", no_argument, NULL, 'd'}, |
| 667 {"version", no_argument, NULL, 'v'}, | |
| 668 {"session", required_argument, NULL, 's'}, | |
| 669 {0, 0, 0, 0} | |
| 670 }; | |
| 671 | |
| 672 #ifdef DEBUG | |
| 673 opt_debug = 1; | |
| 674 #endif | |
| 10252 | 675 br_set_locate_fallback_func(gaim_find_binary_location, argv[0]); |
| 4489 | 676 #ifdef ENABLE_NLS |
| 677 bindtextdomain(PACKAGE, LOCALEDIR); | |
| 678 bind_textdomain_codeset(PACKAGE, "UTF-8"); | |
| 679 textdomain(PACKAGE); | |
| 680 #endif | |
| 681 | |
| 682 #if HAVE_SIGNAL_H | |
| 683 /* Let's not violate any PLA's!!!! */ | |
| 684 /* jseymour: whatever the fsck that means */ | |
| 685 /* Robot101: for some reason things like gdm like to block * | |
| 686 * useful signals like SIGCHLD, so we unblock all the ones we * | |
| 687 * declare a handler for. thanks JSeymour and Vann. */ | |
| 688 if (sigemptyset(&sigset)) { | |
| 689 char errmsg[BUFSIZ]; | |
| 5435 | 690 snprintf(errmsg, BUFSIZ, "Warning: couldn't initialise empty signal set"); |
| 4489 | 691 perror(errmsg); |
| 692 } | |
| 693 for(sig_indx = 0; catch_sig_list[sig_indx] != -1; ++sig_indx) { | |
| 694 if((prev_sig_disp = signal(catch_sig_list[sig_indx], sighandler)) == SIG_ERR) { | |
| 695 char errmsg[BUFSIZ]; | |
| 5435 | 696 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d for catching", |
| 4489 | 697 catch_sig_list[sig_indx]); |
| 698 perror(errmsg); | |
| 699 } | |
| 700 if(sigaddset(&sigset, catch_sig_list[sig_indx])) { | |
| 701 char errmsg[BUFSIZ]; | |
| 5435 | 702 snprintf(errmsg, BUFSIZ, "Warning: couldn't include signal %d for unblocking", |
| 4489 | 703 catch_sig_list[sig_indx]); |
| 704 perror(errmsg); | |
| 705 } | |
| 706 } | |
| 707 for(sig_indx = 0; ignore_sig_list[sig_indx] != -1; ++sig_indx) { | |
| 708 if((prev_sig_disp = signal(ignore_sig_list[sig_indx], SIG_IGN)) == SIG_ERR) { | |
| 709 char errmsg[BUFSIZ]; | |
| 5435 | 710 snprintf(errmsg, BUFSIZ, "Warning: couldn't set signal %d to ignore", |
| 4489 | 711 ignore_sig_list[sig_indx]); |
| 712 perror(errmsg); | |
| 713 } | |
| 714 } | |
| 715 | |
| 716 if (sigprocmask(SIG_UNBLOCK, &sigset, NULL)) { | |
| 717 char errmsg[BUFSIZ]; | |
| 5435 | 718 snprintf(errmsg, BUFSIZ, "Warning: couldn't unblock signals"); |
| 4489 | 719 perror(errmsg); |
| 720 } | |
| 721 #endif | |
| 722 | |
| 723 for (i = 0; i < argc; i++) { | |
| 724 /* --login option */ | |
| 725 if (strstr(argv[i], "--l") == argv[i]) { | |
| 726 char *equals; | |
| 727 opt_login = 1; | |
| 728 if ((equals = strchr(argv[i], '=')) != NULL) { | |
| 729 /* --login=NAME */ | |
| 730 opt_login_arg = g_strdup(equals + 1); | |
| 731 if (strlen(opt_login_arg) == 0) { | |
| 732 g_free(opt_login_arg); | |
| 733 opt_login_arg = NULL; | |
| 734 } | |
| 735 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 736 /* --login NAME */ | |
| 737 opt_login_arg = g_strdup(argv[i + 1]); | |
| 738 strcpy(argv[i + 1], " "); | |
| 739 } | |
| 740 strcpy(argv[i], " "); | |
| 741 } | |
| 742 /* -l option */ | |
| 743 else if (strstr(argv[i], "-l") == argv[i]) { | |
| 744 opt_login = 1; | |
| 745 if (strlen(argv[i]) > 2) { | |
| 746 /* -lNAME */ | |
| 747 opt_login_arg = g_strdup(argv[i] + 2); | |
| 748 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 749 /* -l NAME */ | |
| 750 opt_login_arg = g_strdup(argv[i + 1]); | |
| 751 strcpy(argv[i + 1], " "); | |
| 752 } | |
| 753 strcpy(argv[i], " "); | |
| 754 } | |
| 755 /* --away option */ | |
| 756 else if (strstr(argv[i], "--aw") == argv[i]) { | |
| 757 char *equals; | |
| 758 opt_away = 1; | |
| 759 if ((equals = strchr(argv[i], '=')) != NULL) { | |
| 760 /* --away=MESG */ | |
| 761 opt_away_arg = g_strdup(equals + 1); | |
| 762 if (strlen(opt_away_arg) == 0) { | |
| 763 g_free(opt_away_arg); | |
| 764 opt_away_arg = NULL; | |
| 765 } | |
| 766 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 767 /* --away MESG */ | |
| 768 opt_away_arg = g_strdup(argv[i + 1]); | |
| 769 strcpy(argv[i + 1], " "); | |
| 770 } | |
| 771 strcpy(argv[i], " "); | |
| 772 } | |
| 773 /* -w option */ | |
| 774 else if (strstr(argv[i], "-w") == argv[i]) { | |
| 775 opt_away = 1; | |
| 776 if (strlen(argv[i]) > 2) { | |
| 777 /* -wMESG */ | |
| 778 opt_away_arg = g_strdup(argv[i] + 2); | |
| 779 } else if (i + 1 < argc && argv[i + 1][0] != '-') { | |
| 780 /* -w MESG */ | |
| 781 opt_away_arg = g_strdup(argv[i + 1]); | |
| 782 strcpy(argv[i + 1], " "); | |
| 783 } | |
| 784 strcpy(argv[i], " "); | |
| 785 } | |
| 786 } | |
| 787 /* | |
| 788 if (opt_login) { | |
| 789 printf ("--login given with arg %s\n", | |
| 790 opt_login_arg ? opt_login_arg : "NULL"); | |
| 791 exit(0); | |
| 792 } | |
| 793 */ | |
| 794 | |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
795 gui_check = gtk_init_check(&argc, &argv); |
| 4489 | 796 |
| 797 /* scan command-line options */ | |
| 798 opterr = 1; | |
| 799 while ((opt = getopt_long(argc, argv, | |
| 800 #ifndef _WIN32 | |
| 8596 | 801 "adhu:c:vns:", |
| 4489 | 802 #else |
| 8596 | 803 "adhu:c:vn", |
| 4489 | 804 #endif |
| 805 long_options, NULL)) != -1) { | |
| 806 switch (opt) { | |
| 807 case 'u': /* set user */ | |
| 808 opt_user = 1; | |
| 809 opt_user_arg = g_strdup(optarg); | |
| 810 break; | |
| 811 case 'a': /* account editor */ | |
| 812 opt_acct = 1; | |
| 813 break; | |
| 814 case 'd': /* debug */ | |
| 815 opt_debug = 1; | |
| 816 break; | |
| 8596 | 817 case 'c': /* use specified config dir */ |
| 818 set_gaim_user_dir(optarg); | |
| 8601 | 819 opt_config_dir_arg = g_strdup(optarg); |
| 4489 | 820 break; |
| 821 case 's': /* use existing session ID */ | |
| 822 opt_session_arg = g_strdup(optarg); | |
| 823 break; | |
| 824 case 'v': /* version */ | |
| 825 opt_version = 1; | |
| 826 break; | |
| 827 case 'h': /* help */ | |
| 828 opt_help = 1; | |
| 829 break; | |
| 830 case 'n': /* don't autologin */ | |
| 831 opt_nologin = 1; | |
| 832 break; | |
| 833 case '?': | |
| 834 default: | |
| 835 show_usage(1, argv[0]); | |
| 836 return 0; | |
| 837 break; | |
| 838 } | |
| 839 } | |
| 840 | |
| 841 /* show help message */ | |
| 842 if (opt_help) { | |
| 843 show_usage(0, argv[0]); | |
| 844 return 0; | |
| 845 } | |
| 846 /* show version message */ | |
| 847 if (opt_version) { | |
| 848 printf("Gaim %s\n",VERSION); | |
| 849 return 0; | |
| 850 } | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
851 |
|
7538
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
852 if (!gui_check) { |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
853 char *display = gdk_get_display(); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
854 |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
855 g_warning("cannot open display: %s", display ? display : "unset"); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
856 g_free(display); |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
857 |
|
357eb1c39b72
[gaim-migrate @ 8151]
Christian Hammond <chipx86@chipx86.com>
parents:
7521
diff
changeset
|
858 return 1; |
| 7438 | 859 } |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
860 |
|
7521
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
861 #ifdef _WIN32 |
|
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
862 wgaim_init(hint); |
|
8beec54d1855
[gaim-migrate @ 8134]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7501
diff
changeset
|
863 #endif |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
7015
diff
changeset
|
864 gaim_core_set_ui_ops(gaim_gtk_core_get_ui_ops()); |
|
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8241
diff
changeset
|
865 gaim_eventloop_set_ui_ops(gaim_gtk_eventloop_get_ui_ops()); |
|
6179
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
866 |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
867 if (!gaim_core_init(GAIM_GTK_UI)) { |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
868 fprintf(stderr, |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
869 "Initialization of the Gaim core failed. Dumping core.\n" |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
870 "Please report this!\n"); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
871 abort(); |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
872 } |
|
16e384bb7fbf
[gaim-migrate @ 6664]
Christian Hammond <chipx86@chipx86.com>
parents:
6119
diff
changeset
|
873 |
| 10245 | 874 plugin_search_paths[0] = g_strdup(LIBDIR); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
875 plugin_search_paths[1] = gaim_user_dir(); |
|
7600
f48c6e4db102
[gaim-migrate @ 8222]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7538
diff
changeset
|
876 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
|
877 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
878 gaim_plugins_set_search_paths(sizeof(plugin_search_paths) / |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
879 sizeof(*plugin_search_paths), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
880 plugin_search_paths); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
881 |
| 10245 | 882 g_free(plugin_search_paths[0]); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
883 g_free(plugin_search_paths[2]); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
884 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
885 gaim_plugins_probe(NULL); |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
886 |
| 9594 | 887 /* XXX - Remove this check. Maybe in 2005. --KingAnt, 25 Jul 2004 */ |
| 888 gaimrc = g_build_filename(gaim_home_dir(), ".gaimrc", NULL); | |
| 889 accountsxml = g_build_filename(gaim_user_dir(), "accounts.xml", NULL); | |
| 890 if (g_file_test(gaimrc, G_FILE_TEST_EXISTS) && | |
| 891 !g_file_test(accountsxml, G_FILE_TEST_EXISTS)) { | |
| 892 gaim_notify_error(NULL, NULL, _("Unable to load preferences"), _("Gaim was not able to load your preferences because they are stored in an old format that is no longer used. Please reconfigure your settings using the Preferences window.")); | |
|
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
893 } |
| 9594 | 894 g_free(gaimrc); |
| 895 g_free(accountsxml); | |
| 896 | |
| 897 gaim_accounts_load(); | |
|
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
898 |
| 8839 | 899 gaim_set_blist(gaim_blist_new()); |
| 900 gaim_blist_load(); | |
| 901 | |
| 902 gaim_prefs_load(); | |
| 903 | |
| 8900 | 904 gaim_prefs_update_old(); |
| 8905 | 905 gaim_gtk_prefs_update_old(); |
| 6693 | 906 |
| 5838 | 907 /* load plugins we had when we quit */ |
|
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
908 gaim_plugins_load_saved("/gaim/gtk/plugins/loaded"); |
|
5665
132a30783c3d
[gaim-migrate @ 6081]
Christian Hammond <chipx86@chipx86.com>
parents:
5642
diff
changeset
|
909 |
|
5866
d6b5cab288bb
[gaim-migrate @ 6297]
Christian Hammond <chipx86@chipx86.com>
parents:
5859
diff
changeset
|
910 gaim_pounces_load(); |
| 9944 | 911 gaim_statuses_load(); |
|
5581
3a9b54f260e3
[gaim-migrate @ 5985]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
912 |
| 4489 | 913 ui_main(); |
| 914 | |
| 915 #ifdef USE_SM | |
| 8601 | 916 session_init(argv[0], opt_session_arg, opt_config_dir_arg); |
| 4489 | 917 #endif |
| 918 if (opt_session_arg != NULL) { | |
| 919 g_free(opt_session_arg); | |
| 920 opt_session_arg = NULL; | |
| 8601 | 921 } |
| 922 | |
| 923 if (opt_config_dir_arg != NULL) { | |
| 924 g_free(opt_config_dir_arg); | |
| 925 opt_config_dir_arg = NULL; | |
| 926 } | |
| 4489 | 927 |
| 928 /* set the default username */ | |
| 929 if (opt_user_arg != NULL) { | |
| 930 set_first_user(opt_user_arg); | |
| 931 g_free(opt_user_arg); | |
| 932 opt_user_arg = NULL; | |
| 933 } | |
| 934 | |
| 5535 | 935 if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled")) |
|
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
936 gaim_gtk_debug_window_show(); |
| 4489 | 937 |
| 938 /* deal with --login */ | |
| 939 if (opt_login) { | |
| 940 dologin_ret = dologin_named(opt_login_arg); | |
| 941 if (opt_login_arg != NULL) { | |
| 942 g_free(opt_login_arg); | |
| 943 opt_login_arg = NULL; | |
| 944 } | |
| 945 } | |
| 946 | |
|
5859
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
947 if (!opt_acct && !opt_nologin) |
|
5780
a9029bed0479
[gaim-migrate @ 6205]
Christian Hammond <chipx86@chipx86.com>
parents:
5766
diff
changeset
|
948 gaim_accounts_auto_login(GAIM_GTK_UI); |
| 4489 | 949 |
| 950 if (opt_acct) { | |
|
6119
0d2bd49c611e
[gaim-migrate @ 6588]
Christian Hammond <chipx86@chipx86.com>
parents:
6109
diff
changeset
|
951 gaim_gtk_accounts_window_show(); |
|
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5549
diff
changeset
|
952 } else if ((dologin_ret == -1) && !gaim_connections_get_all()) |
| 4489 | 953 show_login(); |
| 954 | |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
955 #ifdef HAVE_STARTUP_NOTIFICATION |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
956 startup_notification_complete(); |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7150
diff
changeset
|
957 #endif |
| 4489 | 958 gtk_main(); |
| 5684 | 959 gaim_sound_shutdown(); |
| 4489 | 960 #ifdef _WIN32 |
| 961 wgaim_cleanup(); | |
| 962 #endif | |
| 9300 | 963 |
| 964 | |
| 4489 | 965 return 0; |
| 966 | |
| 967 } |
