annotate src/gtk/misc-gtk.c @ 209:d79e2782eb1b

2003-7-5 Brian Masney <masneyb@gftp.org> * lib/protocols.c (gftp_get_line) - fixed bug where the read function was being called one extra time after the end of file was reached * lib/rfc2068.c - fixes for chunked file transfers. All known issues with the HTTP protocol should be (hopefully) fixed now * lib/httpcommon.h (struct rfc2068_params_tag) - added eof variable
author masneyb
date Sat, 05 Jul 2003 17:30:14 +0000
parents cf4098008615
children 2ad324cf4930
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 /* misc-gtk.c - misc stuff for the gtk+ 1.2 port of gftp */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
3 /* Copyright (C) 1998-2002 Brian Masney <masneyb@gftp.org> */
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
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
20 #include <gftp-gtk.h>
33
c8ec7877432e 2002-10-06 Brian Masney <masneyb@gftp.org>
masneyb
parents: 31
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 GtkWidget * statuswid;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
24
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
25
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
26 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
27 remove_files_window (gftp_window_data * wdata)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
28 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
29 wdata->show_selected = 0;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
30 gtk_clist_freeze (GTK_CLIST (wdata->listbox));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
31 gtk_clist_clear (GTK_CLIST (wdata->listbox));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
32 free_file_list (wdata->files);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
33 wdata->files = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
34 gtk_clist_thaw (GTK_CLIST (wdata->listbox));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
35 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
36
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
37
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
38 void
186
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
39 ftp_log (gftp_logging_level level, gftp_request * request,
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
40 const char *string, ...)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
42 guint max_log_window_size;
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
43 int upd, free_logstr;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
44 gftp_log * newlog;
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
45 char *logstr;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
46 gint delsize;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
47 va_list argp;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
48 guint len;
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
49 #if GTK_MAJOR_VERSION == 1
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
50 gftp_color * color;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
51 GdkColor fore;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
52 #else
186
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
53 char *utf8_str;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
54 GtkTextBuffer * textbuf;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
55 GtkTextIter iter, iter2;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
56 const char *descr;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
57 #endif
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
58
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
59 va_start (argp, string);
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
60 if (strcmp (string, "%s") == 0)
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
61 {
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
62 logstr = va_arg (argp, char *);
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
63 free_logstr = 0;
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
64 }
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
65 else
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
66 {
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
67 logstr = g_strdup_vprintf (string, argp);
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
68 free_logstr = 1;
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
69 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
70 va_end (argp);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
71
186
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
72 #if GTK_MAJOR_VERSION > 1
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
73 if (!g_utf8_validate (logstr, -1, NULL))
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
74 {
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
75 if ((utf8_str = gftp_string_to_utf8 (request, logstr)) != NULL)
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
76 {
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
77 if (free_logstr)
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
78 g_free (logstr);
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
79 else
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
80 free_logstr = 1;
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
81
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
82 logstr = utf8_str;
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
83 }
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
84 }
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
85 #endif
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
86
190
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
87 if (pthread_self () != main_thread_id)
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
88 {
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
89 newlog = g_malloc0 (sizeof (*newlog));
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
90 newlog->type = level;
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
91 if (free_logstr)
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
92 newlog->msg = logstr;
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
93 else
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
94 newlog->msg = g_strdup (logstr);
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
95
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
96 pthread_mutex_lock (&log_mutex);
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
97 gftp_file_transfer_logs = g_list_append (gftp_file_transfer_logs, newlog);
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
98 pthread_mutex_unlock (&log_mutex);
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
99 return;
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
100 }
876747813a60 2003-6-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 186
diff changeset
101
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
102 if (gftp_logfd != NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
103 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
104 if (fwrite (logstr, strlen (logstr), 1, gftp_logfd) != 1)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
105 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
106 fclose (gftp_logfd);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
107 gftp_logfd = NULL;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
108 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
109 else
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
110 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
111 fflush (gftp_logfd);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
112 if (ferror (gftp_logfd))
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
113 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
114 fclose (gftp_logfd);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
115 gftp_logfd = NULL;
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
116 }
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
117 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
118 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
119
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
120 upd = logwdw_vadj->upper - logwdw_vadj->page_size == logwdw_vadj->value;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
121
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
122 gftp_lookup_global_option ("max_log_window_size", &max_log_window_size);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
123
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
124 #if GTK_MAJOR_VERSION == 1
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
125 switch (level)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
126 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
127 case gftp_logging_send:
151
2f15b3000dbc 2003-4-27 Brian Masney <masneyb@gftp.org>
masneyb
parents: 129
diff changeset
128 gftp_lookup_global_option ("send_color", &color);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
129 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
130 case gftp_logging_recv:
151
2f15b3000dbc 2003-4-27 Brian Masney <masneyb@gftp.org>
masneyb
parents: 129
diff changeset
131 gftp_lookup_global_option ("recv_color", &color);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
132 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
133 case gftp_logging_error:
151
2f15b3000dbc 2003-4-27 Brian Masney <masneyb@gftp.org>
masneyb
parents: 129
diff changeset
134 gftp_lookup_global_option ("error_color", &color);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
135 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
136 default:
151
2f15b3000dbc 2003-4-27 Brian Masney <masneyb@gftp.org>
masneyb
parents: 129
diff changeset
137 gftp_lookup_global_option ("misc_color", &color);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
138 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
139 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
140
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
141 memset (&fore, 0, sizeof (fore));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
142 fore.red = color->red;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
143 fore.green = color->green;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
144 fore.blue = color->blue;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
145
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
146 gtk_text_freeze (GTK_TEXT (logwdw));
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
147 gtk_text_insert (GTK_TEXT (logwdw), NULL, &fore, NULL, logstr, -1);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
148
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
149 len = gtk_text_get_length (GTK_TEXT (logwdw));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
150 if (max_log_window_size > 0 && len > max_log_window_size)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
151 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
152 delsize = len - max_log_window_size;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
153 gtk_text_set_point (GTK_TEXT (logwdw), delsize);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
154 gtk_text_backward_delete (GTK_TEXT (logwdw), delsize);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
155 len = max_log_window_size;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
156 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
157 gtk_text_set_point (GTK_TEXT (logwdw), len);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
158
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
159 gtk_text_thaw (GTK_TEXT (logwdw));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
160
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
161 if (upd)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
162 gtk_adjustment_set_value (logwdw_vadj, logwdw_vadj->upper);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
163 #else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
164 switch (level)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
165 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
166 case gftp_logging_send:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
167 descr = "send";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
168 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
169 case gftp_logging_recv:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
170 descr = "recv";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
171 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
172 case gftp_logging_error:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
173 descr = "error";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
174 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
175 default:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
176 descr = "misc";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
177 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
178 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
179
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
180 textbuf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logwdw));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
181 len = gtk_text_buffer_get_char_count (textbuf);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
182 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, len);
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
183 gtk_text_buffer_insert_with_tags_by_name (textbuf, &iter, logstr, -1,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
184 descr, NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
185
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
186 if (upd)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
187 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
188 gtk_text_buffer_move_mark (textbuf, logwdw_textmark, &iter);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
189 gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (logwdw), logwdw_textmark,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
190 0, 1, 1, 1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
191 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
192
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
193 if (max_log_window_size > 0)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
194 {
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
195 delsize = len + g_utf8_strlen (logstr, -1) - max_log_window_size;
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
196
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
197 if (delsize > 0)
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
198 {
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
199 gtk_text_buffer_get_iter_at_offset (textbuf, &iter, 0);
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
200 gtk_text_buffer_get_iter_at_offset (textbuf, &iter2, delsize);
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
201 gtk_text_buffer_delete (textbuf, &iter, &iter2);
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
202 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
203 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
204 #endif
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
205
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
206 if (free_logstr)
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
207 g_free (logstr);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
208 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
209
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
210
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
211 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
212 refresh (gftp_window_data * wdata)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
213 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
214 if (!check_status (_("Refresh"), wdata, 0, 0, 0, 1))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
215 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
216 gtk_clist_freeze (GTK_CLIST (wdata->listbox));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
217 remove_files_window (wdata);
182
33b394ebba68 2003-6-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 169
diff changeset
218 gftp_delete_cache_entry (wdata->request, NULL, 0);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
219 ftp_list_files (wdata, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
220 gtk_clist_thaw (GTK_CLIST (wdata->listbox));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
221 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
222
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
223
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
224 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
225 update_window_info (void)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
226 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
227 char *tempstr, empty[] = "";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
228 GtkWidget * tempwid;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
229 int i;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
230
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
231 if (current_wdata->request != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
232 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
233 if ((tempstr = current_wdata->request->hostname) == NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
234 tempstr = empty;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
235 gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (hostedit)->entry), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
236
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
237 if ((tempstr = current_wdata->request->username) == NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
238 tempstr = empty;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
239 gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (useredit)->entry), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
240
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
241 if ((tempstr = current_wdata->request->password) == NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
242 tempstr = empty;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
243 gtk_entry_set_text (GTK_ENTRY (passedit), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
244
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
245 if (current_wdata->request->port != 0)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
246 {
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
247 tempstr = g_strdup_printf ("%d", current_wdata->request->port);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
248 gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (portedit)->entry), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
249 g_free (tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
250 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
251
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
252 for (i=0; gftp_protocols[i].init != NULL; i++)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
253 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
254 if (current_wdata->request->init == gftp_protocols[i].init)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
255 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
256 gtk_option_menu_set_history (GTK_OPTION_MENU (optionmenu), i);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
257 break;
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
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
262 update_window (&window1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
263 update_window (&window2);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
264
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
265 tempwid = gtk_item_factory_get_widget (factory, menus[tools_start+2].path);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
266 gtk_widget_set_sensitive (tempwid, GFTP_IS_CONNECTED (window1.request)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
267 && GFTP_IS_CONNECTED (window2.request));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
268 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
269
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
270
48
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
271 static void
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
272 set_menu_sensitive (gftp_window_data * wdata, char *path, int sensitive)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
273 {
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
274 GtkWidget * tempwid;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
275 char * pos;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
276
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
277 tempwid = NULL;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
278
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
279 if (factory != NULL)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
280 tempwid = gtk_item_factory_get_widget (factory, path);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
281 if (tempwid)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
282 gtk_widget_set_sensitive (tempwid, sensitive);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
283
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
284 if ((pos = strchr (path + 1, '/')) == NULL)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
285 pos = path;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
286
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
287 if (wdata->ifactory)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
288 tempwid = gtk_item_factory_get_widget (wdata->ifactory, pos);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
289 if (tempwid)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
290 gtk_widget_set_sensitive (tempwid, sensitive);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
291 }
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
292
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
293
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
294 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
295 update_window (gftp_window_data * wdata)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
296 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
297 char *dir, *tempstr, *temp1str, *fspec;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
298 int connected, start;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
299
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
300 connected = GFTP_IS_CONNECTED (wdata->request);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
301 if (connected)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
302 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
303 fspec = wdata->show_selected ? "Selected" : strcmp (wdata->filespec, "*") == 0 ? _("All Files") : wdata->filespec;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
304
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
305 if ((temp1str = wdata->request->hostname) == NULL ||
66
cd3e457cbc85 2002-11-26 Brian Masney <masneyb@gftp.org>
masneyb
parents: 63
diff changeset
306 wdata->request->protonum == GFTP_LOCAL_NUM)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
307 temp1str = "";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
308 tempstr = g_strconcat (temp1str, *temp1str == '\0' ? "[" : " [",
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
309 gftp_protocols[wdata->request->protonum].name,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
310 wdata->request->cached ? _("] (Cached) [") : "] [",
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
311 fspec, "]", current_wdata == wdata ? "*" : "", NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
312 gtk_label_set (GTK_LABEL (wdata->hoststxt), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
313 g_free (tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
314
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
315 if ((dir = wdata->request->directory) == NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
316 temp1str = "";
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
317 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
318 temp1str = dir;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
319
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
320 gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (wdata->combo)->entry),temp1str);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
321 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
322 else if (wdata->hoststxt != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
323 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
324 tempstr = g_strconcat (_("Not connected"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
325 current_wdata == wdata ? "*" : "", NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
326 gtk_label_set (GTK_LABEL (wdata->hoststxt), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
327 g_free (tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
328 gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (wdata->combo)->entry), "");
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
329 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
330
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
331 if (wdata == &window1)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
332 start = local_start;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
333 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
334 start = remote_start;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
335
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
336 set_menu_sensitive (wdata, menus[start + 3].path, connected &&
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
337 strcmp (wdata->request->url_prefix, "file") != 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
338 set_menu_sensitive (wdata, menus[start + 5].path, connected);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
339 set_menu_sensitive (wdata, menus[start + 6].path, connected);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
340 set_menu_sensitive (wdata, menus[start + 7].path, connected);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
341 set_menu_sensitive (wdata, menus[start + 8].path, connected);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
342 set_menu_sensitive (wdata, menus[start + 9].path, connected);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
343 set_menu_sensitive (wdata, menus[start + 11].path, connected);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
344 set_menu_sensitive (wdata, menus[start + 12].path, connected &&
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
345 wdata->request->site != NULL);
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
346 set_menu_sensitive (wdata, menus[start + 13].path, connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
347 wdata->request->chdir!= NULL);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
348 set_menu_sensitive (wdata, menus[start + 14].path, connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
349 wdata->request->chmod != NULL);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
350 set_menu_sensitive (wdata, menus[start + 15].path, connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
351 wdata->request->mkdir != NULL);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
352 set_menu_sensitive (wdata, menus[start + 16].path, connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
353 wdata->request->rename != NULL);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
354 set_menu_sensitive (wdata, menus[start + 17].path, connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
355 wdata->request->rmdir != NULL &&
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
356 wdata->request->rmfile != NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
357 set_menu_sensitive (wdata, menus[start + 18].path, connected &&
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
358 wdata->request->get_file != NULL);
14
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
359 set_menu_sensitive (wdata, menus[start + 19].path, connected &&
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
360 wdata->request->get_file != NULL);
83090328581e * More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents: 7
diff changeset
361 set_menu_sensitive (wdata, menus[start + 20].path, connected);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
362 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
363
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
364
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
365 GtkWidget *
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
366 toolbar_pixmap (GtkWidget * widget, char *filename)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
367 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
368 gftp_graphic * graphic;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
369 GtkWidget *pix;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
370
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
371 if (filename == NULL || *filename == '\0')
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
372 return (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
373
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
374 graphic = open_xpm (widget, filename);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
375
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
376 if (graphic == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
377 return (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
378
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
379 if ((pix = gtk_pixmap_new (graphic->pixmap, graphic->bitmap)) == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
380 return (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
381
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
382 gtk_widget_show (pix);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
383 return (pix);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
384 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
385
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
386
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
387 gftp_graphic *
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
388 open_xpm (GtkWidget * widget, char *filename)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
389 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
390 gftp_graphic * graphic;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
391 GtkStyle *style;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
392 char *exfile;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
393
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
394 if ((graphic = g_hash_table_lookup (graphic_hash_table, filename)) != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
395 return (graphic);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
396
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
397 style = gtk_widget_get_style (widget);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
398
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
399 if ((exfile = get_xpm_path (filename, 0)) == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
400 return (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
401
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
402 graphic = g_malloc0 (sizeof (*graphic));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
403 graphic->pixmap = gdk_pixmap_create_from_xpm (widget->window,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
404 &graphic->bitmap, &style->bg[GTK_STATE_NORMAL], exfile);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
405 g_free (exfile);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
406
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
407 if (graphic->pixmap == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
408 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
409 g_free (graphic);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
410 ftp_log (gftp_logging_error, NULL, _("Error opening file %s: %s\n"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
411 exfile, g_strerror (errno));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
412 return (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
413 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
414
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
415 graphic->filename = g_strdup (filename);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
416 g_hash_table_insert (graphic_hash_table, graphic->filename, graphic);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
417
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
418 return (graphic);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
419 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
420
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
421
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
422 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
423 gftp_free_pixmap (char *filename)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
424 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
425 gftp_graphic * graphic;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
426
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
427 if ((graphic = g_hash_table_lookup (graphic_hash_table, filename)) == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
428 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
429
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
430 #if GTK_MAJOR_VERSION == 1
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
431 gdk_pixmap_unref (graphic->pixmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
432 gdk_bitmap_unref (graphic->bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
433 #else
41
4bcfaf6307b5 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 33
diff changeset
434 g_object_unref (graphic->pixmap);
4bcfaf6307b5 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 33
diff changeset
435 g_object_unref (graphic->bitmap);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
436 #endif
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
437
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
438 g_hash_table_remove (graphic_hash_table, filename);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
439 g_free (graphic->filename);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
440 g_free (graphic);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
441 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
442
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
443
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
444 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
445 gftp_get_pixmap (GtkWidget * widget, char *filename, GdkPixmap ** pix,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
446 GdkBitmap ** bitmap)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
447 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
448 gftp_graphic * graphic;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
449
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
450 if (filename == NULL || *filename == '\0')
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
451 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
452 *pix = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
453 *bitmap = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
454 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
455 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
456
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
457 if ((graphic = g_hash_table_lookup (graphic_hash_table, filename)) == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
458 graphic = open_xpm (widget, filename);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
459
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
460 if (graphic == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
461 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
462 *pix = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
463 *bitmap = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
464 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
465 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
466
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
467 *pix = graphic->pixmap;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
468 *bitmap = graphic->bitmap;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
469 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
470
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
471
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
472 int
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
473 check_status (char *name, gftp_window_data *wdata, int check_other_stop,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
474 int only_one, int at_least_one, int func)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
475 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
476 gftp_window_data * owdata;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
477
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
478 owdata = wdata == &window1 ? &window2 : &window1;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
479
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
480 if (wdata->request->stopable)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
481 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
482 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
483 _("%s: Please hit the stop button first to do anything else\n"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
484 name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
485 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
486 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
487
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
488 if (check_other_stop && owdata->request->stopable)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
489 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
490 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
491 _("%s: Please hit the stop button first to do anything else\n"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
492 name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
493 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
494 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
495
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
496 if (!GFTP_IS_CONNECTED (wdata->request))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
497 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
498 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
499 _("%s: Not connected to a remote site\n"), name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
500 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
501 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
502
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
503 if (!func)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
504 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
505 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
506 _("%s: This feature is not available using this protocol\n"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
507 name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
508 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
509 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
510
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
511 if (only_one && !IS_ONE_SELECTED (wdata))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
512 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
513 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
514 _("%s: You must only have one item selected\n"), name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
515 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
516 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
517
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
518 if (at_least_one && !only_one && IS_NONE_SELECTED (wdata))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
519 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
520 ftp_log (gftp_logging_misc, NULL,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
521 _("%s: You must have at least one item selected\n"), name);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
522 return (0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
523 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
524 return (1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
525 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
526
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
527
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
528 static gchar *
168
c505d9ba9d53 2003-6-6 Brian Masney <masneyb@gftp.org>
masneyb
parents: 151
diff changeset
529 gftp_item_factory_translate (const char *path, gpointer func_data)
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
530 {
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
531 const gchar *strip_prefix = func_data;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
532 const char *result;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
533
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
534 if (strip_prefix)
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
535 {
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
536 char *tmp_path = g_strconcat (strip_prefix, path, NULL);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
537 result = gettext (tmp_path);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
538 if (result == tmp_path)
168
c505d9ba9d53 2003-6-6 Brian Masney <masneyb@gftp.org>
masneyb
parents: 151
diff changeset
539 result = path;
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
540 g_free (tmp_path);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
541 }
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
542 else
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
543 result = gettext (path);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
544
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
545 return (char *)result;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
546 }
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
547
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
548
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
549 GtkItemFactory *
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
550 item_factory_new (GtkType container_type, const char *path,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
551 GtkAccelGroup *accel_group, const char *strip_prefix)
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
552 {
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
553 GtkItemFactory *result = gtk_item_factory_new (container_type, path, accel_group);
201
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
554 gchar *strip_prefix_dup = g_strdup (strip_prefix);
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
555
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
556 gtk_item_factory_set_translate_func (result, gftp_item_factory_translate,
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
557 strip_prefix_dup, NULL);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
558
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
559 if (strip_prefix_dup)
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
560 gtk_object_set_data_full (GTK_OBJECT (result), "gftp-strip-prefix",
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
561 strip_prefix_dup, (GDestroyNotify)g_free);
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
562
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
563 return result;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
564 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
565
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
566
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
567 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
568 create_item_factory (GtkItemFactory * ifactory, guint n_entries,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
569 GtkItemFactoryEntry * entries, gpointer callback_data)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
570 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
571 int i;
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
572 const char *strip_prefix = gtk_object_get_data (GTK_OBJECT (ifactory), "gftp-strip-prefix");
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
573 int strip_prefix_len = 0;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
574
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
575 if (strip_prefix)
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
576 strip_prefix_len = strlen (strip_prefix);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
577
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
578 for (i = 0; i < n_entries; i++)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
579 {
7
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
580 GtkItemFactoryEntry dummy_item = entries[i];
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
581 if (strip_prefix && strncmp (entries[i].path, strip_prefix, strip_prefix_len) == 0)
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
582 dummy_item.path += strip_prefix_len;
5551ab2301fe * Fixed a DND crash
masneyb
parents: 1
diff changeset
583
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
584 gtk_item_factory_create_item (ifactory, &dummy_item, callback_data, 1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
585 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
586 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
587
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
588 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
589 add_history (GtkWidget * widget, GList ** history, unsigned int *histlen,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
590 const char *str)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
591 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
592 GList *node, *delnode;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
593 char *tempstr;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
594 int i;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
595
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
596 if (str == NULL || *str == '\0')
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
597 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
598
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
599 for (node = *history; node != NULL; node = node->next)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
600 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
601 if (strcmp ((char *) node->data, str) == 0)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
602 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
603 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
604
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
605 if (node == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
606 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
607 if (*histlen >= MAX_HIST_LEN)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
608 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
609 node = *history;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
610 for (i = 1; i < MAX_HIST_LEN; i++)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
611 node = node->next;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
612 node->prev->next = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
613 node->prev = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
614 delnode = node;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
615 while (delnode != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
616 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
617 if (delnode->data)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
618 g_free (delnode->data);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
619 delnode = delnode->next;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
620 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
621 g_list_free (node);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
622 }
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
623 tempstr = g_strdup (str);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
624 *history = g_list_prepend (*history, tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
625 ++*histlen;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
626 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
627 else if (node->prev != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
628 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
629 node->prev->next = node->next;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
630 if (node->next != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
631 node->next->prev = node->prev;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
632 node->prev = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
633 node->next = *history;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
634 if (node->next != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
635 node->next->prev = node;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
636 *history = node;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
637 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
638 gtk_combo_set_popdown_strings (GTK_COMBO (widget), *history);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
639 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
640
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
641
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
642 int
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
643 check_reconnect (gftp_window_data *wdata)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
644 {
169
d40f9db52cdf 2003-6-8 Brian Masney <masneyb@gftp.org>
masneyb
parents: 168
diff changeset
645 return (wdata->request->cached && wdata->request->datafd < 0 &&
66
cd3e457cbc85 2002-11-26 Brian Masney <masneyb@gftp.org>
masneyb
parents: 63
diff changeset
646 !wdata->request->always_connected &&
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
647 !ftp_connect (wdata, wdata->request, 0) ? -1 : 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
648 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
649
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
650
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
651 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
652 add_file_listbox (gftp_window_data * wdata, gftp_file * fle)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
653 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
654 char *add_data[7] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL }, *pos;
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
655 gftp_config_list_vars * tmplistvar;
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
656 int clist_num, show_hidden_files;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
657 gftp_file_extensions * tempext;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
658 char *tempstr, *str;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
659 GdkBitmap * bitmap;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
660 GList * templist;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
661 GdkPixmap * pix;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
662 size_t stlen;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
663
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
664 gftp_lookup_request_option (wdata->request, "show_hidden_files",
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
665 &show_hidden_files);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
666
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
667 if (wdata->show_selected)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
668 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
669 fle->shown = fle->was_sel;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
670 if (!fle->shown)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
671 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
672 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
673 else if ((!show_hidden_files && *fle->file == '.' &&
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
674 strcmp (fle->file, "..") != 0) ||
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
675 !gftp_match_filespec (fle->file, wdata->filespec))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
676 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
677 fle->shown = 0;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
678 fle->was_sel = 0;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
679 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
680 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
681 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
682 fle->shown = 1;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
683
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
684 clist_num = gtk_clist_append (GTK_CLIST (wdata->listbox), add_data);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
685
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
686 if (fle->was_sel)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
687 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
688 fle->was_sel = 0;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
689 gtk_clist_select_row (GTK_CLIST (wdata->listbox), clist_num, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
690 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
691
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
692 pix = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
693 bitmap = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
694 if (strcmp (fle->file, "..") == 0)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
695 gftp_get_pixmap (wdata->listbox, "dotdot.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
696 else if (fle->islink && fle->isdir)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
697 gftp_get_pixmap (wdata->listbox, "linkdir.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
698 else if (fle->islink)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
699 gftp_get_pixmap (wdata->listbox, "linkfile.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
700 else if (fle->isdir)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
701 gftp_get_pixmap (wdata->listbox, "dir.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
702 else if (fle->isexe)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
703 gftp_get_pixmap (wdata->listbox, "exe.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
704 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
705 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
706 stlen = strlen (fle->file);
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
707 gftp_lookup_global_option ("ext", &tmplistvar);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
708 templist = tmplistvar->list;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
709 while (templist != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
710 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
711 tempext = templist->data;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
712 if (stlen >= tempext->stlen &&
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
713 strcmp (&fle->file[stlen - tempext->stlen], tempext->ext) == 0)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
714 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
715 gftp_get_pixmap (wdata->listbox, tempext->filename, &pix,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
716 &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
717 break;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
718 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
719 templist = templist->next;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
720 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
721 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
722
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
723 if (pix == NULL && bitmap == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
724 gftp_get_pixmap (wdata->listbox, "doc.xpm", &pix, &bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
725
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
726 gtk_clist_set_pixmap (GTK_CLIST (wdata->listbox), clist_num, 0, pix, bitmap);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
727
184
65eb40fb4f03 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 182
diff changeset
728 if (fle->utf8_file)
65eb40fb4f03 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 182
diff changeset
729 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 1,
65eb40fb4f03 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 182
diff changeset
730 fle->utf8_file);
65eb40fb4f03 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 182
diff changeset
731 else if (fle->file)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
732 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 1, fle->file);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
733
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
734 if (fle->attribs && (*fle->attribs == 'b' || *fle->attribs == 'c'))
48
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
735 tempstr = g_strdup_printf ("%d, %d", major (fle->size),
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
736 minor (fle->size));
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
737 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
738 tempstr = insert_commas (fle->size, NULL, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
739
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
740 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 2, tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
741 g_free (tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
742
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
743 if (fle->user)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
744 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 3, fle->user);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
745 if (fle->group)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
746 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 4, fle->group);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
747 if ((str = ctime (&fle->datetime)))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
748 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
749 if ((pos = strchr (str, '\n')) != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
750 *pos = '\0';
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
751 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 5, str);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
752 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
753 if (fle->attribs)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
754 gtk_clist_set_text (GTK_CLIST (wdata->listbox), clist_num, 6, fle->attribs);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
755
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
756 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
757
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
758
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
759 #if GTK_MAJOR_VERSION == 1
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
760 static void
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
761 ok_dialog_response (GtkWidget * widget, gftp_dialog_data * ddata)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
762 {
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
763 if (ddata->edit == NULL)
198
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
764 {
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
765 gtk_widget_destroy (ddata->dialog);
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
766 ddata->dialog = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
767 ddata->checkbox = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
768 }
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
769
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
770 if (ddata->yesfunc != NULL)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
771 ddata->yesfunc (ddata->yespointer, ddata);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
772
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
773 if (ddata->edit != NULL)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
774 gtk_widget_destroy (ddata->dialog);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
775
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
776 g_free (ddata);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
777 }
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
778
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
779
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
780 static void
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
781 cancel_dialog_response (GtkWidget * widget, gftp_dialog_data * ddata)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
782 {
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
783 if (ddata->edit == NULL)
198
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
784 {
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
785 gtk_widget_destroy (ddata->dialog);
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
786 ddata->dialog = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
787 ddata->checkbox = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
788 }
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
789
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
790 if (ddata->nofunc != NULL)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
791 ddata->nofunc (ddata->nopointer, ddata);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
792
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
793 if (ddata->edit != NULL)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
794 gtk_widget_destroy (ddata->dialog);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
795
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
796 g_free (ddata);
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
797 }
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
798 #else
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
799 static void
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
800 dialog_response (GtkWidget * widget, gint response, gftp_dialog_data * ddata)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
801 {
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
802 if (ddata->edit == NULL)
198
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
803 {
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
804 gtk_widget_destroy (ddata->dialog);
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
805 ddata->dialog = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
806 ddata->checkbox = NULL;
8fea1b1a2ec6 2003-6-22 Brian Masney <masneyb@gftp.org>
masneyb
parents: 195
diff changeset
807 }
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
808
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
809 switch (response)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
810 {
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
811 case GTK_RESPONSE_YES:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
812 if (ddata->yesfunc != NULL)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
813 ddata->yesfunc (ddata->yespointer, ddata);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
814 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
815 default:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
816 if (ddata->nofunc != NULL)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
817 ddata->nofunc (ddata->nopointer, ddata);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
818 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
819 }
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
820
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
821 if (ddata->edit != NULL)
72
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
822 gtk_widget_destroy (ddata->dialog);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
823
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
824 g_free (ddata);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
825 }
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
826 #endif
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
827
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
828
72
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
829 static gint
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
830 dialog_keypress (GtkWidget * widget, GdkEventKey * event, gpointer data)
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
831 {
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
832 if (event->type != GDK_KEY_PRESS)
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
833 return (FALSE);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
834
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
835 if (event->keyval == GDK_KP_Enter || event->keyval == GDK_Return)
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
836 {
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
837 #if GTK_MAJOR_VERSION == 1
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
838 ok_dialog_response (widget, data);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
839 #else
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
840 dialog_response (widget, GTK_RESPONSE_YES, data);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
841 #endif
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
842 return (TRUE);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
843 }
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
844 else if (event->keyval == GDK_Escape)
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
845 {
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
846 #if GTK_MAJOR_VERSION == 1
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
847 cancel_dialog_response (widget, data);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
848 #else
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
849 dialog_response (widget, GTK_RESPONSE_NO, data);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
850 #endif
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
851 return (TRUE);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
852 }
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
853
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
854 return (FALSE);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
855 }
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
856
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
857
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
858 void
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
859 MakeEditDialog (char *diagtxt, char *infotxt, char *deftext, int passwd_item,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
860 char *checktext,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
861 gftp_dialog_button okbutton, void (*okfunc) (), void *okptr,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
862 void (*cancelfunc) (), void *cancelptr)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
863 {
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
864 GtkWidget * tempwid, * dialog;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
865 gftp_dialog_data * ddata;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
866 const gchar * yes_text;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
867
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
868 ddata = g_malloc (sizeof (*ddata));
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
869 ddata->yesfunc = okfunc;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
870 ddata->yespointer = okptr;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
871 ddata->nofunc = cancelfunc;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
872 ddata->nopointer = cancelptr;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
873
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
874 #if GTK_MAJOR_VERSION == 1
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
875 dialog = gtk_dialog_new ();
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
876 gtk_window_set_title (GTK_WINDOW (dialog), diagtxt);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
877 gtk_grab_add (dialog);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
878 gtk_container_border_width (GTK_CONTAINER
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
879 (GTK_DIALOG (dialog)->action_area), 5);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
880 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->action_area), 15);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
881 gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->action_area), TRUE);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
882 #else
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
883 switch (okbutton)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
884 {
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
885 case gftp_dialog_button_create:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
886 yes_text = GTK_STOCK_ADD;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
887 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
888 case gftp_dialog_button_change:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
889 yes_text = _("Change");
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
890 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
891 case gftp_dialog_button_connect:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
892 yes_text = _("Connect");
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
893 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
894 case gftp_dialog_button_rename:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
895 yes_text = _("Rename");
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
896 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
897 default:
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
898 yes_text = GTK_STOCK_MISSING_IMAGE;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
899 break;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
900 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
901
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
902 dialog = gtk_dialog_new_with_buttons (_(diagtxt), NULL, 0,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
903 yes_text,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
904 GTK_RESPONSE_YES,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
905 GTK_STOCK_CANCEL,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
906 GTK_RESPONSE_NO,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
907 NULL);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
908 #endif
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
909 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
910 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 5);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
911 gtk_window_set_wmclass (GTK_WINDOW(dialog), "edit", "gFTP");
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
912 gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
913 gtk_widget_realize (dialog);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
914
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
915 if (gftp_icon != NULL)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
916 {
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
917 gdk_window_set_icon (dialog->window, NULL, gftp_icon->pixmap,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
918 gftp_icon->bitmap);
168
c505d9ba9d53 2003-6-6 Brian Masney <masneyb@gftp.org>
masneyb
parents: 151
diff changeset
919 gdk_window_set_icon_name (dialog->window, gftp_version);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
920 }
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
921
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
922 ddata->dialog = dialog;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
923
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
924 tempwid = gtk_label_new (infotxt);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
925 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), tempwid, TRUE,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
926 TRUE, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
927 gtk_widget_show (tempwid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
928
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
929 ddata->edit = gtk_entry_new ();
72
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
930 gtk_signal_connect (GTK_OBJECT (ddata->edit), "key_press_event",
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
931 GTK_SIGNAL_FUNC (dialog_keypress), (gpointer) ddata);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
932
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
933 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), ddata->edit, TRUE,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
934 TRUE, 0);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
935 gtk_widget_grab_focus (ddata->edit);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
936 gtk_entry_set_visibility (GTK_ENTRY (ddata->edit), passwd_item);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
937
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
938 if (deftext != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
939 {
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
940 gtk_entry_set_text (GTK_ENTRY (ddata->edit), deftext);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
941 gtk_entry_select_region (GTK_ENTRY (ddata->edit), 0, strlen (deftext));
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
942 }
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
943 gtk_widget_show (ddata->edit);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
944
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
945 if (checktext != NULL)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
946 {
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
947 ddata->checkbox = gtk_check_button_new_with_label (checktext);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
948 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
949 ddata->checkbox, TRUE, TRUE, 0);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
950 gtk_widget_show (ddata->checkbox);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
951 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
952
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
953 #if GTK_MAJOR_VERSION == 1
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
954 switch (okbutton)
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
955 {
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
956 case gftp_dialog_button_create:
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
957 yes_text = _("Add");
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
958 break;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
959 case gftp_dialog_button_change:
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
960 yes_text = _("Change");
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
961 break;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
962 case gftp_dialog_button_connect:
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
963 yes_text = _("Connect");
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
964 break;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
965 case gftp_dialog_button_rename:
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
966 yes_text = _("Rename");
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
967 break;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
968 default:
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
969 yes_text = "";
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
970 break;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
971 }
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
972
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
973 tempwid = gtk_button_new_with_label (yes_text);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
974 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
975 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
976 TRUE, TRUE, 0);
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
977 gtk_signal_connect (GTK_OBJECT (tempwid), "clicked",
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
978 GTK_SIGNAL_FUNC (ok_dialog_response),
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
979 ddata);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
980 gtk_widget_grab_default (tempwid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
981 gtk_widget_show (tempwid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
982
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
983 tempwid = gtk_button_new_with_label (_("Cancel"));
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
984 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
985 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid,
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
986 TRUE, TRUE, 0);
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
987 gtk_signal_connect (GTK_OBJECT (tempwid), "clicked",
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
988 GTK_SIGNAL_FUNC (cancel_dialog_response),
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
989 ddata);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
990 gtk_widget_show (tempwid);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
991 #else
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
992 g_signal_connect (GTK_OBJECT (dialog), "response",
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
993 G_CALLBACK (dialog_response), ddata);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
994 #endif
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
995
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
996 gtk_widget_show (dialog);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
997 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
998
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
999
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1000 void
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1001 MakeYesNoDialog (char *diagtxt, char *infotxt,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1002 void (*yesfunc) (), gpointer yespointer,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1003 void (*nofunc) (), gpointer nopointer)
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1004 {
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1005 GtkWidget * text, * dialog;
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1006 gftp_dialog_data * ddata;
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
1007 #if GTK_MAJOR_VERSION == 1
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1008 GtkWidget * tempwid;
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1009 #endif
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1010
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1011 ddata = g_malloc (sizeof (*ddata));
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1012 ddata->yesfunc = yesfunc;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1013 ddata->yespointer = yespointer;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1014 ddata->nofunc = nofunc;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1015 ddata->nopointer = nopointer;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1016
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
1017 #if GTK_MAJOR_VERSION == 1
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1018 dialog = gtk_dialog_new ();
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1019 gtk_grab_add (dialog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1020 gtk_window_set_title (GTK_WINDOW (dialog), diagtxt);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1021 gtk_container_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->action_area),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1022 5);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1023 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->action_area), 15);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1024 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
1025 #else
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1026 dialog = gtk_dialog_new_with_buttons (_(diagtxt), NULL, 0,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1027 GTK_STOCK_YES,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1028 GTK_RESPONSE_YES,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1029 GTK_STOCK_NO,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1030 GTK_RESPONSE_NO,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1031 NULL);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1032 #endif
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1033 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
1034 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 5);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1035 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
1036 gtk_window_set_wmclass (GTK_WINDOW(dialog), "yndiag", "gFTP");
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1037 gtk_widget_realize (dialog);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1038
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1039 if (gftp_icon != NULL)
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1040 {
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1041 gdk_window_set_icon (dialog->window, NULL, gftp_icon->pixmap,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1042 gftp_icon->bitmap);
168
c505d9ba9d53 2003-6-6 Brian Masney <masneyb@gftp.org>
masneyb
parents: 151
diff changeset
1043 gdk_window_set_icon_name (dialog->window, gftp_version);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1044 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1045
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1046 ddata->dialog = dialog;
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1047
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1048 text = gtk_label_new (infotxt);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1049 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), text, TRUE, TRUE, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1050 gtk_widget_show (text);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1051
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
1052 #if GTK_MAJOR_VERSION == 1
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1053 tempwid = gtk_button_new_with_label (_(" Yes "));
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1054 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1055 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1056 FALSE, FALSE, 0);
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1057 gtk_signal_connect (GTK_OBJECT (tempwid), "clicked",
72
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
1058 GTK_SIGNAL_FUNC (ok_dialog_response), ddata);
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
1059
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1060 gtk_widget_grab_default (tempwid);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1061 gtk_widget_show (tempwid);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1062
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1063 tempwid = gtk_button_new_with_label (_(" No "));
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1064 GTK_WIDGET_SET_FLAGS (tempwid, GTK_CAN_DEFAULT);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1065 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), tempwid,
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1066 FALSE, FALSE, 0);
21
4b244bf9d84d 2002-09-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 19
diff changeset
1067 gtk_signal_connect (GTK_OBJECT (tempwid), "clicked",
72
c48f19f24050 2002-12-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 66
diff changeset
1068 GTK_SIGNAL_FUNC (cancel_dialog_response), ddata);
19
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1069 gtk_widget_show (tempwid);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1070
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1071 #else
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1072 g_signal_connect (GTK_OBJECT (dialog), "response",
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1073 G_CALLBACK (dialog_response), ddata);
3b2dcdefc7e9 2002-09-15 Brian Masney <masneyb@gftp.org>
masneyb
parents: 14
diff changeset
1074 #endif
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1075
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1076 gtk_widget_show (dialog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1077 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1078
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1079
48
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1080 static gint
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1081 delete_event (GtkWidget * widget, GdkEvent * event, gpointer data)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1082 {
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1083 return (TRUE);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1084 }
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1085
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1086
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1087 static void
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1088 trans_stop_button (GtkWidget * widget, gpointer data)
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1089 {
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1090 gftp_transfer * transfer;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1091
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1092 transfer = data;
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1093 pthread_kill (((gftp_window_data *) transfer->fromwdata)->tid, SIGINT);
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1094 }
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1095
e5f6054590b5 2002-11-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 47
diff changeset
1096
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1097 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1098 update_directory_download_progress (gftp_transfer * transfer)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1099 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1100 static GtkWidget * dialog = NULL, * textwid, * stopwid;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1101 char tempstr[255];
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1102 GtkWidget * vbox;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1103
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1104 if (transfer->numfiles < 0 || transfer->numdirs < 0)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1105 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1106 if (dialog != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1107 gtk_widget_destroy (dialog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1108 dialog = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1109 return;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1110 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1111
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1112 if (dialog == NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1113 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1114 dialog = gtk_window_new (GTK_WINDOW_POPUP);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1115 gtk_grab_add (dialog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1116 gtk_signal_connect (GTK_OBJECT (dialog), "delete_event",
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1117 GTK_SIGNAL_FUNC (delete_event), NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1118 gtk_window_set_title (GTK_WINDOW (dialog),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1119 _("Getting directory listings"));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1120 gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1121 gtk_window_set_wmclass (GTK_WINDOW(dialog), "dirlist", "gFTP");
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1122
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1123 vbox = gtk_vbox_new (FALSE, 5);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1124 gtk_container_border_width (GTK_CONTAINER (vbox), 10);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1125 gtk_container_add (GTK_CONTAINER (dialog), vbox);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1126 gtk_widget_show (vbox);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1127
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1128 textwid = gtk_label_new (NULL);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1129 gtk_box_pack_start (GTK_BOX (vbox), textwid, TRUE, TRUE, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1130 gtk_widget_show (textwid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1131
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1132 statuswid = gtk_progress_bar_new ();
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1133 gtk_progress_set_activity_mode (GTK_PROGRESS (statuswid), 1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1134 gtk_progress_bar_set_activity_step (GTK_PROGRESS_BAR (statuswid), 3);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1135 gtk_progress_bar_set_activity_blocks (GTK_PROGRESS_BAR (statuswid), 5);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1136 gtk_box_pack_start (GTK_BOX (vbox), statuswid, TRUE, TRUE, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1137 gtk_widget_show (statuswid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1138
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1139 stopwid = gtk_button_new_with_label (_(" Stop "));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1140 gtk_signal_connect (GTK_OBJECT (stopwid), "clicked",
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1141 GTK_SIGNAL_FUNC (trans_stop_button), transfer);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1142 gtk_box_pack_start (GTK_BOX (vbox), stopwid, TRUE, TRUE, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1143 gtk_widget_show (stopwid);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1144
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1145 gtk_widget_show (dialog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1146 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1147
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1148 g_snprintf (tempstr, sizeof (tempstr),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1149 _("Received %ld directories\nand %ld files"),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1150 transfer->numdirs, transfer->numfiles);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1151 gtk_label_set_text (GTK_LABEL (textwid), tempstr);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1152 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1153
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1154
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1155 void *
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1156 generic_thread (void * (*func) (void *), gftp_window_data * wdata)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1157 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1158 void * ret;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1159
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1160 if (wdata->request->use_threads)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1161 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1162 wdata->request->stopable = 1;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1163 gtk_widget_set_sensitive (stop_btn, 1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1164 pthread_create (&wdata->tid, NULL, func, wdata);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1165
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1166 while (wdata->request->stopable)
31
d930e06af9ae 2002-10-03 Brian Masney <masneyb@gftp.org>
masneyb
parents: 21
diff changeset
1167 {
33
c8ec7877432e 2002-10-06 Brian Masney <masneyb@gftp.org>
masneyb
parents: 31
diff changeset
1168 GDK_THREADS_LEAVE ();
45
311e29c40ed6 2002-10-31 Brian Masney <masneyb@gftp.org>
masneyb
parents: 43
diff changeset
1169 #if GTK_MAJOR_VERSION == 1
31
d930e06af9ae 2002-10-03 Brian Masney <masneyb@gftp.org>
masneyb
parents: 21
diff changeset
1170 g_main_iteration (TRUE);
41
4bcfaf6307b5 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 33
diff changeset
1171 #else
4bcfaf6307b5 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 33
diff changeset
1172 g_main_context_iteration (NULL, TRUE);
4bcfaf6307b5 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 33
diff changeset
1173 #endif
31
d930e06af9ae 2002-10-03 Brian Masney <masneyb@gftp.org>
masneyb
parents: 21
diff changeset
1174 }
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1175
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1176 pthread_join (wdata->tid, &ret);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1177 gtk_widget_set_sensitive (stop_btn, 0);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1178 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1179 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1180 ret = func (wdata);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1181
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1182 if (!GFTP_IS_CONNECTED (wdata->request))
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1183 disconnect (wdata);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1184
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1185 return (ret);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1186 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1187
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1188
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1189 int
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1190 progress_timeout (gpointer data)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1191 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1192 gftp_transfer * tdata;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1193 double val;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1194
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1195 tdata = data;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1196
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1197 update_directory_download_progress (tdata);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1198
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1199 val = gtk_progress_get_value (GTK_PROGRESS (statuswid));
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1200 if (val >= 1.0)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1201 val = 0;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1202 else
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1203 val += 0.10;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1204 gtk_progress_bar_update (GTK_PROGRESS_BAR (statuswid), val);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1205
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1206 return (1);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1207 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1208
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1209
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1210 void
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1211 display_cached_logs (void)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1212 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1213 gftp_log * templog;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1214 GList * templist;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1215
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1216 pthread_mutex_lock (&log_mutex);
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
1217 templist = gftp_file_transfer_logs;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1218 while (templist != NULL)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1219 {
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1220 templog = (gftp_log *) templist->data;
186
13ca1defdc75 2003-6-16 Brian Masney <masneyb@gftp.org>
masneyb
parents: 184
diff changeset
1221 ftp_log (templog->type, NULL, "%s", templog->msg);
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1222 g_free (templog->msg);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1223 g_free (templog);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1224 templist->data = NULL;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1225 templist = templist->next;
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1226 }
129
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
1227 g_list_free (gftp_file_transfer_logs);
fe0b21c006f6 2003-4-13 Brian Masney <masneyb@gftp.org>
masneyb
parents: 72
diff changeset
1228 gftp_file_transfer_logs = NULL;
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1229 pthread_mutex_unlock (&log_mutex);
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1230 }
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1231
42
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1232
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1233 RETSIGTYPE
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1234 signal_handler (int signo)
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1235 {
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1236 signal (signo, signal_handler);
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1237
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1238 if (use_jmp_environment)
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1239 siglongjmp (jmp_environment, signo == SIGINT ? 1 : 2);
43
36e2868ce8b7 2002-10-30 Brian Masney <masneyb@gftp.org>
masneyb
parents: 42
diff changeset
1240 else if (signo == SIGINT)
36e2868ce8b7 2002-10-30 Brian Masney <masneyb@gftp.org>
masneyb
parents: 42
diff changeset
1241 exit (1);
42
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1242 }
cd169e4789df 2002-10-29 Brian Masney <masneyb@gftp.org>
masneyb
parents: 41
diff changeset
1243
201
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1244
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1245 char *
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1246 get_xpm_path (char *filename, int quit_on_err)
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1247 {
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1248 char *tempstr, *exfile;
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1249
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1250 tempstr = g_strconcat (BASE_CONF_DIR, "/", filename, NULL);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1251 exfile = expand_path (tempstr);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1252 g_free (tempstr);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1253 if (access (exfile, F_OK) != 0)
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1254 {
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1255 g_free (exfile);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1256 tempstr = g_strconcat (SHARE_DIR, "/", filename, NULL);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1257 exfile = expand_path (tempstr);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1258 g_free (tempstr);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1259 if (access (exfile, F_OK) != 0)
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1260 {
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1261 g_free (exfile);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1262 exfile = g_strconcat ("/usr/share/icons/", filename, NULL);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1263 if (access (exfile, F_OK) != 0)
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1264 {
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1265 g_free (exfile);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1266 if (!quit_on_err)
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1267 return (NULL);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1268
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1269 printf (_("gFTP Error: Cannot find file %s in %s or %s\n"),
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1270 filename, SHARE_DIR, BASE_CONF_DIR);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1271 exit (1);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1272 }
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1273 }
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1274 }
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1275 return (exfile);
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1276 }
0098dae654a5 2003-6-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 198
diff changeset
1277