comparison src/aim.c @ 1:2846a03bda67

[gaim-migrate @ 10] The other missing files :) committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 23 Mar 2000 03:13:54 +0000
parents
children c56db1b46b0d
comparison
equal deleted inserted replaced
0:a5ace2e037bc 1:2846a03bda67
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];
65 char *quad_addr;
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
112 void dologin(GtkWidget *widget, GtkWidget *w)
113 {
114 char *username = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(name)->entry));
115 char *password = gtk_entry_get_text(GTK_ENTRY(pass));
116
117 if (query_state() != STATE_OFFLINE)
118 return;
119
120 if (!strlen(username)) {
121 hide_login_progress("Please enter your logon");
122 return;
123 }
124 if (!strlen(password)) {
125 hide_login_progress("You must give your password");
126 return;
127 }
128
129 #ifdef USE_APPLET
130 set_applet_draw_closed();
131 setUserState(signing_on);
132 #endif /* USE_APPLET */
133
134
135 if (serv_login(username, password) < 0)
136 return;
137
138 return;
139 }
140
141
142
143
144 void doenter(GtkWidget *widget, GtkWidget *w)
145 {
146 if (widget == name) {
147 gtk_entry_set_text(GTK_ENTRY(pass),"");
148 gtk_entry_select_region(GTK_ENTRY(GTK_COMBO(name)->entry), 0, 0);
149 gtk_window_set_focus(GTK_WINDOW(mainwindow), pass);
150 } else if (widget == pass) {
151 gtk_window_set_focus(GTK_WINDOW(mainwindow), signon);
152 } else {
153 g_print("what did you press enter on?\n");
154 }
155
156 }
157
158
159 static void combo_changed(GtkWidget *w, GtkWidget *combo)
160 {
161 char *txt = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(combo)->entry), 0, -1);
162 struct aim_user *u;
163
164 if (!(general_options & OPT_GEN_REMEMBER_PASS))
165 return;
166
167 u = find_user(txt);
168
169 if (u != NULL) {
170 gtk_entry_set_text(GTK_ENTRY(pass), u->password);
171 } else {
172 gtk_entry_set_text(GTK_ENTRY(pass), "");
173 }
174
175 return;
176 }
177
178 static GList *combo_user_names()
179 {
180 GList *usr = aim_users;
181 GList *tmp = NULL;
182 struct aim_user *u;
183
184
185 if (!usr)
186 return g_list_append(NULL, "<unknown>");
187
188 while(usr) {
189 u = (struct aim_user *)usr->data;
190 tmp = g_list_append(tmp, g_strdup(u->username));
191 usr = usr->next;
192
193 }
194
195 return tmp;
196 }
197
198
199
200 void show_login()
201 {
202 GtkWidget *options;
203 GtkWidget *reg;
204 GtkWidget *bbox;
205 GtkWidget *sbox;
206 GtkWidget *label;
207 GtkWidget *table;
208 GtkWidget *remember;
209
210 #ifndef USE_APPLET
211 GtkWidget *pmw;
212 GdkPixmap *pm;
213 GtkStyle *style;
214 GdkBitmap *mask;
215 #endif /* USE_APPLET */
216
217 if (mainwindow) {
218 gtk_widget_show(mainwindow);
219 return;
220 }
221
222 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
223 signon = gtk_button_new_with_label("Signon");
224 cancel = gtk_button_new_with_label("Cancel");
225 reg = gtk_button_new_with_label("Register");
226 options = gtk_button_new_with_label("Options");
227 table = gtk_table_new(8, 2, FALSE);
228 name = gtk_combo_new();
229 pass = gtk_entry_new();
230 notice = gtk_statusbar_new();
231 progress = gtk_progress_bar_new();
232
233 gtk_combo_set_popdown_strings(GTK_COMBO(name), combo_user_names());
234
235 /* Make the buttons do stuff */
236 /* Clicking the button initiates a login */
237 gtk_signal_connect(GTK_OBJECT(signon), "clicked",
238 GTK_SIGNAL_FUNC(dologin), mainwindow);
239 gtk_signal_connect(GTK_OBJECT(cancel), "clicked",
240 GTK_SIGNAL_FUNC(cancel_logon), mainwindow);
241 /* Allow user to change prefs before logging in */
242 gtk_signal_connect(GTK_OBJECT(options), "clicked",
243 GTK_SIGNAL_FUNC(show_prefs), NULL);
244
245 /* Register opens the right URL */
246 gtk_signal_connect(GTK_OBJECT(reg), "clicked",
247 GTK_SIGNAL_FUNC(open_url), "http://www.aol.com/aim");
248 /* Enter in the username clears the password and sets
249 the pointer in the password field */
250 gtk_signal_connect(GTK_OBJECT(GTK_COMBO(name)->entry), "activate",
251 GTK_SIGNAL_FUNC(doenter), mainwindow);
252
253 gtk_signal_connect(GTK_OBJECT(GTK_COMBO(name)->entry), "changed",
254 GTK_SIGNAL_FUNC(combo_changed), name);
255
256 gtk_signal_connect(GTK_OBJECT(pass), "activate",
257 GTK_SIGNAL_FUNC(doenter), mainwindow);
258 gtk_signal_connect(GTK_OBJECT(mainwindow), "delete_event",
259 GTK_SIGNAL_FUNC(cancel_logon), mainwindow);
260 /* Homogenous spacing, 10 padding */
261 bbox = gtk_hbox_new(TRUE, 10);
262 sbox = gtk_vbox_new(TRUE, 10);
263
264 gtk_box_pack_start(GTK_BOX(bbox), reg, TRUE, TRUE, 0);
265 gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0);
266 gtk_box_pack_start(GTK_BOX(bbox), signon, TRUE, TRUE, 0);
267
268 gtk_box_pack_start(GTK_BOX(sbox), bbox, TRUE, TRUE, 0);
269 gtk_box_pack_start(GTK_BOX(sbox), options, TRUE, TRUE, 0);
270
271 /* Labels for selectors and text boxes */
272 #if 0
273 label = gtk_label_new("TOC: ");
274 gtk_table_attach(GTK_TABLE(table), label, 0,1,1,2,0,0, 5, 5);
275 gtk_widget_show(label);
276 #endif
277 label = gtk_label_new("Screen Name: ");
278 gtk_table_attach(GTK_TABLE(table), label, 0,1,2,3,0,0, 5, 5);
279 gtk_widget_show(label);
280 label = gtk_label_new("Password: ");
281 gtk_table_attach(GTK_TABLE(table), label, 0,1,3,4,0,0, 5, 5);
282 gtk_widget_show(label);
283 remember = gtk_check_button_new_with_label("Remember Password");
284 gtk_table_attach(GTK_TABLE(table), remember, 0,2,4,5,0,0, 5, 5);
285 gtk_widget_show(remember);
286
287 gtk_widget_show(options);
288
289 /* Adjust sizes of inputs */
290 gtk_widget_set_usize(name,95,0);
291 gtk_widget_set_usize(pass,95,0);
292
293
294 /* Status and label */
295 gtk_widget_show(notice);
296
297 gtk_widget_set_usize(progress,150,0);
298
299 gtk_widget_show(progress);
300
301 gtk_table_attach(GTK_TABLE(table), progress, 0, 2, 6, 7, 0, 0, 5, 5);
302 gtk_widget_set_usize(GTK_STATUSBAR(notice)->label, 150, 0);
303 gtk_table_attach(GTK_TABLE(table), notice, 0, 2, 8, 9, 0, 0, 5, 5);
304
305 /* Attach the buttons at the bottom */
306 gtk_widget_show(signon);
307 gtk_widget_show(cancel);
308 gtk_widget_show(reg);
309 gtk_widget_show(bbox);
310 gtk_widget_show(sbox);
311 gtk_table_attach(GTK_TABLE(table), sbox, 0,2,7,8,0,0, 5, 5);
312
313 /* Text fields */
314
315 gtk_table_attach(GTK_TABLE(table),name,1,2,2,3,0,0,5,5);
316 gtk_widget_show(name);
317 gtk_table_attach(GTK_TABLE(table),pass,1,2,3,4,0,0,5,5);
318 gtk_entry_set_visibility(GTK_ENTRY(pass), FALSE);
319 gtk_widget_show(pass);
320
321 gtk_container_border_width(GTK_CONTAINER(sbox), 10);
322
323 gtk_container_add(GTK_CONTAINER(mainwindow),table );
324
325 gtk_widget_show(table);
326 gtk_window_set_title(GTK_WINDOW(mainwindow),"Gaim - Login");
327
328
329 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(remember), (general_options & OPT_GEN_REMEMBER_PASS));
330
331 if (current_user) {
332 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(name)->entry), current_user->username);
333 if ((general_options & OPT_GEN_REMEMBER_PASS)) {
334 gtk_entry_set_text(GTK_ENTRY(pass), current_user->password);
335 }
336
337
338 gtk_widget_grab_focus(signon);
339 } else
340 gtk_widget_grab_focus(name);
341
342
343
344 gtk_signal_connect(GTK_OBJECT(remember), "clicked", GTK_SIGNAL_FUNC(set_general_option), (int *)OPT_GEN_REMEMBER_PASS);
345
346
347 gtk_widget_realize(mainwindow);
348
349 #ifndef USE_APPLET
350 /* Logo at the top */
351 style = gtk_widget_get_style(mainwindow);
352 pm = gdk_pixmap_create_from_xpm_d(mainwindow->window, &mask,
353 &style->bg[GTK_STATE_NORMAL], (gchar **)aol_logo);
354 pmw = gtk_pixmap_new( pm, mask);
355 gtk_table_attach(GTK_TABLE(table), pmw, 0,2,0,1,0,0,5,5);
356 gtk_widget_show(pmw);
357 #endif /* USE_APPLET */
358
359
360 aol_icon(mainwindow->window);
361 #ifndef _WIN32
362 gdk_window_set_group(mainwindow->window, mainwindow->window);
363 #endif
364
365
366 gtk_widget_show(mainwindow);
367
368 if((general_options & OPT_GEN_AUTO_LOGIN) &&
369 (general_options & OPT_GEN_REMEMBER_PASS)) {
370 dologin(signon, NULL);
371 }
372 }
373
374
375 int main(int argc, char *argv[])
376 {
377 #ifdef USE_APPLET
378 InitAppletMgr( argc, argv );
379 #elif defined USE_THEMES
380 gnome_init("GAIM",NULL,argc,argv);
381 #else
382 gtk_init(&argc, &argv);
383 #endif /* USE_THEMES */
384
385
386 set_defaults();
387 load_prefs();
388
389 #ifdef USE_APPLET
390 applet_widget_register_callback(APPLET_WIDGET(applet),
391 "prefs",
392 _("Preferences"),
393 show_prefs,
394 NULL);
395 applet_widget_register_callback(APPLET_WIDGET(applet),
396 "signon",
397 _("Signon"),
398 applet_show_login,
399 NULL);
400
401 if((general_options & OPT_GEN_AUTO_LOGIN) &&
402 (general_options & OPT_GEN_REMEMBER_PASS)) {
403
404 applet_show_login(APPLET_WIDGET(applet), NULL);
405 }
406
407 applet_widget_gtk_main();
408 #else
409
410
411 show_login();
412 gtk_main();
413
414 #endif /* USE_APPLET */
415
416 return 0;
417
418 }