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