Mercurial > gftp.yaz
annotate src/gtk/menu-items.c @ 555:7f54d0c0edbc
2004-9-17 Brian Masney <masneyb@gftp.org>
* lib/misc.c lib/cache.c lib/config_file.c lib/gftp.h lib/protocols.c
lib/rfc2068.c lib/sshv2.c src/gtk/bookmarks.c src/gtk/dnd.c
src/gtk/gftp-gtk.c src/gtk/gtkui.c src/gtk/menu-items.c
src/gtk/misc-gtk.c src/gtk/transfer.c src/uicommon/gftpui.c - added
gftp_request argument to gftp_build_path() and expand_path(). Renamed
expand_path() to gftp_expand_path()
* lib/gftp.h - fixed compile error in gftp_need_username macro
author | masneyb |
---|---|
date | Fri, 17 Sep 2004 23:37:47 +0000 |
parents | 7262851e3ae8 |
children | 2366865be140 |
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 | |
518 | 20 #include "gftp-gtk.h" |
33 | 21 static const char cvsid[] = "$Id$"; |
1 | 22 |
23 static void | |
19 | 24 dochange_filespec (gftp_window_data * wdata, gftp_dialog_data * ddata) |
1 | 25 { |
26 GList * templist, * filelist; | |
27 gftp_file * tempfle; | |
28 const char *edttext; | |
29 int num; | |
30 | |
31 wdata->show_selected = 0; | |
32 | |
19 | 33 edttext = gtk_entry_get_text (GTK_ENTRY (ddata->edit)); |
1 | 34 if (*edttext == '\0') |
35 { | |
36 ftp_log (gftp_logging_misc, NULL, | |
37 _("Change Filespec: Operation canceled...you must enter a string\n")); | |
38 return; | |
39 } | |
40 if (wdata->filespec) | |
41 g_free (wdata->filespec); | |
129 | 42 wdata->filespec = g_strdup (edttext); |
1 | 43 |
44 filelist = wdata->files; | |
525 | 45 templist = gftp_gtk_get_list_selection (wdata); |
1 | 46 num = 0; |
47 while (templist != NULL) | |
48 { | |
49 templist = get_next_selection (templist, &filelist, &num); | |
50 tempfle = filelist->data; | |
51 tempfle->was_sel = 1; | |
52 } | |
53 | |
54 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
55 gtk_clist_clear (GTK_CLIST (wdata->listbox)); | |
56 templist = wdata->files; | |
57 while (templist != NULL) | |
58 { | |
59 tempfle = templist->data; | |
60 add_file_listbox (wdata, tempfle); | |
61 templist = templist->next; | |
62 } | |
63 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
64 update_window (wdata); | |
65 } | |
66 | |
67 | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
68 void |
19 | 69 change_filespec (gpointer data) |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
70 { |
19 | 71 gftp_window_data * wdata; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
72 |
19 | 73 wdata = data; |
74 if (!check_status (_("Change Filespec"), wdata, 0, 0, 0, 1)) | |
75 return; | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
76 |
19 | 77 MakeEditDialog (_("Change Filespec"), _("Enter the new file specification"), |
78 wdata->filespec, 1, NULL, gftp_dialog_button_change, | |
79 dochange_filespec, wdata, NULL, NULL); | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
80 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
81 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
82 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
83 static void |
21 | 84 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
|
85 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
86 gtk_widget_destroy (str->filew); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
87 g_free (str); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
88 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
89 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
90 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
91 static void |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
92 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
|
93 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
94 const char *filename; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
95 gftp_file * tempfle; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
96 GList * templist; |
131 | 97 char *tempstr; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
98 FILE * fd; |
131 | 99 |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
100 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
101 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
|
102 if ((fd = fopen (filename, "w")) == NULL) |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
103 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
104 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
105 _("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
|
106 g_strerror (errno)); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
107 return; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
108 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
109 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
110 for (templist = str->wdata->files; |
276 | 111 templist != NULL; |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
112 templist = templist->next) |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
113 { |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
114 tempfle = templist->data; |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
115 |
295 | 116 if (!tempfle->shown) |
117 continue; | |
118 | |
131 | 119 tempstr = gftp_gen_ls_string (tempfle, NULL, NULL); |
120 fprintf (fd, "%s\n", tempstr); | |
121 g_free (tempstr); | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
122 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
123 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
124 fclose (fd); |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
125 } |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
126 |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
127 |
19 | 128 void |
129 save_directory_listing (gpointer data) | |
130 { | |
131 gftp_save_dir_struct * str; | |
132 GtkWidget *filew; | |
133 | |
134 filew = gtk_file_selection_new (_("Save Directory Listing")); | |
135 | |
136 str = g_malloc (sizeof (*str)); | |
137 str->filew = filew; | |
138 str->wdata = data; | |
139 | |
140 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
141 "clicked", GTK_SIGNAL_FUNC (dosave_directory_listing), | |
142 str); | |
21 | 143 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), |
144 "clicked", | |
145 GTK_SIGNAL_FUNC (destroy_save_directory_listing), str); | |
146 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->cancel_button), | |
147 "clicked", | |
148 GTK_SIGNAL_FUNC (destroy_save_directory_listing), str); | |
19 | 149 |
150 gtk_window_set_wmclass (GTK_WINDOW(filew), "Save Directory Listing", "gFTP"); | |
151 gtk_widget_show (filew); | |
152 } | |
153 | |
154 | |
1 | 155 void |
156 show_selected (gpointer data) | |
157 { | |
158 GList * templist, * filelist; | |
159 gftp_window_data * wdata; | |
160 gftp_file * tempfle; | |
161 int num; | |
162 | |
163 wdata = data; | |
164 wdata->show_selected = 1; | |
165 | |
166 filelist = wdata->files; | |
525 | 167 templist = gftp_gtk_get_list_selection (wdata); |
1 | 168 num = 0; |
169 while (templist != NULL) | |
170 { | |
171 templist = get_next_selection (templist, &filelist, &num); | |
172 tempfle = filelist->data; | |
173 tempfle->was_sel = 1; | |
174 } | |
175 | |
176 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
177 gtk_clist_clear (GTK_CLIST (wdata->listbox)); | |
178 templist = wdata->files; | |
179 while (templist != NULL) | |
180 { | |
181 tempfle = templist->data; | |
182 add_file_listbox (wdata, tempfle); | |
183 templist = templist->next; | |
184 } | |
185 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
186 update_window (wdata); | |
187 } | |
188 | |
189 | |
190 void | |
191 selectall (gpointer data) | |
192 { | |
193 gftp_window_data * wdata; | |
194 | |
195 wdata = data; | |
196 wdata->show_selected = 0; | |
197 gtk_clist_select_all (GTK_CLIST (wdata->listbox)); | |
198 } | |
199 | |
200 | |
201 void | |
202 selectallfiles (gpointer data) | |
203 { | |
204 gftp_window_data * wdata; | |
205 gftp_file * tempfle; | |
206 GList *templist; | |
207 int i; | |
208 | |
209 wdata = data; | |
210 wdata->show_selected = 0; | |
211 gtk_clist_freeze (GTK_CLIST (wdata->listbox)); | |
212 i = 0; | |
39 | 213 templist = wdata->files; |
1 | 214 while (templist != NULL) |
215 { | |
216 tempfle = (gftp_file *) templist->data; | |
217 if (tempfle->shown) | |
218 { | |
499 | 219 if (S_ISDIR (tempfle->st_mode)) |
1 | 220 gtk_clist_unselect_row (GTK_CLIST (wdata->listbox), i, 0); |
221 else | |
222 gtk_clist_select_row (GTK_CLIST (wdata->listbox), i, 0); | |
223 i++; | |
224 } | |
225 templist = templist->next; | |
226 } | |
227 gtk_clist_thaw (GTK_CLIST (wdata->listbox)); | |
228 } | |
229 | |
230 | |
231 void | |
232 deselectall (gpointer data) | |
233 { | |
234 gftp_window_data * wdata; | |
235 | |
236 wdata = data; | |
237 wdata->show_selected = 0; | |
238 gtk_clist_unselect_all (GTK_CLIST (wdata->listbox)); | |
239 } | |
240 | |
241 | |
242 int | |
243 chdir_edit (GtkWidget * widget, gpointer data) | |
244 { | |
245 gftp_window_data * wdata; | |
246 const char *edttxt; | |
247 char *tempstr; | |
248 | |
249 wdata = data; | |
445 | 250 if (!check_status (_("Chdir"), wdata, gftpui_common_use_threads (wdata->request), 0, 0, |
341 | 251 wdata->request->chdir != NULL)) |
252 return (0); | |
337 | 253 |
254 if (check_reconnect (wdata) < 0) | |
255 return (0); | |
256 | |
341 | 257 edttxt = gtk_entry_get_text (GTK_ENTRY (GTK_COMBO (wdata->combo)->entry)); |
258 | |
1 | 259 if (!GFTP_IS_CONNECTED (wdata->request) && *edttxt != '\0') |
260 { | |
261 toolbar_hostedit (NULL, NULL); | |
262 return (0); | |
263 } | |
264 | |
555 | 265 if ((tempstr = gftp_expand_path (wdata->request, edttxt)) == NULL) |
1 | 266 return (FALSE); |
267 | |
341 | 268 if (gftpui_run_chdir (wdata, tempstr)) |
269 add_history (wdata->combo, wdata->history, wdata->histlen, edttxt); | |
1 | 270 |
271 g_free (tempstr); | |
341 | 272 return (0); |
1 | 273 } |
274 | |
275 | |
276 void | |
277 clearlog (gpointer data) | |
278 { | |
279 guint len; | |
45 | 280 #if GTK_MAJOR_VERSION == 1 |
1 | 281 len = gtk_text_get_length (GTK_TEXT (logwdw)); |
282 gtk_text_set_point (GTK_TEXT (logwdw), len); | |
283 gtk_text_backward_delete (GTK_TEXT (logwdw), len); | |
284 #else | |
285 GtkTextBuffer * textbuf; | |
286 GtkTextIter iter, iter2; | |
287 | |
288 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
289 len = gtk_text_buffer_get_char_count (textbuf); | |
290 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
444 | 291 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, len); |
1 | 292 gtk_text_buffer_delete (textbuf, &iter, &iter2); |
293 #endif | |
294 } | |
295 | |
296 | |
297 void | |
298 viewlog (gpointer data) | |
299 { | |
300 char *tempstr, *txt, *pos; | |
301 guint textlen; | |
302 ssize_t len; | |
303 int fd; | |
45 | 304 #if GTK_MAJOR_VERSION > 1 |
1 | 305 GtkTextBuffer * textbuf; |
306 GtkTextIter iter, iter2; | |
307 #endif | |
308 | |
41 | 309 tempstr = g_strconcat (g_get_tmp_dir (), "/gftp-view.XXXXXXXXXX", NULL); |
1 | 310 if ((fd = mkstemp (tempstr)) < 0) |
311 { | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
312 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
313 _("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
|
314 g_strerror (errno)); |
1 | 315 g_free (tempstr); |
316 return; | |
317 } | |
318 chmod (tempstr, S_IRUSR | S_IWUSR); | |
319 | |
45 | 320 #if GTK_MAJOR_VERSION == 1 |
1 | 321 textlen = gtk_text_get_length (GTK_TEXT (logwdw)); |
322 txt = gtk_editable_get_chars (GTK_EDITABLE (logwdw), 0, -1); | |
323 #else | |
324 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
325 textlen = gtk_text_buffer_get_char_count (textbuf); | |
326 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
444 | 327 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, textlen); |
1 | 328 txt = gtk_text_buffer_get_text (textbuf, &iter, &iter2, 0); |
329 #endif | |
330 pos = txt; | |
444 | 331 |
332 while (textlen > 0) | |
1 | 333 { |
334 if ((len = write (fd, pos, textlen)) == -1) | |
335 { | |
186 | 336 ftp_log (gftp_logging_misc, NULL, |
337 _("Error: Error writing to %s: %s\n"), | |
338 tempstr, g_strerror (errno)); | |
1 | 339 break; |
340 } | |
341 textlen -= len; | |
342 pos += len; | |
444 | 343 } |
1 | 344 |
444 | 345 fsync (fd); |
1 | 346 lseek (fd, 0, SEEK_SET); |
444 | 347 view_file (tempstr, fd, 1, 1, 0, 1, NULL, NULL); |
1 | 348 close (fd); |
444 | 349 |
1 | 350 g_free (tempstr); |
351 g_free (txt); | |
352 } | |
353 | |
354 | |
355 static void | |
356 dosavelog (GtkWidget * widget, GtkFileSelection * fs) | |
357 { | |
358 const char *filename; | |
359 char *txt, *pos; | |
360 guint textlen; | |
361 ssize_t len; | |
362 FILE *fd; | |
363 int ok; | |
45 | 364 #if GTK_MAJOR_VERSION > 1 |
1 | 365 GtkTextBuffer * textbuf; |
366 GtkTextIter iter, iter2; | |
367 #endif | |
368 | |
369 filename = gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)); | |
370 if ((fd = fopen (filename, "w")) == NULL) | |
371 { | |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
372 ftp_log (gftp_logging_misc, NULL, |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
373 _("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
|
374 g_strerror (errno)); |
1 | 375 return; |
376 } | |
377 | |
45 | 378 #if GTK_MAJOR_VERSION == 1 |
1 | 379 textlen = gtk_text_get_length (GTK_TEXT (logwdw)); |
380 txt = gtk_editable_get_chars (GTK_EDITABLE (logwdw), 0, -1); | |
381 #else | |
382 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
383 textlen = gtk_text_buffer_get_char_count (textbuf); | |
384 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
444 | 385 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, textlen); |
1 | 386 txt = gtk_text_buffer_get_text (textbuf, &iter, &iter2, 0); |
387 #endif | |
388 | |
389 ok = 1; | |
390 pos = txt; | |
391 do | |
392 { | |
393 if ((len = write (fileno (fd), pos, textlen)) == -1) | |
394 { | |
395 ok = 0; | |
186 | 396 ftp_log (gftp_logging_misc, NULL, |
397 _("Error: Error writing to %s: %s\n"), | |
398 filename, g_strerror (errno)); | |
1 | 399 break; |
400 } | |
401 | |
402 textlen -= len; | |
403 pos += len; | |
404 } while (textlen > 0); | |
405 | |
406 if (ok) | |
407 ftp_log (gftp_logging_misc, NULL, | |
408 _("Successfully wrote the log file to %s\n"), filename); | |
409 | |
410 fclose (fd); | |
411 g_free (txt); | |
412 } | |
413 | |
414 | |
415 void | |
19 | 416 savelog (gpointer data) |
417 { | |
418 GtkWidget *filew; | |
419 | |
420 filew = gtk_file_selection_new (_("Save Log")); | |
421 | |
422 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
423 "clicked", GTK_SIGNAL_FUNC (dosavelog), filew); | |
424 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
425 "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
426 GTK_OBJECT (filew)); | |
427 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->cancel_button), "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), GTK_OBJECT (filew)); | |
428 | |
429 gtk_file_selection_set_filename (GTK_FILE_SELECTION (filew), "gftp.log"); | |
430 gtk_window_set_wmclass (GTK_WINDOW(filew), "Save Log", "gFTP"); | |
431 gtk_widget_show (filew); | |
432 } | |
433 | |
434 | |
435 void | |
1 | 436 clear_cache (gpointer data) |
437 { | |
438 gftp_clear_cache_files (); | |
439 } | |
440 | |
441 | |
442 void | |
443 about_dialog (gpointer data) | |
444 { | |
483 | 445 GtkWidget * tempwid, * notebook, * box, * label, * view, * vscroll, * dialog; |
446 char *tempstr, *temp1str, *no_license_agreement, *str, buf[255], *share_dir; | |
1 | 447 size_t len; |
448 FILE * fd; | |
45 | 449 #if GTK_MAJOR_VERSION > 1 |
1 | 450 GtkTextBuffer * textbuf; |
451 GtkTextIter iter; | |
452 guint textlen; | |
453 #endif | |
454 | |
483 | 455 share_dir = gftp_get_share_dir (); |
456 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); | |
1 | 457 |
45 | 458 #if GTK_MAJOR_VERSION == 1 |
1 | 459 dialog = gtk_dialog_new (); |
460 gtk_window_set_title (GTK_WINDOW (dialog), _("About gFTP")); | |
461 gtk_container_border_width (GTK_CONTAINER | |
462 (GTK_DIALOG (dialog)->action_area), 5); | |
463 gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->action_area), TRUE); | |
19 | 464 #else |
465 dialog = gtk_dialog_new_with_buttons (_("About gFTP"), NULL, 0, | |
466 GTK_STOCK_CLOSE, | |
467 GTK_RESPONSE_CLOSE, | |
468 NULL); | |
469 #endif | |
470 gtk_window_set_wmclass (GTK_WINDOW(dialog), "about", "gFTP"); | |
1 | 471 gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); |
19 | 472 gtk_container_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), 10); |
473 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 5); | |
1 | 474 gtk_widget_realize (dialog); |
475 | |
19 | 476 if (gftp_icon != NULL) |
477 { | |
478 gdk_window_set_icon (dialog->window, NULL, gftp_icon->pixmap, | |
479 gftp_icon->bitmap); | |
168 | 480 gdk_window_set_icon_name (dialog->window, gftp_version); |
19 | 481 } |
482 | |
1 | 483 notebook = gtk_notebook_new (); |
484 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), notebook, TRUE, | |
485 TRUE, 0); | |
486 gtk_widget_show (notebook); | |
487 | |
488 box = gtk_vbox_new (TRUE, 5); | |
489 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
490 gtk_widget_show (box); | |
491 | |
492 tempwid = toolbar_pixmap (dialog, "gftp-logo.xpm"); | |
493 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
494 gtk_widget_show (tempwid); | |
495 | |
255 | 496 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 | 497 str = _("Translated by"); |
498 if (strcmp (str, "Translated by") != 0) | |
499 { | |
500 tempstr = g_realloc (tempstr, strlen (tempstr) + strlen (str) + 1); | |
501 strcat (tempstr, str); | |
502 } | |
503 tempwid = gtk_label_new (tempstr); | |
504 g_free (tempstr); | |
505 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
506 gtk_widget_show (tempwid); | |
507 | |
508 label = gtk_label_new (_("About")); | |
509 gtk_widget_show (label); | |
510 | |
511 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
512 | |
513 box = gtk_vbox_new (FALSE, 5); | |
514 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
515 gtk_widget_show (box); | |
516 | |
517 tempwid = gtk_table_new (1, 2, FALSE); | |
518 gtk_box_pack_start (GTK_BOX (box), tempwid, TRUE, TRUE, 0); | |
519 gtk_widget_show (tempwid); | |
520 | |
45 | 521 #if GTK_MAJOR_VERSION == 1 |
1 | 522 view = gtk_text_new (NULL, NULL); |
523 gtk_text_set_editable (GTK_TEXT (view), FALSE); | |
524 gtk_text_set_word_wrap (GTK_TEXT (view), TRUE); | |
525 | |
526 gtk_table_attach (GTK_TABLE (tempwid), view, 0, 1, 0, 1, | |
527 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
528 0, 0); | |
529 gtk_widget_show (view); | |
530 | |
531 vscroll = gtk_vscrollbar_new (GTK_TEXT (view)->vadj); | |
532 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 1, 2, 0, 1, | |
533 GTK_FILL, GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0); | |
534 gtk_widget_show (vscroll); | |
535 #else | |
536 view = gtk_text_view_new (); | |
537 gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE); | |
538 gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (view), FALSE); | |
539 gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD); | |
540 | |
541 vscroll = gtk_scrolled_window_new (NULL, NULL); | |
542 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (vscroll), | |
543 GTK_POLICY_AUTOMATIC, | |
544 GTK_POLICY_AUTOMATIC); | |
545 | |
546 gtk_container_add (GTK_CONTAINER (vscroll), view); | |
547 gtk_widget_show (view); | |
548 | |
549 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 0, 1, 0, 1, | |
550 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
551 0, 0); | |
552 gtk_widget_show (vscroll); | |
553 | |
554 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view)); | |
555 #endif | |
556 | |
557 label = gtk_label_new (_("License Agreement")); | |
558 gtk_widget_show (label); | |
559 | |
560 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
561 | |
45 | 562 #if GTK_MAJOR_VERSION == 1 |
1 | 563 tempwid = gtk_button_new_with_label (_(" Close ")); |
564 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT); | |
565 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid, | |
566 FALSE, FALSE, 0); | |
567 gtk_signal_connect_object (GTK_OBJECT (tempwid), "clicked", | |
568 GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
569 GTK_OBJECT (dialog)); | |
570 gtk_widget_grab_default (tempwid); | |
571 gtk_widget_show (tempwid); | |
19 | 572 #else |
573 g_signal_connect_swapped (GTK_OBJECT (dialog), "response", | |
574 G_CALLBACK (gtk_widget_destroy), | |
575 GTK_OBJECT (dialog)); | |
576 #endif | |
1 | 577 |
578 tempstr = g_strconcat ("/usr/share/common-licenses/GPL", NULL); | |
579 if (access (tempstr, F_OK) != 0) | |
580 { | |
581 g_free (tempstr); | |
483 | 582 temp1str = g_strconcat (share_dir, "/COPYING", NULL); |
555 | 583 tempstr = gftp_expand_path (NULL, temp1str); |
483 | 584 g_free (temp1str); |
1 | 585 if (access (tempstr, F_OK) != 0) |
586 { | |
587 g_free (tempstr); | |
555 | 588 tempstr = gftp_expand_path (NULL, BASE_CONF_DIR "/COPYING"); |
1 | 589 if (access (tempstr, F_OK) != 0) |
590 { | |
45 | 591 #if GTK_MAJOR_VERSION == 1 |
1 | 592 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
593 no_license_agreement, -1); | |
594 #else | |
595 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 596 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 597 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); |
598 #endif | |
599 gtk_widget_show (dialog); | |
600 return; | |
601 } | |
602 } | |
603 } | |
604 | |
605 if ((fd = fopen (tempstr, "r")) == NULL) | |
606 { | |
45 | 607 #if GTK_MAJOR_VERSION == 1 |
1 | 608 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
609 no_license_agreement, -1); | |
610 #else | |
611 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 612 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 613 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); |
614 #endif | |
615 gtk_widget_show (dialog); | |
616 g_free (tempstr); | |
617 return; | |
618 } | |
619 g_free (tempstr); | |
620 | |
621 memset (buf, 0, sizeof (buf)); | |
622 while ((len = fread (buf, 1, sizeof (buf) - 1, fd))) | |
623 { | |
624 buf[len] = '\0'; | |
45 | 625 #if GTK_MAJOR_VERSION == 1 |
1 | 626 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, buf, -1); |
627 #else | |
628 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 629 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 630 gtk_text_buffer_insert (textbuf, &iter, buf, -1); |
631 #endif | |
632 } | |
633 fclose (fd); | |
634 gtk_widget_show (dialog); | |
635 g_free (no_license_agreement); | |
636 gftp_free_pixmap ("gftp-logo.xpm"); | |
637 } | |
638 | |
639 | |
640 void | |
641 compare_windows (gpointer data) | |
642 { | |
643 gftp_file * curfle, * otherfle; | |
644 GList * curlist, * otherlist; | |
499 | 645 int row, curdir, othdir; |
1 | 646 |
647 if (!check_status (_("Compare Windows"), &window2, 1, 0, 0, 1)) | |
648 return; | |
649 | |
650 deselectall (&window1); | |
651 deselectall (&window2); | |
652 | |
653 row = 0; | |
654 curlist = window1.files; | |
655 while (curlist != NULL) | |
656 { | |
657 curfle = curlist->data; | |
658 if (!curfle->shown) | |
659 { | |
660 curlist = curlist->next; | |
661 continue; | |
662 } | |
663 | |
664 otherlist = window2.files; | |
665 while (otherlist != NULL) | |
666 { | |
667 otherfle = otherlist->data; | |
668 if (!otherfle->shown) | |
669 { | |
670 otherlist = otherlist->next; | |
671 continue; | |
672 } | |
673 | |
499 | 674 curdir = S_ISDIR (curfle->st_mode); |
675 othdir = S_ISDIR (otherfle->st_mode); | |
676 | |
1 | 677 if (strcmp (otherfle->file, curfle->file) == 0 && |
499 | 678 curdir == othdir && |
679 (curdir || otherfle->size == curfle->size)) | |
1 | 680 break; |
681 | |
682 otherlist = otherlist->next; | |
683 } | |
684 | |
685 if (otherlist == NULL) | |
686 gtk_clist_select_row (GTK_CLIST (window1.listbox), row, 0); | |
687 row++; | |
688 curlist = curlist->next; | |
689 } | |
690 | |
691 row = 0; | |
692 curlist = window2.files; | |
693 while (curlist != NULL) | |
694 { | |
695 curfle = curlist->data; | |
696 if (!curfle->shown) | |
697 { | |
698 curlist = curlist->next; | |
699 continue; | |
700 } | |
701 | |
702 otherlist = window1.files; | |
703 while (otherlist != NULL) | |
704 { | |
705 otherfle = otherlist->data; | |
706 if (!otherfle->shown) | |
707 { | |
708 otherlist = otherlist->next; | |
709 continue; | |
710 } | |
711 | |
499 | 712 curdir = S_ISDIR (curfle->st_mode); |
713 othdir = S_ISDIR (otherfle->st_mode); | |
714 | |
1 | 715 if (strcmp (otherfle->file, curfle->file) == 0 && |
499 | 716 curdir == othdir && |
717 (curdir || otherfle->size == curfle->size)) | |
1 | 718 break; |
719 | |
720 otherlist = otherlist->next; | |
721 } | |
722 | |
723 if (otherlist == NULL) | |
724 gtk_clist_select_row (GTK_CLIST (window2.listbox), row, 0); | |
725 row++; | |
726 curlist = curlist->next; | |
727 } | |
728 } |