Mercurial > gftp.yaz
annotate src/gtk/menu-items.c @ 677:8990a8a26ccf
2005-1-24 Brian Masney <masneyb@gftp.org>
* lib/protocols.c lib/rfc959.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/gtk/view-dialog.c src/uicommon/gftpui.c - make
sure the logging level gftp_logging_error is used for all error messages
author | masneyb |
---|---|
date | Tue, 25 Jan 2005 02:34:19 +0000 |
parents | 2366865be140 |
children | 49cfbe02926b |
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 { | |
677 | 36 ftp_log (gftp_logging_error, NULL, |
1 | 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 { |
677 | 104 ftp_log (gftp_logging_error, NULL, |
14
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 { | |
677 | 312 ftp_log (gftp_logging_error, NULL, |
14
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); |
588 | 329 |
330 /* gtk_text_buffer_get_char_count() returns the number of characters, | |
331 not bytes. So get the number of bytes that need to be written out */ | |
332 textlen = strlen (txt); | |
1 | 333 #endif |
334 pos = txt; | |
444 | 335 |
336 while (textlen > 0) | |
1 | 337 { |
338 if ((len = write (fd, pos, textlen)) == -1) | |
339 { | |
677 | 340 ftp_log (gftp_logging_error, NULL, |
186 | 341 _("Error: Error writing to %s: %s\n"), |
342 tempstr, g_strerror (errno)); | |
1 | 343 break; |
344 } | |
345 textlen -= len; | |
346 pos += len; | |
444 | 347 } |
1 | 348 |
444 | 349 fsync (fd); |
1 | 350 lseek (fd, 0, SEEK_SET); |
444 | 351 view_file (tempstr, fd, 1, 1, 0, 1, NULL, NULL); |
1 | 352 close (fd); |
444 | 353 |
1 | 354 g_free (tempstr); |
355 g_free (txt); | |
356 } | |
357 | |
358 | |
359 static void | |
360 dosavelog (GtkWidget * widget, GtkFileSelection * fs) | |
361 { | |
362 const char *filename; | |
363 char *txt, *pos; | |
364 guint textlen; | |
365 ssize_t len; | |
366 FILE *fd; | |
367 int ok; | |
45 | 368 #if GTK_MAJOR_VERSION > 1 |
1 | 369 GtkTextBuffer * textbuf; |
370 GtkTextIter iter, iter2; | |
371 #endif | |
372 | |
373 filename = gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)); | |
374 if ((fd = fopen (filename, "w")) == NULL) | |
375 { | |
677 | 376 ftp_log (gftp_logging_error, NULL, |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
377 _("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
|
378 g_strerror (errno)); |
1 | 379 return; |
380 } | |
381 | |
45 | 382 #if GTK_MAJOR_VERSION == 1 |
1 | 383 textlen = gtk_text_get_length (GTK_TEXT (logwdw)); |
384 txt = gtk_editable_get_chars (GTK_EDITABLE (logwdw), 0, -1); | |
385 #else | |
386 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw)); | |
387 textlen = gtk_text_buffer_get_char_count (textbuf); | |
388 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0); | |
444 | 389 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, textlen); |
1 | 390 txt = gtk_text_buffer_get_text (textbuf, &iter, &iter2, 0); |
588 | 391 |
392 /* gtk_text_buffer_get_char_count() returns the number of characters, | |
393 not bytes. So get the number of bytes that need to be written out */ | |
394 textlen = strlen (txt); | |
1 | 395 #endif |
396 | |
397 ok = 1; | |
398 pos = txt; | |
399 do | |
400 { | |
401 if ((len = write (fileno (fd), pos, textlen)) == -1) | |
402 { | |
403 ok = 0; | |
677 | 404 ftp_log (gftp_logging_error, NULL, |
186 | 405 _("Error: Error writing to %s: %s\n"), |
406 filename, g_strerror (errno)); | |
1 | 407 break; |
408 } | |
409 | |
410 textlen -= len; | |
411 pos += len; | |
412 } while (textlen > 0); | |
413 | |
414 if (ok) | |
415 ftp_log (gftp_logging_misc, NULL, | |
416 _("Successfully wrote the log file to %s\n"), filename); | |
417 | |
418 fclose (fd); | |
419 g_free (txt); | |
420 } | |
421 | |
422 | |
423 void | |
19 | 424 savelog (gpointer data) |
425 { | |
426 GtkWidget *filew; | |
427 | |
428 filew = gtk_file_selection_new (_("Save Log")); | |
429 | |
430 gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
431 "clicked", GTK_SIGNAL_FUNC (dosavelog), filew); | |
432 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->ok_button), | |
433 "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
434 GTK_OBJECT (filew)); | |
435 gtk_signal_connect_object (GTK_OBJECT (GTK_FILE_SELECTION (filew)->cancel_button), "clicked", GTK_SIGNAL_FUNC (gtk_widget_destroy), GTK_OBJECT (filew)); | |
436 | |
437 gtk_file_selection_set_filename (GTK_FILE_SELECTION (filew), "gftp.log"); | |
438 gtk_window_set_wmclass (GTK_WINDOW(filew), "Save Log", "gFTP"); | |
439 gtk_widget_show (filew); | |
440 } | |
441 | |
442 | |
443 void | |
1 | 444 clear_cache (gpointer data) |
445 { | |
446 gftp_clear_cache_files (); | |
447 } | |
448 | |
449 | |
450 void | |
451 about_dialog (gpointer data) | |
452 { | |
483 | 453 GtkWidget * tempwid, * notebook, * box, * label, * view, * vscroll, * dialog; |
454 char *tempstr, *temp1str, *no_license_agreement, *str, buf[255], *share_dir; | |
1 | 455 size_t len; |
456 FILE * fd; | |
45 | 457 #if GTK_MAJOR_VERSION > 1 |
1 | 458 GtkTextBuffer * textbuf; |
459 GtkTextIter iter; | |
460 guint textlen; | |
461 #endif | |
462 | |
483 | 463 share_dir = gftp_get_share_dir (); |
464 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 | 465 |
45 | 466 #if GTK_MAJOR_VERSION == 1 |
1 | 467 dialog = gtk_dialog_new (); |
468 gtk_window_set_title (GTK_WINDOW (dialog), _("About gFTP")); | |
469 gtk_container_border_width (GTK_CONTAINER | |
470 (GTK_DIALOG (dialog)->action_area), 5); | |
471 gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->action_area), TRUE); | |
19 | 472 #else |
473 dialog = gtk_dialog_new_with_buttons (_("About gFTP"), NULL, 0, | |
474 GTK_STOCK_CLOSE, | |
475 GTK_RESPONSE_CLOSE, | |
476 NULL); | |
477 #endif | |
478 gtk_window_set_wmclass (GTK_WINDOW(dialog), "about", "gFTP"); | |
1 | 479 gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); |
19 | 480 gtk_container_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), 10); |
481 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 5); | |
1 | 482 gtk_widget_realize (dialog); |
483 | |
19 | 484 if (gftp_icon != NULL) |
485 { | |
486 gdk_window_set_icon (dialog->window, NULL, gftp_icon->pixmap, | |
487 gftp_icon->bitmap); | |
168 | 488 gdk_window_set_icon_name (dialog->window, gftp_version); |
19 | 489 } |
490 | |
1 | 491 notebook = gtk_notebook_new (); |
492 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), notebook, TRUE, | |
493 TRUE, 0); | |
494 gtk_widget_show (notebook); | |
495 | |
496 box = gtk_vbox_new (TRUE, 5); | |
497 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
498 gtk_widget_show (box); | |
499 | |
500 tempwid = toolbar_pixmap (dialog, "gftp-logo.xpm"); | |
501 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
502 gtk_widget_show (tempwid); | |
503 | |
255 | 504 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 | 505 str = _("Translated by"); |
506 if (strcmp (str, "Translated by") != 0) | |
507 { | |
508 tempstr = g_realloc (tempstr, strlen (tempstr) + strlen (str) + 1); | |
509 strcat (tempstr, str); | |
510 } | |
511 tempwid = gtk_label_new (tempstr); | |
512 g_free (tempstr); | |
513 gtk_box_pack_start (GTK_BOX (box), tempwid, FALSE, FALSE, 0); | |
514 gtk_widget_show (tempwid); | |
515 | |
516 label = gtk_label_new (_("About")); | |
517 gtk_widget_show (label); | |
518 | |
519 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
520 | |
521 box = gtk_vbox_new (FALSE, 5); | |
522 gtk_container_border_width (GTK_CONTAINER (box), 10); | |
523 gtk_widget_show (box); | |
524 | |
525 tempwid = gtk_table_new (1, 2, FALSE); | |
526 gtk_box_pack_start (GTK_BOX (box), tempwid, TRUE, TRUE, 0); | |
527 gtk_widget_show (tempwid); | |
528 | |
45 | 529 #if GTK_MAJOR_VERSION == 1 |
1 | 530 view = gtk_text_new (NULL, NULL); |
531 gtk_text_set_editable (GTK_TEXT (view), FALSE); | |
532 gtk_text_set_word_wrap (GTK_TEXT (view), TRUE); | |
533 | |
534 gtk_table_attach (GTK_TABLE (tempwid), view, 0, 1, 0, 1, | |
535 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
536 0, 0); | |
537 gtk_widget_show (view); | |
538 | |
539 vscroll = gtk_vscrollbar_new (GTK_TEXT (view)->vadj); | |
540 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 1, 2, 0, 1, | |
541 GTK_FILL, GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0); | |
542 gtk_widget_show (vscroll); | |
543 #else | |
544 view = gtk_text_view_new (); | |
545 gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE); | |
546 gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (view), FALSE); | |
547 gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD); | |
548 | |
549 vscroll = gtk_scrolled_window_new (NULL, NULL); | |
550 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (vscroll), | |
551 GTK_POLICY_AUTOMATIC, | |
552 GTK_POLICY_AUTOMATIC); | |
553 | |
554 gtk_container_add (GTK_CONTAINER (vscroll), view); | |
555 gtk_widget_show (view); | |
556 | |
557 gtk_table_attach (GTK_TABLE (tempwid), vscroll, 0, 1, 0, 1, | |
558 GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND | GTK_SHRINK, | |
559 0, 0); | |
560 gtk_widget_show (vscroll); | |
561 | |
562 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view)); | |
563 #endif | |
564 | |
565 label = gtk_label_new (_("License Agreement")); | |
566 gtk_widget_show (label); | |
567 | |
568 gtk_notebook_append_page (GTK_NOTEBOOK (notebook), box, label); | |
569 | |
45 | 570 #if GTK_MAJOR_VERSION == 1 |
1 | 571 tempwid = gtk_button_new_with_label (_(" Close ")); |
572 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT); | |
573 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid, | |
574 FALSE, FALSE, 0); | |
575 gtk_signal_connect_object (GTK_OBJECT (tempwid), "clicked", | |
576 GTK_SIGNAL_FUNC (gtk_widget_destroy), | |
577 GTK_OBJECT (dialog)); | |
578 gtk_widget_grab_default (tempwid); | |
579 gtk_widget_show (tempwid); | |
19 | 580 #else |
581 g_signal_connect_swapped (GTK_OBJECT (dialog), "response", | |
582 G_CALLBACK (gtk_widget_destroy), | |
583 GTK_OBJECT (dialog)); | |
584 #endif | |
1 | 585 |
586 tempstr = g_strconcat ("/usr/share/common-licenses/GPL", NULL); | |
587 if (access (tempstr, F_OK) != 0) | |
588 { | |
589 g_free (tempstr); | |
483 | 590 temp1str = g_strconcat (share_dir, "/COPYING", NULL); |
555 | 591 tempstr = gftp_expand_path (NULL, temp1str); |
483 | 592 g_free (temp1str); |
1 | 593 if (access (tempstr, F_OK) != 0) |
594 { | |
595 g_free (tempstr); | |
555 | 596 tempstr = gftp_expand_path (NULL, BASE_CONF_DIR "/COPYING"); |
1 | 597 if (access (tempstr, F_OK) != 0) |
598 { | |
45 | 599 #if GTK_MAJOR_VERSION == 1 |
1 | 600 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
601 no_license_agreement, -1); | |
602 #else | |
603 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 604 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 605 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); |
606 #endif | |
607 gtk_widget_show (dialog); | |
608 return; | |
609 } | |
610 } | |
611 } | |
612 | |
613 if ((fd = fopen (tempstr, "r")) == NULL) | |
614 { | |
45 | 615 #if GTK_MAJOR_VERSION == 1 |
1 | 616 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, |
617 no_license_agreement, -1); | |
618 #else | |
619 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 620 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 621 gtk_text_buffer_insert (textbuf, &iter, no_license_agreement, -1); |
622 #endif | |
623 gtk_widget_show (dialog); | |
624 g_free (tempstr); | |
625 return; | |
626 } | |
627 g_free (tempstr); | |
628 | |
629 memset (buf, 0, sizeof (buf)); | |
630 while ((len = fread (buf, 1, sizeof (buf) - 1, fd))) | |
631 { | |
632 buf[len] = '\0'; | |
45 | 633 #if GTK_MAJOR_VERSION == 1 |
1 | 634 gtk_text_insert (GTK_TEXT (view), NULL, NULL, NULL, buf, -1); |
635 #else | |
636 textlen = gtk_text_buffer_get_char_count (textbuf); | |
444 | 637 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, textlen); |
1 | 638 gtk_text_buffer_insert (textbuf, &iter, buf, -1); |
639 #endif | |
640 } | |
641 fclose (fd); | |
642 gtk_widget_show (dialog); | |
643 g_free (no_license_agreement); | |
644 gftp_free_pixmap ("gftp-logo.xpm"); | |
645 } | |
646 | |
647 | |
648 void | |
649 compare_windows (gpointer data) | |
650 { | |
651 gftp_file * curfle, * otherfle; | |
652 GList * curlist, * otherlist; | |
499 | 653 int row, curdir, othdir; |
1 | 654 |
655 if (!check_status (_("Compare Windows"), &window2, 1, 0, 0, 1)) | |
656 return; | |
657 | |
658 deselectall (&window1); | |
659 deselectall (&window2); | |
660 | |
661 row = 0; | |
662 curlist = window1.files; | |
663 while (curlist != NULL) | |
664 { | |
665 curfle = curlist->data; | |
666 if (!curfle->shown) | |
667 { | |
668 curlist = curlist->next; | |
669 continue; | |
670 } | |
671 | |
672 otherlist = window2.files; | |
673 while (otherlist != NULL) | |
674 { | |
675 otherfle = otherlist->data; | |
676 if (!otherfle->shown) | |
677 { | |
678 otherlist = otherlist->next; | |
679 continue; | |
680 } | |
681 | |
499 | 682 curdir = S_ISDIR (curfle->st_mode); |
683 othdir = S_ISDIR (otherfle->st_mode); | |
684 | |
1 | 685 if (strcmp (otherfle->file, curfle->file) == 0 && |
499 | 686 curdir == othdir && |
687 (curdir || otherfle->size == curfle->size)) | |
1 | 688 break; |
689 | |
690 otherlist = otherlist->next; | |
691 } | |
692 | |
693 if (otherlist == NULL) | |
694 gtk_clist_select_row (GTK_CLIST (window1.listbox), row, 0); | |
695 row++; | |
696 curlist = curlist->next; | |
697 } | |
698 | |
699 row = 0; | |
700 curlist = window2.files; | |
701 while (curlist != NULL) | |
702 { | |
703 curfle = curlist->data; | |
704 if (!curfle->shown) | |
705 { | |
706 curlist = curlist->next; | |
707 continue; | |
708 } | |
709 | |
710 otherlist = window1.files; | |
711 while (otherlist != NULL) | |
712 { | |
713 otherfle = otherlist->data; | |
714 if (!otherfle->shown) | |
715 { | |
716 otherlist = otherlist->next; | |
717 continue; | |
718 } | |
719 | |
499 | 720 curdir = S_ISDIR (curfle->st_mode); |
721 othdir = S_ISDIR (otherfle->st_mode); | |
722 | |
1 | 723 if (strcmp (otherfle->file, curfle->file) == 0 && |
499 | 724 curdir == othdir && |
725 (curdir || otherfle->size == curfle->size)) | |
1 | 726 break; |
727 | |
728 otherlist = otherlist->next; | |
729 } | |
730 | |
731 if (otherlist == NULL) | |
732 gtk_clist_select_row (GTK_CLIST (window2.listbox), row, 0); | |
733 row++; | |
734 curlist = curlist->next; | |
735 } | |
736 } |