replace RADIO_BUTTON_NEW_WITH_LABEL with gtk_radio_button_new_with_label_from_widget
[obnox/wireshark/wip.git] / gtk / fileset_dlg.c
1 /* fileset_dlg.c
2  * Routines for the file set dialog
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <string.h>
30
31 #ifdef HAVE_FCNTL_H
32 #include <fcntl.h>
33 #endif
34
35 #include <gtk/gtk.h>
36
37 #include "globals.h"
38
39
40 #include "compat_macros.h"
41 #include "simple_dialog.h"
42
43 #include "gui_utils.h"
44 #include "dlg_utils.h"
45
46 #include "main.h"
47 #include "menu.h"
48 #include "help_dlg.h"
49
50 #include <epan/filesystem.h>
51
52 #include "fileset.h"
53 #include "fileset_dlg.h"
54
55
56
57 /*
58  * Keep a static pointer to the current "File Set" window, if
59  * any, so that if somebody tries to do "File Set" while there's
60  * already a "File Set" window up, we just pop up the existing
61  * one, rather than creating a new one.
62  */
63 static GtkWidget *fs_w;
64
65
66
67 /* various widget related global data */
68 int           row;
69 GtkWidget     *fs_tb;
70 GtkWidget     *fs_sw;
71 GtkTooltips   *tooltips;
72 GtkWidget     *fs_dir_lb;
73 GtkWidget     *fs_first_rb;
74 GtkWidget     *fs_tb_vb;
75
76
77
78 /* open the file corresponding to the given fileset entry */
79 static void
80 fs_open_entry(fileset_entry *entry)
81 {
82     char            *fname;
83     int             err;
84
85
86     /* make a copy of the filename (cf_close will indirectly destroy it right now) */
87     fname = g_strdup(entry->fullname);
88
89     /* close the old and open the new file */
90     cf_close(&cfile);
91     if (cf_open(&cfile, fname, FALSE, &err) == CF_OK) {
92         cf_read(&cfile);
93     }
94
95     g_free(fname);
96 }
97
98
99 /* radio button was pressed/released */
100 static void
101 fs_rb_cb(GtkWidget *open_bt, gpointer fs_data)
102 {
103     fileset_entry   *entry = fs_data;
104
105     /* button release should have no effect */
106     if(!gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(open_bt) )) {
107         return;
108     }
109
110     fs_open_entry(entry);
111 }
112
113
114 /* the window was closed, cleanup things */
115 static void
116 fs_destroy_cb(GtkWidget *win _U_, gpointer user_data _U_)
117 {
118     /* Note that we no longer have a "File Set" dialog box. */
119     fs_w = NULL;
120 }
121
122
123 /* get creation date (converted from filename) */
124 /* */
125 static char *
126 fileset_dlg_name2date_dup(const char * name) {
127     char        *pfx;
128     char        *filename;
129     int         pos;
130
131
132     /* just to be sure ... */
133         if(!fileset_filename_match_pattern(name)) {
134                 return NULL;
135         }
136
137     /* find char position behind the last underscore */
138     pfx = strrchr(name, '_');
139     pfx++;
140     pos = pfx - name;
141
142     /* start conversion behind that underscore */
143     filename = g_strdup_printf("%c%c%c%c.%c%c.%c%c %c%c:%c%c:%c%c",
144         /* year  */  name[pos]  ,  name[pos+1], name[pos+2], name[pos+3],
145         /* month */  name[pos+4],  name[pos+5],
146         /* day   */  name[pos+6],  name[pos+7],
147         /* hour */   name[pos+8],  name[pos+9],
148         /* min */    name[pos+10], name[pos+11],
149         /* second */ name[pos+12], name[pos+13]);
150
151     return filename;
152 }
153
154
155 /* this file is a part of the current file set, add it to the dialog */
156 void
157 fileset_dlg_add_file(fileset_entry *entry) {
158     char *created;
159     char *modified;
160     char *size;
161     struct tm *local;
162     GtkWidget     *fs_lb;
163     GtkWidget     *fs_rb;
164     gchar *title;
165
166
167     if (fs_w == NULL) {
168         return;
169     }
170
171     created = fileset_dlg_name2date_dup(entry->name);
172         if(!created) {
173                 /* if this file doesn't follow the file set pattern, */
174                 /* use the creation time of that file */
175                 local = localtime(&entry->ctime);
176                 created = g_strdup_printf("%04u.%02u.%02u %02u:%02u:%02u", 
177                         local->tm_year+1900, local->tm_mon+1, local->tm_mday,
178                         local->tm_hour, local->tm_min, local->tm_sec);
179         }
180
181     local = localtime(&entry->mtime);
182     modified = g_strdup_printf("%04u.%02u.%02u %02u:%02u:%02u", 
183         local->tm_year+1900, local->tm_mon+1, local->tm_mday,
184         local->tm_hour, local->tm_min, local->tm_sec);
185     size = g_strdup_printf("%ld Bytes", entry->size);
186
187     fs_rb = gtk_radio_button_new_with_label_from_widget(
188         fs_first_rb ? GTK_RADIO_BUTTON(fs_first_rb) : NULL, entry->name);
189     if(row == 1) {
190         fs_first_rb = fs_rb;
191     }
192     if(entry->current) {
193         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON (fs_rb), entry->current);
194     }
195     gtk_tooltips_set_tip(tooltips, fs_rb, "Open this capture file", NULL);
196     gtk_table_attach_defaults(GTK_TABLE(fs_tb), fs_rb, 0, 1, row, row+1);
197     SIGNAL_CONNECT(fs_rb, "toggled", fs_rb_cb, entry);
198     gtk_widget_show(fs_rb);
199
200     fs_lb = gtk_label_new(created);
201     gtk_table_attach_defaults(GTK_TABLE(fs_tb), fs_lb, 1, 2, row, row+1);
202     gtk_widget_set_sensitive(fs_lb, entry->current);
203     gtk_widget_show(fs_lb);
204
205     fs_lb = gtk_label_new(modified);
206     gtk_table_attach_defaults(GTK_TABLE(fs_tb), fs_lb, 2, 3, row, row+1);
207     gtk_widget_set_sensitive(fs_lb, entry->current);
208     gtk_widget_show(fs_lb);
209
210     fs_lb = gtk_label_new(size);
211     gtk_table_attach_defaults(GTK_TABLE(fs_tb), fs_lb, 3, 4, row, row+1);
212     gtk_widget_set_sensitive(fs_lb, entry->current);
213     gtk_widget_show(fs_lb);
214
215     title = g_strdup_printf("Wireshark: %u File%s in Set", row, plurality(row, "", "s"));
216     gtk_window_set_title(GTK_WINDOW(fs_w), title);
217     g_free(title);
218
219     title = g_strdup_printf("... in directory: %s", fileset_get_dirname());
220     gtk_label_set(GTK_LABEL(fs_dir_lb), title);
221     g_free(title);
222
223     gtk_widget_show_all(fs_tb);
224
225     /* resize the table until we use 18 rows (fits well into 800*600), if it's bigger use a scrollbar */
226     /* XXX - I didn't found a way to automatically shrink the table size again */
227     if(row <= 18) {
228       GtkRequisition requisition;
229
230       gtk_widget_size_request(fs_tb, &requisition);
231       WIDGET_SET_SIZE(GTK_WINDOW(fs_sw), -1, requisition.height);
232       gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(fs_sw), GTK_POLICY_NEVER, GTK_POLICY_NEVER);
233     }
234     
235     if(row == 18) {
236       gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(fs_sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
237     }
238     
239     row++;
240
241     g_free(created);
242     g_free(modified);
243     g_free(size);
244 }
245
246
247 /* init the fileset table */
248 static void
249 fileset_init_table(GtkWidget *parent)
250 {
251   GtkWidget     *fs_lb;
252
253   
254   fs_tb = gtk_table_new(6,1, FALSE);
255   gtk_table_set_row_spacings(GTK_TABLE(fs_tb), 1);
256   gtk_table_set_col_spacings(GTK_TABLE(fs_tb), 12);
257   gtk_container_add(GTK_CONTAINER(parent), fs_tb);
258
259   row = 0;
260   fs_first_rb = NULL;
261
262   fs_lb = gtk_label_new("Filename");
263   gtk_table_attach(GTK_TABLE(fs_tb), fs_lb, 0, 1, row, row+1, GTK_EXPAND|GTK_FILL, 0, 0,0);
264
265   fs_lb = gtk_label_new("Created");
266   gtk_table_attach(GTK_TABLE(fs_tb), fs_lb, 1, 2, row, row+1, GTK_EXPAND|GTK_FILL, 0, 0,0);
267
268   fs_lb = gtk_label_new("Last Modified");
269   gtk_table_attach(GTK_TABLE(fs_tb), fs_lb, 2, 3, row, row+1, GTK_EXPAND|GTK_FILL, 0, 0,0);
270
271   fs_lb = gtk_label_new("Size");
272   gtk_table_attach(GTK_TABLE(fs_tb), fs_lb, 3, 4, row, row+1, GTK_EXPAND|GTK_FILL, 0, 0,0);
273
274   gtk_widget_hide(fs_tb);
275
276   gtk_window_set_title(GTK_WINDOW(fs_w), "Wireshark: 0 Files in Set");
277
278   gtk_label_set(GTK_LABEL(fs_dir_lb), "No capture file loaded!");
279
280   row++;
281 }
282
283
284 /* open the fileset dialog */
285 void
286 fileset_cb(GtkWidget *w _U_, gpointer d _U_)
287 {
288   GtkWidget     *main_vb, *bbox, *close_bt, *help_bt;
289
290
291   if (fs_w != NULL) {
292     /* There's already a "File Set" dialog box; reactivate it. */
293     reactivate_window(fs_w);
294     return;
295   }
296
297   fs_w = window_new(GTK_WINDOW_TOPLEVEL, "");
298
299   tooltips = gtk_tooltips_new();
300
301   main_vb = gtk_vbox_new(FALSE, 5);
302   gtk_container_border_width(GTK_CONTAINER(main_vb), 5);
303   gtk_container_add(GTK_CONTAINER(fs_w), main_vb);
304
305   fs_sw = gtk_scrolled_window_new(NULL, NULL);
306   gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(fs_sw), GTK_POLICY_NEVER, GTK_POLICY_NEVER);
307   gtk_box_pack_start(GTK_BOX(main_vb), fs_sw, TRUE, TRUE, 0);
308
309   /* add a dummy container, so we can replace the table later */
310   fs_tb_vb = gtk_vbox_new(FALSE, 0);
311   gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(fs_sw), fs_tb_vb);
312
313   fs_dir_lb = gtk_label_new("");
314   gtk_box_pack_start(GTK_BOX(main_vb), fs_dir_lb, FALSE, FALSE, 0);
315
316   fileset_init_table(fs_tb_vb);
317
318   /* Button row: close button */
319   if(topic_available(HELP_FILESET_DIALOG)) {
320     bbox = dlg_button_row_new(GTK_STOCK_CLOSE, GTK_STOCK_HELP, NULL);
321   } else {
322     bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
323   }
324   gtk_box_pack_start(GTK_BOX(main_vb), bbox, FALSE, FALSE, 5);
325
326   close_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CLOSE);
327   window_set_cancel_button(fs_w, close_bt, window_cancel_button_cb);
328   gtk_tooltips_set_tip(tooltips, close_bt, "Close this window.", NULL);
329
330   if(topic_available(HELP_FILESET_DIALOG)) {
331     help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
332     SIGNAL_CONNECT(help_bt, "clicked", topic_cb, HELP_FILESET_DIALOG);
333   }
334
335   gtk_widget_grab_default(close_bt);
336
337   SIGNAL_CONNECT(fs_w, "delete_event", window_delete_event_cb, NULL);
338   SIGNAL_CONNECT(fs_w, "destroy", fs_destroy_cb, NULL);
339
340   /* init the dialog content */
341   fileset_update_dlg();
342
343   gtk_widget_show_all(fs_w);
344   window_present(fs_w);
345 }
346
347
348 /* open the next file in the file set, or do nothing if already the last file */
349 void
350 fileset_next_cb(GtkWidget *w _U_, gpointer d _U_)
351 {
352     fileset_entry   *entry;
353
354     entry = fileset_get_next();
355
356     if(entry) {
357         fs_open_entry(entry);
358     }
359 }
360
361
362 /* open the previous file in the file set, or do nothing if already the first file */
363 void
364 fileset_previous_cb(GtkWidget *w _U_, gpointer d _U_)
365 {
366     fileset_entry   *entry;
367
368     entry = fileset_get_previous();
369
370     if(entry) {
371         fs_open_entry(entry);
372     }
373 }
374
375
376 /* a new capture file was opened, browse the dir and look for files matching the given file set */
377 void
378 fileset_file_opened(const char *fname) {
379   fileset_add_dir(fname);
380   if(fs_w) {
381     window_present(fs_w);
382   }
383
384   /* update the menu */
385   set_menus_for_file_set(TRUE /* file_set */, 
386       fileset_get_previous() != NULL, fileset_get_next() != NULL );
387 }
388
389
390 /* the capture file was closed */
391 void
392 fileset_file_closed(void)
393 {
394   if(fs_w) {
395     /* reinit the table, title and alike */
396     gtk_widget_ref(fs_tb_vb);
397     gtk_widget_destroy(fs_tb);
398     fileset_delete();
399     fileset_init_table(fs_tb_vb);
400     window_present(fs_w);
401   } else {
402     fileset_delete();
403   }
404
405   /* update the menu */
406   set_menus_for_file_set(FALSE /* file_set */, 
407       fileset_get_previous() != NULL, fileset_get_next() != NULL );
408 }
409