annotate src/gtk/menu-items.c @ 941:19b6d55e2646

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