Mercurial > pidgin
annotate src/aim.c @ 121:3571b593f423
[gaim-migrate @ 131]
If buddy signs off, then signs on again before they get erased, it wouldn't
alert properly. Now it does.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sat, 15 Apr 2000 23:52:33 +0000 |
parents | 45bcfa3b584c |
children | e277d5f0c1dd |
rev | line source |
---|---|
1 | 1 /* |
2 * gaim | |
3 * | |
4 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
22 #ifdef USE_THEMES | |
23 #include <gnome.h> | |
24 #else | |
25 #ifdef USE_APPLET | |
26 #include "gnome_applet_mgr.h" | |
27 #include <gnome.h> | |
28 #endif /* USE_APPLET */ | |
29 #endif /* USE_THEMES */ | |
30 #include <gtk/gtk.h> | |
31 #include <gdk/gdkx.h> | |
32 #include <unistd.h> | |
33 #include <netinet/in.h> | |
34 #include <arpa/inet.h> | |
35 #include <sys/wait.h> | |
36 #include <stdio.h> | |
37 #include <string.h> | |
38 #include <stdarg.h> | |
39 #include <stdlib.h> | |
40 #include "gaim.h" | |
41 #ifndef USE_APPLET | |
42 #include "pixmaps/logo.xpm" | |
43 #endif /* USE_APPLET */ | |
44 | |
45 static GtkWidget *name; | |
46 static GtkWidget *pass; | |
47 static GtkWidget *signon; | |
48 static GtkWidget *cancel; | |
49 static GtkWidget *progress; | |
50 static GtkWidget *notice; | |
51 | |
52 GList *permit = NULL; | |
53 GList *deny = NULL; | |
54 GList *log_conversations = NULL; | |
55 GList *buddy_pounces = NULL; | |
56 GList *away_messages = NULL; | |
57 GList *groups = NULL; | |
58 GList *buddy_chats = NULL; | |
59 GList *conversations = NULL; | |
60 GList *chat_rooms = NULL; | |
61 | |
62 GtkWidget *mainwindow = NULL; | |
63 | |
64 char toc_addy[16]; | |
26 | 65 char *quad_addr = NULL; |
1 | 66 |
67 | |
68 void cancel_logon(void) | |
69 { | |
70 #ifdef USE_APPLET | |
71 set_applet_draw_closed(); | |
72 AppletCancelLogon(); | |
73 gtk_widget_hide(mainwindow); | |
74 #else | |
75 exit(0); | |
76 #endif /* USE_APPLET */ | |
77 } | |
78 | |
79 void set_login_progress(int howfar, char *whattosay) | |
80 { | |
81 gtk_progress_bar_update(GTK_PROGRESS_BAR(progress), | |
82 ((float)howfar / (float)LOGIN_STEPS)); | |
83 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1); | |
84 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, whattosay); | |
85 | |
86 while (gtk_events_pending()) | |
87 gtk_main_iteration(); | |
88 | |
89 /* Why do I need these? */ | |
90 usleep(10); | |
91 while (gtk_events_pending()) | |
92 gtk_main_iteration(); | |
93 | |
94 } | |
95 | |
96 void hide_login_progress(char *why) | |
97 { | |
98 gtk_progress_bar_update(GTK_PROGRESS_BAR(progress), | |
99 0); | |
100 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1); | |
101 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, why); | |
102 | |
103 while (gtk_events_pending()) | |
104 gtk_main_iteration(); | |
105 | |
106 /* Why do I need these? */ | |
107 usleep(10); | |
108 while (gtk_events_pending()) | |
109 gtk_main_iteration(); | |
110 } | |
111 | |
109
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
112 static int snd_tmout; |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
113 static void sound_timeout() { |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
114 sound_options += OPT_SOUND_LOGIN; |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
115 gtk_timeout_remove(snd_tmout); |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
116 } |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
117 |
1 | 118 void dologin(GtkWidget *widget, GtkWidget *w) |
119 { | |
84 | 120 static gboolean running = FALSE; |
1 | 121 char *username = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(name)->entry)); |
122 char *password = gtk_entry_get_text(GTK_ENTRY(pass)); | |
123 | |
124 if (query_state() != STATE_OFFLINE) | |
125 return; | |
126 | |
127 if (!strlen(username)) { | |
128 hide_login_progress("Please enter your logon"); | |
129 return; | |
130 } | |
131 if (!strlen(password)) { | |
132 hide_login_progress("You must give your password"); | |
133 return; | |
134 } | |
135 | |
136 #ifdef USE_APPLET | |
137 set_applet_draw_closed(); | |
138 setUserState(signing_on); | |
139 #endif /* USE_APPLET */ | |
140 | |
84 | 141 if (running) return; |
142 running = TRUE; | |
1 | 143 |
84 | 144 if (serv_login(username, password) < 0) { |
145 running = FALSE; | |
1 | 146 return; |
84 | 147 } |
1 | 148 |
109
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
149 if (sound_options & OPT_SOUND_LOGIN && |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
150 sound_options & OPT_SOUND_SILENT_SIGNON) { |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
151 sound_options -= OPT_SOUND_LOGIN; |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
152 snd_tmout = gtk_timeout_add(10000, (GtkFunction)sound_timeout, |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
153 NULL); |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
154 } |
45bcfa3b584c
[gaim-migrate @ 119]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
107
diff
changeset
|
155 |
84 | 156 #ifdef USE_APPLET |
157 applet_widget_unregister_callback(APPLET_WIDGET(applet),"signon"); | |
158 applet_widget_register_callback(APPLET_WIDGET(applet), | |
159 "buddy", | |
160 _("Buddy List"), | |
107
55faf2e3a134
[gaim-migrate @ 117]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
97
diff
changeset
|
161 (AppletCallbackFunc)createOnlinePopup, |
84 | 162 NULL); |
163 applet_widget_register_callback(APPLET_WIDGET(applet), | |
164 "signoff", | |
165 _("Signoff"), | |
166 signoff, | |
167 NULL); | |
168 #endif | |
94
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
169 |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
170 #ifdef GAIM_PLUGINS |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
171 { |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
172 GList *c = callbacks; |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
173 struct gaim_callback *g; |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
174 void (*function)(void *); |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
175 while (c) { |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
176 g = (struct gaim_callback *)c->data; |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
177 if (g->event == event_signon && g->function != NULL) { |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
178 function = g->function; |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
179 (*function)(g->data); |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
180 } |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
181 c = c->next; |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
182 } |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
183 } |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
184 #endif |
9f6ce50ffb78
[gaim-migrate @ 104]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
85
diff
changeset
|
185 |
84 | 186 running = FALSE; |
187 return; | |
1 | 188 } |
189 | |
190 | |
191 | |
192 | |
193 void doenter(GtkWidget *widget, GtkWidget *w) | |
194 { | |
195 if (widget == name) { | |
196 gtk_entry_set_text(GTK_ENTRY(pass),""); | |
197 gtk_entry_select_region(GTK_ENTRY(GTK_COMBO(name)->entry), 0, 0); | |
198 gtk_window_set_focus(GTK_WINDOW(mainwindow), pass); | |
199 } else if (widget == pass) { | |
200 gtk_window_set_focus(GTK_WINDOW(mainwindow), signon); | |
201 } else { | |
202 g_print("what did you press enter on?\n"); | |
203 } | |
204 | |
205 } | |
206 | |
207 | |
208 static void combo_changed(GtkWidget *w, GtkWidget *combo) | |
209 { | |
210 char *txt = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(combo)->entry), 0, -1); | |
211 struct aim_user *u; | |
212 | |
25 | 213 if (!(general_options & OPT_GEN_REMEMBER_PASS)) { |
214 g_free(txt); | |
1 | 215 return; |
25 | 216 } |
217 | |
1 | 218 u = find_user(txt); |
219 | |
220 if (u != NULL) { | |
221 gtk_entry_set_text(GTK_ENTRY(pass), u->password); | |
222 } else { | |
223 gtk_entry_set_text(GTK_ENTRY(pass), ""); | |
224 } | |
25 | 225 |
226 g_free(txt); | |
1 | 227 return; |
228 } | |
229 | |
230 static GList *combo_user_names() | |
231 { | |
232 GList *usr = aim_users; | |
233 GList *tmp = NULL; | |
234 struct aim_user *u; | |
235 | |
236 | |
237 if (!usr) | |
238 return g_list_append(NULL, "<unknown>"); | |
239 | |
240 while(usr) { | |
241 u = (struct aim_user *)usr->data; | |
242 tmp = g_list_append(tmp, g_strdup(u->username)); | |
243 usr = usr->next; | |
244 | |
245 } | |
246 | |
247 return tmp; | |
248 } | |
249 | |
250 | |
251 | |
252 void show_login() | |
253 { | |
254 GtkWidget *options; | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
255 #ifdef GAIM_PLUGINS |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
256 GtkWidget *plugs; |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
257 #endif |
1 | 258 GtkWidget *reg; |
259 GtkWidget *bbox; | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
260 GtkWidget *hbox; |
1 | 261 GtkWidget *sbox; |
262 GtkWidget *label; | |
263 GtkWidget *table; | |
264 GtkWidget *remember; | |
265 | |
266 #ifndef USE_APPLET | |
267 GtkWidget *pmw; | |
268 GdkPixmap *pm; | |
269 GtkStyle *style; | |
270 GdkBitmap *mask; | |
271 #endif /* USE_APPLET */ | |
272 | |
273 if (mainwindow) { | |
274 gtk_widget_show(mainwindow); | |
275 return; | |
276 } | |
277 | |
278 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
279 signon = gtk_button_new_with_label("Signon"); | |
280 cancel = gtk_button_new_with_label("Cancel"); | |
281 reg = gtk_button_new_with_label("Register"); | |
282 options = gtk_button_new_with_label("Options"); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
283 #ifdef GAIM_PLUGINS |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
284 plugs = gtk_button_new_with_label("Plugins"); |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
285 #endif |
1 | 286 table = gtk_table_new(8, 2, FALSE); |
287 name = gtk_combo_new(); | |
288 pass = gtk_entry_new(); | |
289 notice = gtk_statusbar_new(); | |
290 progress = gtk_progress_bar_new(); | |
291 | |
292 gtk_combo_set_popdown_strings(GTK_COMBO(name), combo_user_names()); | |
293 | |
294 /* Make the buttons do stuff */ | |
295 /* Clicking the button initiates a login */ | |
296 gtk_signal_connect(GTK_OBJECT(signon), "clicked", | |
297 GTK_SIGNAL_FUNC(dologin), mainwindow); | |
298 gtk_signal_connect(GTK_OBJECT(cancel), "clicked", | |
299 GTK_SIGNAL_FUNC(cancel_logon), mainwindow); | |
300 /* Allow user to change prefs before logging in */ | |
301 gtk_signal_connect(GTK_OBJECT(options), "clicked", | |
302 GTK_SIGNAL_FUNC(show_prefs), NULL); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
303 #ifdef GAIM_PLUGINS |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
304 /* Allow user to control plugins before logging in */ |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
305 gtk_signal_connect(GTK_OBJECT(plugs), "clicked", |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
306 GTK_SIGNAL_FUNC(show_plugins), NULL); |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
307 #endif |
1 | 308 |
309 /* Register opens the right URL */ | |
310 gtk_signal_connect(GTK_OBJECT(reg), "clicked", | |
311 GTK_SIGNAL_FUNC(open_url), "http://www.aol.com/aim"); | |
312 /* Enter in the username clears the password and sets | |
313 the pointer in the password field */ | |
314 gtk_signal_connect(GTK_OBJECT(GTK_COMBO(name)->entry), "activate", | |
315 GTK_SIGNAL_FUNC(doenter), mainwindow); | |
316 | |
317 gtk_signal_connect(GTK_OBJECT(GTK_COMBO(name)->entry), "changed", | |
318 GTK_SIGNAL_FUNC(combo_changed), name); | |
319 | |
320 gtk_signal_connect(GTK_OBJECT(pass), "activate", | |
321 GTK_SIGNAL_FUNC(doenter), mainwindow); | |
322 gtk_signal_connect(GTK_OBJECT(mainwindow), "delete_event", | |
323 GTK_SIGNAL_FUNC(cancel_logon), mainwindow); | |
324 /* Homogenous spacing, 10 padding */ | |
325 bbox = gtk_hbox_new(TRUE, 10); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
326 hbox = gtk_hbox_new(TRUE, 10); |
1 | 327 sbox = gtk_vbox_new(TRUE, 10); |
328 | |
329 gtk_box_pack_start(GTK_BOX(bbox), reg, TRUE, TRUE, 0); | |
330 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); | |
331 gtk_box_pack_start(GTK_BOX(bbox), signon, TRUE, TRUE, 0); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
332 |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
333 gtk_box_pack_start(GTK_BOX(hbox), options, TRUE, TRUE, 0); |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
334 #ifdef GAIM_PLUGINS |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
335 gtk_box_pack_start(GTK_BOX(hbox), plugs, TRUE, TRUE, 0); |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
336 #endif |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
337 |
1 | 338 gtk_box_pack_start(GTK_BOX(sbox), bbox, TRUE, TRUE, 0); |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
339 gtk_box_pack_start(GTK_BOX(sbox), hbox, TRUE, TRUE, 0); |
1 | 340 |
341 /* Labels for selectors and text boxes */ | |
342 #if 0 | |
343 label = gtk_label_new("TOC: "); | |
344 gtk_table_attach(GTK_TABLE(table), label, 0,1,1,2,0,0, 5, 5); | |
345 gtk_widget_show(label); | |
346 #endif | |
347 label = gtk_label_new("Screen Name: "); | |
348 gtk_table_attach(GTK_TABLE(table), label, 0,1,2,3,0,0, 5, 5); | |
349 gtk_widget_show(label); | |
350 label = gtk_label_new("Password: "); | |
351 gtk_table_attach(GTK_TABLE(table), label, 0,1,3,4,0,0, 5, 5); | |
352 gtk_widget_show(label); | |
353 remember = gtk_check_button_new_with_label("Remember Password"); | |
354 gtk_table_attach(GTK_TABLE(table), remember, 0,2,4,5,0,0, 5, 5); | |
355 gtk_widget_show(remember); | |
356 | |
357 gtk_widget_show(options); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
358 #ifdef GAIM_PLUGINS |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
359 gtk_widget_show(plugs); |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
360 #endif |
1 | 361 |
362 /* Adjust sizes of inputs */ | |
363 gtk_widget_set_usize(name,95,0); | |
364 gtk_widget_set_usize(pass,95,0); | |
365 | |
366 | |
367 /* Status and label */ | |
368 gtk_widget_show(notice); | |
369 | |
370 gtk_widget_set_usize(progress,150,0); | |
371 | |
372 gtk_widget_show(progress); | |
373 | |
374 gtk_table_attach(GTK_TABLE(table), progress, 0, 2, 6, 7, 0, 0, 5, 5); | |
375 gtk_widget_set_usize(GTK_STATUSBAR(notice)->label, 150, 0); | |
376 gtk_table_attach(GTK_TABLE(table), notice, 0, 2, 8, 9, 0, 0, 5, 5); | |
377 | |
378 /* Attach the buttons at the bottom */ | |
379 gtk_widget_show(signon); | |
380 gtk_widget_show(cancel); | |
381 gtk_widget_show(reg); | |
382 gtk_widget_show(bbox); | |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
383 gtk_widget_show(hbox); |
1 | 384 gtk_widget_show(sbox); |
385 gtk_table_attach(GTK_TABLE(table), sbox, 0,2,7,8,0,0, 5, 5); | |
386 | |
387 /* Text fields */ | |
388 | |
389 gtk_table_attach(GTK_TABLE(table),name,1,2,2,3,0,0,5,5); | |
390 gtk_widget_show(name); | |
391 gtk_table_attach(GTK_TABLE(table),pass,1,2,3,4,0,0,5,5); | |
392 gtk_entry_set_visibility(GTK_ENTRY(pass), FALSE); | |
393 gtk_widget_show(pass); | |
394 | |
395 gtk_container_border_width(GTK_CONTAINER(sbox), 10); | |
396 | |
397 gtk_container_add(GTK_CONTAINER(mainwindow),table ); | |
398 | |
399 gtk_widget_show(table); | |
400 gtk_window_set_title(GTK_WINDOW(mainwindow),"Gaim - Login"); | |
401 | |
402 | |
403 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(remember), (general_options & OPT_GEN_REMEMBER_PASS)); | |
404 | |
405 if (current_user) { | |
85 | 406 GList *all = combo_user_names(); |
407 GList *srch = g_list_find(all, (void *)current_user->username); | |
408 int length = g_list_length(all) - g_list_length(srch); | |
409 g_list_free(srch); | |
410 g_list_free(all); | |
411 | |
412 gtk_combo_set_value_in_list(GTK_COMBO(name), length, 0); | |
1 | 413 if ((general_options & OPT_GEN_REMEMBER_PASS)) { |
414 gtk_entry_set_text(GTK_ENTRY(pass), current_user->password); | |
415 } | |
416 | |
417 | |
418 gtk_widget_grab_focus(signon); | |
419 } else | |
420 gtk_widget_grab_focus(name); | |
421 | |
422 | |
423 | |
424 gtk_signal_connect(GTK_OBJECT(remember), "clicked", GTK_SIGNAL_FUNC(set_general_option), (int *)OPT_GEN_REMEMBER_PASS); | |
425 | |
426 | |
427 gtk_widget_realize(mainwindow); | |
428 | |
429 #ifndef USE_APPLET | |
430 /* Logo at the top */ | |
431 style = gtk_widget_get_style(mainwindow); | |
432 pm = gdk_pixmap_create_from_xpm_d(mainwindow->window, &mask, | |
433 &style->bg[GTK_STATE_NORMAL], (gchar **)aol_logo); | |
434 pmw = gtk_pixmap_new( pm, mask); | |
435 gtk_table_attach(GTK_TABLE(table), pmw, 0,2,0,1,0,0,5,5); | |
436 gtk_widget_show(pmw); | |
437 #endif /* USE_APPLET */ | |
438 | |
439 | |
440 aol_icon(mainwindow->window); | |
441 #ifndef _WIN32 | |
442 gdk_window_set_group(mainwindow->window, mainwindow->window); | |
443 #endif | |
444 | |
445 | |
446 gtk_widget_show(mainwindow); | |
447 | |
448 if((general_options & OPT_GEN_AUTO_LOGIN) && | |
449 (general_options & OPT_GEN_REMEMBER_PASS)) { | |
450 dologin(signon, NULL); | |
451 } | |
452 } | |
453 | |
454 | |
455 int main(int argc, char *argv[]) | |
456 { | |
457 #ifdef USE_APPLET | |
458 InitAppletMgr( argc, argv ); | |
459 #elif defined USE_THEMES | |
460 gnome_init("GAIM",NULL,argc,argv); | |
461 #else | |
462 gtk_init(&argc, &argv); | |
463 #endif /* USE_THEMES */ | |
464 | |
465 | |
466 set_defaults(); | |
467 load_prefs(); | |
468 | |
469 #ifdef USE_APPLET | |
470 applet_widget_register_callback(APPLET_WIDGET(applet), | |
471 "prefs", | |
472 _("Preferences"), | |
473 show_prefs, | |
474 NULL); | |
475 applet_widget_register_callback(APPLET_WIDGET(applet), | |
476 "signon", | |
477 _("Signon"), | |
478 applet_show_login, | |
479 NULL); | |
97
5b4b7aa8dd9a
[gaim-migrate @ 107]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
96
diff
changeset
|
480 #ifdef GAIM_PLUGINS |
96
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
481 applet_widget_register_callback(APPLET_WIDGET(applet), |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
482 "plugins", |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
483 _("Plugins"), |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
484 GTK_SIGNAL_FUNC(show_plugins), |
247f540ea6e1
[gaim-migrate @ 106]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
94
diff
changeset
|
485 NULL); |
97
5b4b7aa8dd9a
[gaim-migrate @ 107]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
96
diff
changeset
|
486 #endif /* GAIM_PLUGINS */ |
1 | 487 |
488 if((general_options & OPT_GEN_AUTO_LOGIN) && | |
489 (general_options & OPT_GEN_REMEMBER_PASS)) { | |
490 | |
491 applet_show_login(APPLET_WIDGET(applet), NULL); | |
492 } | |
82 | 493 |
494 update_pixmaps(); | |
1 | 495 |
496 applet_widget_gtk_main(); | |
497 #else | |
498 | |
499 | |
500 show_login(); | |
501 gtk_main(); | |
502 | |
503 #endif /* USE_APPLET */ | |
504 | |
505 return 0; | |
506 | |
507 } |