Synchronize the selection of interfaces between the main welcome
[obnox/wireshark/wip.git] / gtk / prefs_taps.c
1 /* prefs_taps.c
2  * Dialog box for tap/statistics preferences
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 #include <stdlib.h>
29
30 #include <gtk/gtk.h>
31
32 #include <epan/prefs.h>
33
34 #include "gtk/prefs_taps.h"
35 #include "gtk/prefs_dlg.h"
36 #include "gtk/main.h"
37
38 #define TAP_UPDATE_INTERVAL_KEY   "update_interval"
39
40 #define RTP_PLAYER_MAX_VISIBLE_KEY   "rtp_player_max_visible"
41 #define RTP_PLAYER_TABLE_ROWS 6
42
43 static char update_interval_str[128] = "";
44 static char max_visible_str[128] = "";
45
46
47 GtkWidget*
48 stats_prefs_show(void)
49 {
50         GtkWidget   *main_tb, *main_vb;
51         GtkWidget   *tap_update_interval_te;
52 #ifdef HAVE_LIBPORTAUDIO
53         GtkWidget   *rtp_player_max_visible_te;
54 #endif
55         int pos = 0;
56
57         /* Main vertical box */
58         main_vb = gtk_vbox_new(FALSE, 7);
59         gtk_container_set_border_width(GTK_CONTAINER(main_vb), 5);
60
61         /* Main table */
62         main_tb = gtk_table_new(RTP_PLAYER_TABLE_ROWS, 2, FALSE);
63         gtk_box_pack_start(GTK_BOX(main_vb), main_tb, FALSE, FALSE, 0);
64         gtk_table_set_row_spacings(GTK_TABLE(main_tb), 10);
65         gtk_table_set_col_spacings(GTK_TABLE(main_tb), 15);
66         gtk_widget_show(main_tb);
67
68         /* Tap update gap in ms */
69         tap_update_interval_te = create_preference_entry(main_tb, pos++,
70             "Tap update interval in ms:", 
71             "Determines time between tap updates.", max_visible_str);
72         g_snprintf(update_interval_str, sizeof(update_interval_str), "%d", prefs.tap_update_interval);
73         gtk_entry_set_text(GTK_ENTRY(tap_update_interval_te), update_interval_str);
74         gtk_widget_set_tooltip_text(tap_update_interval_te, "Gap in milliseconds between updates to taps is defined here");
75         g_object_set_data(G_OBJECT(main_vb), TAP_UPDATE_INTERVAL_KEY, tap_update_interval_te);
76
77 #ifdef HAVE_LIBPORTAUDIO
78         /* Max visible channels in RTP Player */
79         rtp_player_max_visible_te = create_preference_entry(main_tb, pos++,
80             "Max visible channels in RTP Player:", 
81             "Determines maximum height of RTP Player window.", max_visible_str);
82         g_snprintf(max_visible_str, sizeof(max_visible_str), "%d", prefs.rtp_player_max_visible);
83         gtk_entry_set_text(GTK_ENTRY(rtp_player_max_visible_te), max_visible_str);
84         gtk_widget_set_tooltip_text(rtp_player_max_visible_te, "Maximum height of RTP Player window is defined here.");
85         g_object_set_data(G_OBJECT(main_vb), RTP_PLAYER_MAX_VISIBLE_KEY, rtp_player_max_visible_te);
86 #endif
87
88         /* Show 'em what we got */
89         gtk_widget_show_all(main_vb);
90
91         return main_vb;
92 }
93
94 void
95 stats_prefs_fetch(GtkWidget *w _U_)
96 {
97         GtkWidget *tap_update_interval_te;
98 #ifdef HAVE_LIBPORTAUDIO
99         GtkWidget *rtp_player_max_visible_te;
100 #endif
101
102         /* Tap update interval */
103         tap_update_interval_te = (GtkWidget *)g_object_get_data(G_OBJECT(w), TAP_UPDATE_INTERVAL_KEY);
104         prefs.tap_update_interval = strtol(gtk_entry_get_text(
105                 GTK_ENTRY(tap_update_interval_te)), NULL, 10);
106
107         /* Test for a sane tap update interval */
108         if (prefs.tap_update_interval < 100 || prefs.tap_update_interval > 10000) {
109                 prefs.tap_update_interval = 3000;
110         }
111
112 #ifdef HAVE_LIBPORTAUDIO
113         /* Max RTP channels */
114         rtp_player_max_visible_te = (GtkWidget *)g_object_get_data(G_OBJECT(w), RTP_PLAYER_MAX_VISIBLE_KEY);
115         prefs.rtp_player_max_visible = strtol(gtk_entry_get_text(
116                 GTK_ENTRY(rtp_player_max_visible_te)), NULL, 10);
117
118         /* Test for a sane max channels entry */
119         if (prefs.rtp_player_max_visible < 1 || prefs.rtp_player_max_visible > 10)
120                 prefs.rtp_player_max_visible = RTP_PLAYER_DEFAULT_VISIBLE;
121 #endif
122 }
123
124 void
125 stats_prefs_apply(GtkWidget *w _U_)
126 {
127 #if defined(_WIN32) || ! defined USE_THREADS
128         reset_tap_update_timer();
129 #endif
130 }
131
132 void
133 stats_prefs_destroy(GtkWidget *w _U_)
134 {
135 }
136