Mercurial > gftp.yaz
annotate src/gtk/menu-items.c @ 308:758d9d648cc0
croatian translations added
author | delacko |
---|---|
date | Fri, 07 Nov 2003 18:10:04 +0000 |
parents | ab4c90a561fc |
children | cdabbe5c9a95 |
rev | line source |
---|---|
1 | 1 /*****************************************************************************/ |
2 /* menu-items.c - menu callbacks */ | |
255 | 3 /* Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org> */ |
1 | 4 /* */ |
5 /* This program is free software; you can redistribute it and/or modify */ | |
6 /* it under the terms of the GNU General Public License as published by */ | |
7 /* the Free Software Foundation; either version 2 of the License, or */ | |
8 /* (at your option) any later version. */ | |
9 /* */ | |
10 /* This program is distributed in the hope that it will be useful, */ | |
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ | |
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ | |
13 /* GNU General Public License for more details. */ | |
14 /* */ | |
15 /* You should have received a copy of the GNU General Public License */ | |
16 /* along with this program; if not, write to the Free Software */ | |
17 /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
18 /*****************************************************************************/ | |
19 | |
20 #include <gftp-gtk.h> | |
33 | 21 static const char cvsid[] = "$Id$"; |
1 | 22 |
23 void | |
24 change_setting (gftp_window_data * wdata, int menuitem, GtkWidget * checkmenu) | |
25 { | |
26 switch (menuitem) | |
27 { | |
28 case 1: | |
254 | 29 gftp_set_global_option ("ascii_transfers", GINT_TO_POINTER(1)); |
1 | 30 break; |
31 case 2: | |
254 | 32 gftp_set_global_option ("ascii_transfers", GINT_TO_POINTER(0)); |
1 | 33 break; |
34 case 3: | |
35 current_wdata = &window1; | |
36 other_wdata = &window2; | |
37 if (wdata->request) | |
38 update_window_info (); | |
39 break; | |
40 case 4: | |
41 current_wdata = &window2; | |
42 other_wdata = &window1; | |
43 if (wdata->request) | |
44 update_window_info (); | |
45 break; | |
46 } | |
47 } | |
48 | |
49 | |
50 void | |
51 tb_openurl_dialog (gpointer data) | |
52 { | |
53 const char *edttxt; | |
54 | |
55 if (current_wdata->request->stopable) | |
56 { | |
57 ftp_log (gftp_logging_misc, NULL, | |
58 _("%s: Please hit the stop button first to do anything else\n"), | |
59 _("OpenURL")); | |
60 return; | |
61 } | |
62 | |
63 edttxt = gtk_entry_get_text (GTK_ENTRY (GTK_COMBO (hostedit)->entry)); | |
64 if (*edttxt == '\0') | |
65 { | |
66 ftp_log (gftp_logging_misc, NULL, | |
67 _("OpenURL: Operation canceled...you must enter a string\n")); | |
68 return; | |
69 } | |
70 | |
71 if (GFTP_IS_CONNECTED (current_wdata->request)) | |
72 disconnect (current_wdata); | |
73 else if (edttxt != NULL && *edttxt != '\0') | |
74 toolbar_hostedit (NULL, NULL); | |
75 else | |
76 openurl_dialog (current_wdata); | |
77 } | |
78 | |
79 | |
19 | 80 static void |
81 do_openurl (gftp_window_data * wdata, gftp_dialog_data * ddata) | |
1 | 82 { |
83 const char *tempstr; | |
84 | |
85 if (current_wdata->request->stopable) | |
86 { | |
87 ftp_log (gftp_logging_misc, NULL, | |
88 _("%s: Please hit the stop button first to do anything else\n"), | |
89 _("OpenURL")); | |
90 return; | |
91 } | |
92 | |
19 | 93 tempstr = gtk_entry_get_text (GTK_ENTRY (ddata->edit)); |
1 | 94 if (*tempstr == '\0') |
95 { | |
96 ftp_log (gftp_logging_misc, NULL, | |
97 _("OpenURL: Operation canceled...you must enter a string\n")); | |
98 return; | |
99 } | |
100 | |
101 if (GFTP_IS_CONNECTED (wdata->request)) | |
102 disconnect (wdata); | |
103 | |
104 if (gftp_parse_url (wdata->request, tempstr) == 0) | |
105 { | |
19 | 106 gtk_widget_destroy (ddata->dialog); |
1 | 107 ftp_connect (wdata, wdata->request, 1); |
108 } | |
109 else | |
173 | 110 gtk_widget_destroy (ddata->dialog); |
111 | |
19 | 112 ddata->dialog = NULL; |
113 } | |
114 | |
115 | |
116 void | |
117 openurl_dialog (gpointer data) | |
118 { | |
119 MakeEditDialog (_("Connect via URL"), _("Enter ftp url to connect to"), | |
120 NULL, 1, NULL, gftp_dialog_button_connect, do_openurl, data, | |
121 NULL, NULL); | |
1 | 122 } |
123 | |
124 | |
125 void | |
126 disconnect (gpointer data) | |
127 { | |
128 gftp_window_data * wdata; | |
129 | |
130 wdata = data; | |
182 | 131 gftp_delete_cache_entry (wdata->request, NULL, 1); |
1 | 132 gftp_disconnect (wdata->request); |
133 remove_files_window (wdata); | |
134 update_window (wdata); | |
135 } | |
136 | |
137 | |
138 static void | |
19 | 139 dochange_filespec (gftp_window_data * wdata, gftp_dialog_data * ddata) |
1 | 140 { |
141 GList * templist, * filelist; | |
142 gftp_file * tempfle; | |
143 const char *edttext; | |
144 int num; | |
145 | |
146 wdata->show_selected = 0; | |
147 | |
19 | 148 edttext = gtk_entry_get_text (GTK_ENTRY (ddata->edit)); |
1 | 149 if (*edttext == '\0') |
150 { | |
151 ftp_log (gftp_logging_misc, NULL, | |
152 _("Change Filespec: Operation canceled...you must enter a string\n")); | |
153 return; | |
154 } | |
155 if (wdata->filespec) | |
156 g_free (wdata->filespec); | |
129 | 157 wdata->filespec = g_strdup (edttext); |
1 | 158 |
159 filelist = wdata->files; | |
160 templist = GTK_CLIST (wdata->listbox)->selection; | |
161 num = 0; | |
162 while (templist != NULL) | |
163 { | |
164 templist = get_next_selection (templist, &filelist, &num); | |
165 tempfle = filelist->data; | |
166 tempfle->was_sel = 1; | |
167 } | |
168 | |
169 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
170 gtk_clist_clear (GTK_CLIST (wdata->listbox)); | |
171 templist = wdata->files; | |
172 while (templist != NULL) | |
173 { | |
174 tempfle = templist->data; | |
175 add_file_listbox (wdata, tempfle); | |
176 templist = templist->next; | |
177 } | |
178 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
179 update_window (wdata); | |
180 } | |
181 | |
182 | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
183 void |
19 | 184 change_filespec (gpointer data) |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
185 { |
19 | 186 gftp_window_data * wdata; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
187 |
19 | 188 wdata = data; |
189 if (!check_status (_("Change Filespec"), wdata, 0, 0, 0, 1)) | |
190 return; | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
191 |
19 | 192 MakeEditDialog (_("Change Filespec"), _("Enter the new file specification"), |
193 wdata->filespec, 1, NULL, gftp_dialog_button_change, | |
194 dochange_filespec, wdata, NULL, NULL); | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
195 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
196 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
197 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
198 static void |
21 | 199 destroy_save_directory_listing (GtkWidget * widget, gftp_save_dir_struct * str) |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
200 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
201 gtk_widget_destroy (str->filew); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
202 g_free (str); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
203 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
204 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
205 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
206 static void |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
207 dosave_directory_listing (GtkWidget * widget, gftp_save_dir_struct * str) |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
208 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
209 const char *filename; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
210 gftp_file * tempfle; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
211 GList * templist; |
131 | 212 char *tempstr; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
213 FILE * fd; |
131 | 214 |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
215 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
216 filename = gtk_file_selection_get_filename (GTK_FILE_SELECTION (str->filew)); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
217 if ((fd = fopen (filename, "w")) == NULL) |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
218 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
219 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
220 _("Error: Cannot open %s for writing: %s\n"), filename, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
221 g_strerror (errno)); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
222 return; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
223 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
224 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
225 for (templist = str->wdata->files; |
276 | 226 templist != NULL; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
227 templist = templist->next) |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
228 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
229 tempfle = templist->data; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
230 |
295 | 231 if (!tempfle->shown) |
232 continue; | |
233 | |
131 | 234 tempstr = gftp_gen_ls_string (tempfle, NULL, NULL); |
235 fprintf (fd, "%s\n", tempstr); | |
236 g_free (tempstr); | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
237 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
238 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
239 fclose (fd); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
240 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
241 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
242 |
19 | 243 void |
244 save_directory_listing (gpointer data) | |
245 { | |
246 gftp_save_dir_struct * str; | |
247 GtkWidget *filew; | |
248 | |
249 filew = gtk_file_selection_new (_("Save Directory Listing")); | |
250 | |
251 str = g_malloc (sizeof (*str)); | |
252 str->filew = filew; | |
253 str->wdata = data; | |
254 | |
255 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
256 "clicked", GTK_SIGNAL_FUNC (dosave_directory_listing), | |
257 str); | |
21 | 258 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), |
259 "clicked", | |
260 GTK_SIGNAL_FUNC (destroy_save_directory_listing), str); | |
261 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->cancel_button), | |
262 "clicked", | |
263 GTK_SIGNAL_FUNC (destroy_save_directory_listing), str); | |
19 | 264 |
265 gtk_window_set_wmclass (GTK_WINDOW(filew), "Save Directory Listing", "gFTP"); | |
266 gtk_widget_show (filew); | |
267 } | |
268 | |
269 | |
1 | 270 void |
271 show_selected (gpointer data) | |
272 { | |
273 GList * templist, * filelist; | |
274 gftp_window_data * wdata; | |
275 gftp_file * tempfle; | |
276 int num; | |
277 | |
278 wdata = data; | |
279 wdata->show_selected = 1; | |
280 | |
281 filelist = wdata->files; | |
282 templist = GTK_CLIST (wdata->listbox)->selection; | |
283 num = 0; | |
284 while (templist != NULL) | |
285 { | |
286 templist = get_next_selection (templist, &filelist, &num); | |
287 tempfle = filelist->data; | |
288 tempfle->was_sel = 1; | |
289 } | |
290 | |
291 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
292 gtk_clist_clear (GTK_CLIST (wdata->listbox)); | |
293 templist = wdata->files; | |
294 while (templist != NULL) | |
295 { | |
296 tempfle = templist->data; | |
297 add_file_listbox (wdata, tempfle); | |
298 templist = templist->next; | |
299 } | |
300 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
301 update_window (wdata); | |
302 } | |
303 | |
304 | |
305 void | |
306 selectall (gpointer data) | |
307 { | |
308 gftp_window_data * wdata; | |
309 | |
310 wdata = data; | |
311 wdata->show_selected = 0; | |
312 gtk_clist_select_all (GTK_CLIST (wdata->listbox)); | |
313 } | |
314 | |
315 | |
316 void | |
317 selectallfiles (gpointer data) | |
318 { | |
319 gftp_window_data * wdata; | |
320 gftp_file * tempfle; | |
321 GList *templist; | |
322 int i; | |
323 | |
324 wdata = data; | |
325 wdata->show_selected = 0; | |
326 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
327 i = 0; | |
39 | 328 templist = wdata->files; |
1 | 329 while (templist != NULL) |
330 { | |
331 tempfle = (gftp_file *) templist->data; | |
332 if (tempfle->shown) | |
333 { | |
334 if (tempfle->isdir) | |
335 gtk_clist_unselect_row (GTK_CLIST (wdata->listbox), i, 0); | |
336 else | |
337 gtk_clist_select_row (GTK_CLIST (wdata->listbox), i, 0); | |
338 i++; | |
339 } | |
340 templist = templist->next; | |
341 } | |
342 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
343 } | |
344 | |
345 | |
346 void | |
347 deselectall (gpointer data) | |
348 { | |
349 gftp_window_data * wdata; | |
350 | |
351 wdata = data; | |
352 wdata->show_selected = 0; | |
353 gtk_clist_unselect_all (GTK_CLIST (wdata->listbox)); | |
354 } | |
355 | |
356 | |
19 | 357 static void |
358 dosite (gftp_window_data * wdata, gftp_dialog_data * ddata) | |
1 | 359 { |
360 const char *edttext; | |
361 | |
19 | 362 edttext = gtk_entry_get_text (GTK_ENTRY (ddata->edit)); |
1 | 363 if (*edttext == '\0') |
364 { | |
365 ftp_log (gftp_logging_misc, NULL, | |
366 _("SITE: Operation canceled...you must enter a string\n")); | |
367 return; | |
368 } | |
369 | |
370 if (check_reconnect (wdata) < 0) | |
371 return; | |
372 gftp_site_cmd (wdata->request, edttext); | |
373 | |
374 if (!GFTP_IS_CONNECTED (wdata->request)) | |
375 disconnect (wdata); | |
376 } | |
377 | |
378 | |
19 | 379 void |
380 site_dialog (gpointer data) | |
381 { | |
382 gftp_window_data * wdata; | |
383 | |
384 wdata = data; | |
385 if (!check_status (_("Site"), wdata, 0, 0, 0, wdata->request->site != NULL)) | |
386 return; | |
387 | |
388 MakeEditDialog (_("Site"), _("Enter site-specific command"), NULL, 1, | |
389 NULL, gftp_dialog_button_ok, dosite, wdata, NULL, NULL); | |
390 } | |
391 | |
392 | |
48 | 393 static void * |
394 do_change_dir_thread (void * data) | |
395 { | |
129 | 396 int success, sj, network_timeout; |
48 | 397 gftp_window_data * wdata; |
398 | |
399 wdata = data; | |
400 | |
401 if (wdata->request->use_threads) | |
402 { | |
403 sj = sigsetjmp (jmp_environment, 1); | |
404 use_jmp_environment = 1; | |
405 } | |
406 else | |
407 sj = 0; | |
408 | |
129 | 409 gftp_lookup_request_option (wdata->request, "network_timeout", |
410 &network_timeout); | |
411 | |
48 | 412 success = 0; |
413 if (sj == 0) | |
414 { | |
129 | 415 if (network_timeout > 0) |
416 alarm (network_timeout); | |
48 | 417 success = gftp_set_directory (wdata->request, wdata->request->directory); |
418 alarm (0); | |
419 } | |
420 else | |
421 { | |
422 gftp_disconnect (wdata->request); | |
423 wdata->request->logging_function (gftp_logging_error, | |
186 | 424 wdata->request, |
48 | 425 _("Operation canceled\n")); |
426 } | |
427 | |
428 if (wdata->request->use_threads) | |
429 use_jmp_environment = 0; | |
430 | |
431 wdata->request->stopable = 0; | |
195 | 432 return (GINT_TO_POINTER (success)); |
48 | 433 } |
434 | |
435 | |
436 static int | |
437 do_change_dir (gftp_window_data * wdata, char *directory) | |
438 { | |
439 char *olddir; | |
440 int ret; | |
441 | |
442 if (directory != wdata->request->directory) | |
443 { | |
444 olddir = wdata->request->directory; | |
129 | 445 wdata->request->directory = g_strdup (directory); |
48 | 446 } |
447 else | |
448 olddir = NULL; | |
449 | |
195 | 450 ret = GPOINTER_TO_INT (generic_thread (do_change_dir_thread, wdata)); |
48 | 451 |
452 if (!GFTP_IS_CONNECTED (wdata->request)) | |
453 { | |
454 disconnect (wdata); | |
455 if (olddir != NULL) | |
456 g_free (olddir); | |
457 return (-2); | |
458 } | |
459 | |
460 if (ret != 0) | |
461 { | |
462 g_free (wdata->request->directory); | |
463 wdata->request->directory = olddir; | |
464 } | |
465 else | |
466 g_free (olddir); | |
467 | |
468 return (ret); | |
469 } | |
470 | |
471 | |
1 | 472 int |
473 chdir_edit (GtkWidget * widget, gpointer data) | |
474 { | |
475 gftp_window_data * wdata; | |
476 const char *edttxt; | |
477 char *tempstr; | |
478 | |
479 wdata = data; | |
480 edttxt = gtk_entry_get_text (GTK_ENTRY (GTK_COMBO (wdata->combo)->entry)); | |
481 if (!GFTP_IS_CONNECTED (wdata->request) && *edttxt != '\0') | |
482 { | |
483 toolbar_hostedit (NULL, NULL); | |
484 return (0); | |
485 } | |
486 | |
487 if (!check_status (_("Chdir"), wdata, wdata->request->use_threads, 0, 0, | |
488 wdata->request->chdir != NULL)) | |
489 return (FALSE); | |
490 | |
491 if ((tempstr = expand_path (edttxt)) == NULL) | |
492 return (FALSE); | |
493 | |
494 if (check_reconnect (wdata) < 0) | |
495 return (FALSE); | |
496 | |
497 if (do_change_dir (wdata, tempstr) == 0) | |
498 { | |
499 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
500 remove_files_window (wdata); | |
501 ftp_list_files (wdata, 1); | |
502 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
503 add_history (wdata->combo, wdata->history, wdata->histlen, tempstr); | |
504 } | |
505 | |
506 g_free (tempstr); | |
507 return (FALSE); | |
508 } | |
509 | |
510 | |
511 int | |
512 chdir_dialog (gpointer data) | |
513 { | |
514 GList * templist, * filelist; | |
515 gftp_window_data * wdata; | |
516 char *newdir, *tempstr; | |
517 gftp_file *tempfle; | |
518 int num, ret; | |
519 | |
520 wdata = data; | |
521 if (!check_status (_("Chdir"), wdata, wdata->request->use_threads, 1, 0, | |
522 wdata->request->chdir != NULL)) | |
523 return (0); | |
524 | |
39 | 525 filelist = wdata->files; |
1 | 526 templist = GTK_CLIST (wdata->listbox)->selection; |
527 num = 0; | |
528 templist = get_next_selection (templist, &filelist, &num); | |
529 tempfle = filelist->data; | |
530 | |
245 | 531 newdir = gftp_build_path (wdata->request->directory, tempfle->file, NULL); |
211 | 532 |
1 | 533 if ((tempstr = expand_path (newdir)) == NULL) |
211 | 534 { |
535 g_free (newdir); | |
536 return (0); | |
537 } | |
538 | |
1 | 539 g_free (newdir); |
540 | |
541 if (check_reconnect (wdata) < 0) | |
542 return (0); | |
543 | |
544 ret = 0; | |
545 if (do_change_dir (wdata, tempstr) == 0) | |
546 { | |
547 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
548 remove_files_window (wdata); | |
549 ftp_list_files (wdata, 1); | |
550 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
551 ret = 1; | |
552 } | |
553 g_free (tempstr); | |
554 return (ret); | |
555 } | |
556 | |
557 | |
558 void | |
559 clearlog (gpointer data) | |
560 { | |
561 guint len; | |
45 | 562 #if GTK_MAJOR_VERSION == 1 |
1 | 563 len = gtk_text_get_length (GTK_TEXT (logwdw)); |
564 gtk_text_set_point (GTK_TEXT (logwdw), len); | |
565 gtk_text_backward_delete (GTK_TEXT (logwdw), len); | |
566 #else | |
567 GtkTextBuffer * textbuf; | |
568 GtkTextIter iter, iter2; | |
569 | |
570 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
571 len = gtk_text_buffer_get_char_count (textbuf); | |
572 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
573 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, len - 1); | |
574 gtk_text_buffer_delete (textbuf, &iter, &iter2); | |
575 #endif | |
576 } | |
577 | |
578 | |
579 void | |
580 viewlog (gpointer data) | |
581 { | |
582 char *tempstr, *txt, *pos; | |
583 guint textlen; | |
584 ssize_t len; | |
585 int fd; | |
45 | 586 #if GTK_MAJOR_VERSION > 1 |
1 | 587 GtkTextBuffer * textbuf; |
588 GtkTextIter iter, iter2; | |
589 #endif | |
590 | |
41 | 591 tempstr = g_strconcat (g_get_tmp_dir (), "/gftp-view.XXXXXXXXXX", NULL); |
1 | 592 if ((fd = mkstemp (tempstr)) < 0) |
593 { | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
594 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
595 _("Error: Cannot open %s for writing: %s\n"), tempstr, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
596 g_strerror (errno)); |
1 | 597 g_free (tempstr); |
598 return; | |
599 } | |
600 chmod (tempstr, S_IRUSR | S_IWUSR); | |
601 unlink (tempstr); | |
602 | |
45 | 603 #if GTK_MAJOR_VERSION == 1 |
1 | 604 textlen = gtk_text_get_length (GTK_TEXT (logwdw)); |
605 txt = gtk_editable_get_chars (GTK_EDITABLE (logwdw), 0, -1); | |
606 #else | |
607 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
608 textlen = gtk_text_buffer_get_char_count (textbuf); | |
609 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
610 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, textlen - 1); | |
611 txt = gtk_text_buffer_get_text (textbuf, &iter, &iter2, 0); | |
612 #endif | |
613 pos = txt; | |
614 do | |
615 { | |
616 if ((len = write (fd, pos, textlen)) == -1) | |
617 { | |
186 | 618 ftp_log (gftp_logging_misc, NULL, |
619 _("Error: Error writing to %s: %s\n"), | |
620 tempstr, g_strerror (errno)); | |
1 | 621 break; |
622 } | |
623 textlen -= len; | |
624 pos += len; | |
625 } while (textlen > 0); | |
626 | |
627 lseek (fd, 0, SEEK_SET); | |
628 view_file (tempstr, fd, 1, 0, 0, 1, NULL, NULL); | |
629 close (fd); | |
630 g_free (tempstr); | |
631 g_free (txt); | |
632 } | |
633 | |
634 | |
635 static void | |
636 dosavelog (GtkWidget * widget, GtkFileSelection * fs) | |
637 { | |
638 const char *filename; | |
639 char *txt, *pos; | |
640 guint textlen; | |
641 ssize_t len; | |
642 FILE *fd; | |
643 int ok; | |
45 | 644 #if GTK_MAJOR_VERSION > 1 |
1 | 645 GtkTextBuffer * textbuf; |
646 GtkTextIter iter, iter2; | |
647 #endif | |
648 | |
649 filename = gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)); | |
650 if ((fd = fopen (filename, "w")) == NULL) | |
651 { | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
652 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
653 _("Error: Cannot open %s for writing: %s\n"), filename, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
654 g_strerror (errno)); |
1 | 655 return; |
656 } | |
657 | |
45 | 658 #if GTK_MAJOR_VERSION == 1 |
1 | 659 textlen = gtk_text_get_length (GTK_TEXT (logwdw)); |
660 txt = gtk_editable_get_chars (GTK_EDITABLE (logwdw), 0, -1); | |
661 #else | |
662 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
663 textlen = gtk_text_buffer_get_char_count (textbuf); | |
664 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
665 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, textlen - 1); | |
666 txt = gtk_text_buffer_get_text (textbuf, &iter, &iter2, 0); | |
667 #endif | |
668 | |
669 ok = 1; | |
670 pos = txt; | |
671 do | |
672 { | |
673 if ((len = write (fileno (fd), pos, textlen)) == -1) | |
674 { | |
675 ok = 0; | |
186 | 676 ftp_log (gftp_logging_misc, NULL, |
677 _("Error: Error writing to %s: %s\n"), | |
678 filename, g_strerror (errno)); | |
1 | 679 break; |
680 } | |
681 | |
682 textlen -= len; | |
683 pos += len; | |
684 } while (textlen > 0); | |
685 | |
686 if (ok) | |
687 ftp_log (gftp_logging_misc, NULL, | |
688 _("Successfully wrote the log file to %s\n"), filename); | |
689 | |
690 fclose (fd); | |
691 g_free (txt); | |
692 } | |
693 | |
694 | |
695 void | |
19 | 696 savelog (gpointer data) |
697 { | |
698 GtkWidget *filew; | |
699 | |
700 filew = gtk_file_selection_new (_("Save Log")); | |
701 | |
702 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
703 "clicked", GTK_SIGNAL_FUNC (dosavelog), filew); | |
704 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
705 "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
706 GTK_OBJECT (filew)); | |
707 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->cancel_button), "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), GTK_OBJECT (filew)); | |
708 | |
709 gtk_file_selection_set_filename (GTK_FILE_SELECTION (filew), "gftp.log"); | |
710 gtk_window_set_wmclass (GTK_WINDOW(filew), "Save Log", "gFTP"); | |
711 gtk_widget_show (filew); | |
712 } | |
713 | |
714 | |
715 void | |
1 | 716 clear_cache (gpointer data) |
717 { | |
718 gftp_clear_cache_files (); | |
719 } | |
720 | |
721 | |
722 void | |
723 about_dialog (gpointer data) | |
724 { | |
725 GtkWidget * tempwid, * notebook, * box, * label, * view, * vscroll, | |
726 * dialog; | |
727 char *tempstr, *no_license_agreement, *str, buf[255]; | |
728 size_t len; | |
729 FILE * fd; | |
45 | 730 #if GTK_MAJOR_VERSION > 1 |
1 | 731 GtkTextBuffer * textbuf; |
732 GtkTextIter iter; | |
733 guint textlen; | |
734 #endif | |
735 | |
736 no_license_agreement = g_strdup_printf (_("Cannot find the license agreement file COPYING. Please make sure it is in either %s or in %s"), BASE_CONF_DIR, SHARE_DIR); | |
737 | |
45 | 738 #if GTK_MAJOR_VERSION == 1 |
1 | 739 dialog = gtk_dialog_new (); |
740 gtk_window_set_title (GTK_WINDOW (dialog), _("About gFTP")); | |
741 gtk_container_border_width (GTK_CONTAINER | |
742 (GTK_DIALOG (dialog)->action_area), 5); | |
743 gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->action_area), TRUE); | |
19 | 744 #else |
745 dialog = gtk_dialog_new_with_buttons (_("About gFTP"), NULL, 0, | |
746 GTK_STOCK_CLOSE, | |
747 GTK_RESPONSE_CLOSE, | |
748 NULL); | |
749 #endif | |
750 gtk_window_set_wmclass (GTK_WINDOW(dialog), "about", "gFTP"); | |
1 | 751 gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); |
19 | 752 gtk_container_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), 10); |
753 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 5); | |
1 | 754 gtk_widget_realize (dialog); |
755 | |
19 | 756 if (gftp_icon != NULL) |
757 { | |
758 gdk_window_set_icon (dialog->window, NULL, gftp_icon->pixmap, | |
759 gftp_icon->bitmap); | |
168 | 760 gdk_window_set_icon_name (dialog->window, gftp_version); |
19 | 761 } |
762 | |
1 | 763 notebook = gtk_notebook_new (); |
764 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), notebook, TRUE, | |
765 TRUE, 0); | |
766 gtk_widget_show (notebook); | |
767 | |
768 box = gtk_vbox_new (TRUE, 5); | |
769 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
770 gtk_widget_show (box); | |
771 | |
772 tempwid = toolbar_pixmap (dialog, "gftp-logo.xpm"); | |
773 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
774 gtk_widget_show (tempwid); | |
775 | |
255 | 776 tempstr = g_strdup_printf (_("%s\nCopyright (C) 1998-2003 Brian Masney <masneyb@gftp.org>\nOfficial Homepage: http://www.gftp.org/\nLogo by: Aaron Worley <planet_hoth@yahoo.com>\n"), gftp_version); |
1 | 777 str = _("Translated by"); |
778 if (strcmp (str, "Translated by") != 0) | |
779 { | |
780 tempstr = g_realloc (tempstr, strlen (tempstr) + strlen (str) + 1); | |
781 strcat (tempstr, str); | |
782 } | |
783 tempwid = gtk_label_new (tempstr); | |
784 g_free (tempstr); | |
785 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
786 gtk_widget_show (tempwid); | |
787 | |
788 label = gtk_label_new (_("About")); | |
789 gtk_widget_show (label); | |
790 | |
791 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
792 | |
793 box = gtk_vbox_new (FALSE, 5); | |
794 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
795 gtk_widget_show (box); | |
796 | |
797 tempwid = gtk_table_new (1, 2, FALSE); | |
798 gtk_box_pack_start (GTK_BOX (box), tempwid, TRUE, TRUE, 0); | |
799 gtk_widget_show (tempwid); | |
800 | |
45 | 801 #if GTK_MAJOR_VERSION == 1 |
1 | 802 view = gtk_text_new (NULL, NULL); |
803 gtk_text_set_editable (GTK_TEXT (view), FALSE); | |
804 gtk_text_set_word_wrap (GTK_TEXT (view), TRUE); | |
805 | |
806 gtk_table_attach (GTK_TABLE (tempwid), view, 0, 1, 0, 1, | |
807 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
808 0, 0); | |
809 gtk_widget_show (view); | |
810 | |
811 vscroll = gtk_vscrollbar_new (GTK_TEXT (view)->vadj); | |
812 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 1, 2, 0, 1, | |
813 GTK_FILL, GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0); | |
814 gtk_widget_show (vscroll); | |
815 #else | |
816 view = gtk_text_view_new (); | |
817 gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE); | |
818 gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (view), FALSE); | |
819 gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD); | |
820 | |
821 vscroll = gtk_scrolled_window_new (NULL, NULL); | |
822 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (vscroll), | |
823 GTK_POLICY_AUTOMATIC, | |
824 GTK_POLICY_AUTOMATIC); | |
825 | |
826 gtk_container_add (GTK_CONTAINER (vscroll), view); | |
827 gtk_widget_show (view); | |
828 | |
829 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 0, 1, 0, 1, | |
830 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
831 0, 0); | |
832 gtk_widget_show (vscroll); | |
833 | |
834 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view)); | |
835 #endif | |
836 | |
837 label = gtk_label_new (_("License Agreement")); | |
838 gtk_widget_show (label); | |
839 | |
840 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
841 | |
45 | 842 #if GTK_MAJOR_VERSION == 1 |
1 | 843 tempwid = gtk_button_new_with_label (_(" Close ")); |
844 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT); | |
845 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid, | |
846 FALSE, FALSE, 0); | |
847 gtk_signal_connect_object (GTK_OBJECT (tempwid), "clicked", | |
848 GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
849 GTK_OBJECT (dialog)); | |
850 gtk_widget_grab_default (tempwid); | |
851 gtk_widget_show (tempwid); | |
19 | 852 #else |
853 g_signal_connect_swapped (GTK_OBJECT (dialog), "response", | |
854 G_CALLBACK (gtk_widget_destroy), | |
855 GTK_OBJECT (dialog)); | |
856 #endif | |
1 | 857 |
858 tempstr = g_strconcat ("/usr/share/common-licenses/GPL", NULL); | |
859 if (access (tempstr, F_OK) != 0) | |
860 { | |
861 g_free (tempstr); | |
862 tempstr = expand_path (SHARE_DIR "/COPYING"); | |
863 if (access (tempstr, F_OK) != 0) | |
864 { | |
865 g_free (tempstr); | |
866 tempstr = expand_path (BASE_CONF_DIR "/COPYING"); | |
867 if (access (tempstr, F_OK) != 0) | |
868 { | |
45 | 869 #if GTK_MAJOR_VERSION == 1 |
1 | 870 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
871 no_license_agreement, -1); | |
872 #else | |
873 textlen = gtk_text_buffer_get_char_count (textbuf); | |
874 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen - 1); | |
875 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); | |
876 #endif | |
877 gtk_widget_show (dialog); | |
878 return; | |
879 } | |
880 } | |
881 } | |
882 | |
883 if ((fd = fopen (tempstr, "r")) == NULL) | |
884 { | |
45 | 885 #if GTK_MAJOR_VERSION == 1 |
1 | 886 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
887 no_license_agreement, -1); | |
888 #else | |
889 textlen = gtk_text_buffer_get_char_count (textbuf); | |
890 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen - 1); | |
891 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); | |
892 #endif | |
893 gtk_widget_show (dialog); | |
894 g_free (tempstr); | |
895 return; | |
896 } | |
897 g_free (tempstr); | |
898 | |
899 memset (buf, 0, sizeof (buf)); | |
900 while ((len = fread (buf, 1, sizeof (buf) - 1, fd))) | |
901 { | |
902 buf[len] = '\0'; | |
45 | 903 #if GTK_MAJOR_VERSION == 1 |
1 | 904 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, buf, -1); |
905 #else | |
906 textlen = gtk_text_buffer_get_char_count (textbuf); | |
907 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen - 1); | |
908 gtk_text_buffer_insert (textbuf, &iter, buf, -1); | |
909 #endif | |
910 } | |
911 fclose (fd); | |
912 gtk_widget_show (dialog); | |
913 g_free (no_license_agreement); | |
914 gftp_free_pixmap ("gftp-logo.xpm"); | |
915 } | |
916 | |
917 | |
918 void | |
919 compare_windows (gpointer data) | |
920 { | |
921 gftp_file * curfle, * otherfle; | |
922 GList * curlist, * otherlist; | |
923 int row; | |
924 | |
925 if (!check_status (_("Compare Windows"), &window2, 1, 0, 0, 1)) | |
926 return; | |
927 | |
928 deselectall (&window1); | |
929 deselectall (&window2); | |
930 | |
931 row = 0; | |
932 curlist = window1.files; | |
933 while (curlist != NULL) | |
934 { | |
935 curfle = curlist->data; | |
936 if (!curfle->shown) | |
937 { | |
938 curlist = curlist->next; | |
939 continue; | |
940 } | |
941 | |
942 otherlist = window2.files; | |
943 while (otherlist != NULL) | |
944 { | |
945 otherfle = otherlist->data; | |
946 if (!otherfle->shown) | |
947 { | |
948 otherlist = otherlist->next; | |
949 continue; | |
950 } | |
951 | |
952 if (strcmp (otherfle->file, curfle->file) == 0 && | |
953 otherfle->isdir == curfle->isdir && | |
954 (curfle->isdir || otherfle->size == curfle->size)) | |
955 break; | |
956 | |
957 otherlist = otherlist->next; | |
958 } | |
959 | |
960 if (otherlist == NULL) | |
961 gtk_clist_select_row (GTK_CLIST (window1.listbox), row, 0); | |
962 row++; | |
963 curlist = curlist->next; | |
964 } | |
965 | |
966 row = 0; | |
967 curlist = window2.files; | |
968 while (curlist != NULL) | |
969 { | |
970 curfle = curlist->data; | |
971 if (!curfle->shown) | |
972 { | |
973 curlist = curlist->next; | |
974 continue; | |
975 } | |
976 | |
977 otherlist = window1.files; | |
978 while (otherlist != NULL) | |
979 { | |
980 otherfle = otherlist->data; | |
981 if (!otherfle->shown) | |
982 { | |
983 otherlist = otherlist->next; | |
984 continue; | |
985 } | |
986 | |
987 if (strcmp (otherfle->file, curfle->file) == 0 && | |
988 otherfle->isdir == curfle->isdir && | |
989 (curfle->isdir || otherfle->size == curfle->size)) | |
990 break; | |
991 | |
992 otherlist = otherlist->next; | |
993 } | |
994 | |
995 if (otherlist == NULL) | |
996 gtk_clist_select_row (GTK_CLIST (window2.listbox), row, 0); | |
997 row++; | |
998 curlist = curlist->next; | |
999 } | |
1000 } |