further improve the welcome page, still incomplete so still "commented out"

svn path=/trunk/; revision=25036
This commit is contained in:
Ulf Lamping 2008-04-15 02:14:22 +00:00
parent d064016e66
commit 08db55300c
1 changed files with 401 additions and 171 deletions

View File

@ -22,51 +22,116 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gtk/gtk.h>
#include "gtk/gui_utils.h"
#include "gtk/recent.h"
#include "gtk/main_welcome.h"
#include "../color.h"
#include "gtk/gui_utils.h"
#include "gtk/color_utils.h"
#include "gtk/recent.h"
#include "gtk/gtkglobals.h"
#include "gtk/main_welcome.h"
#include "gtk/capture_dlg.h"
#include "gtk/capture_file_dlg.h"
#include "gtk/help_dlg.h"
#include "gtk/stock_icons.h"
/* XXX - There seems to be some disagreement about if and how this feature should be implemented.
As I currently don't have the time to continue this, it's temporarily disabled. - ULFL */
/*#define SHOW_WELCOME_PAGE*/
#ifdef SHOW_WELCOME_PAGE
#include "../image/wssplash.xpm"
#endif
/*#define SHOW_WELCOME_PAGE*/
#ifdef SHOW_WELCOME_PAGE
/* XXX - There seems to be some disagreement about if and how this feature should be implemented.
As I currently don't have the time to continue this, it's temporarily disabled. - ULFL */
GdkColor topic_item_entered_bg;
GdkColor topic_content_bg;
GdkColor header_bar_bg;
GdkColor topic_header_bg;
static gboolean
welcome_item_enter_cb(GtkWidget *eb, GdkEventCrossing *event _U_, gpointer user_data)
{
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &topic_item_entered_bg);
return FALSE;
}
static gboolean
welcome_item_leave_cb(GtkWidget *eb, GdkEvent *event _U_, gpointer user_data)
{
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &topic_content_bg);
return FALSE;
}
static gboolean
welcome_item_press_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer data _U_) {
g_warning("TBD: item pressed");
return FALSE;
}
GtkWidget *
welcome_item(const gchar *stock_item, const gchar * label, const gchar * message, const gchar * tooltip,
welcome_item(const gchar *stock_item, const gchar * title, const gchar * subtitle,
GtkSignalFunc callback, void *callback_data)
{
GtkWidget *w, *item_hb;
gchar *formatted_message;
GtkTooltips *tooltips;
GtkWidget *eb, *w, *item_hb, *text_vb;
gchar *formatted_text;
tooltips = gtk_tooltips_new();
item_hb = gtk_hbox_new(FALSE, 1);
w = gtk_button_new_from_stock(stock_item);
gtk_widget_set_size_request(w, 80, 40);
gtk_button_set_label(GTK_BUTTON(w), label);
gtk_tooltips_set_tip(tooltips, w, tooltip, NULL);
gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 0);
/* event box */
eb = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(eb), item_hb);
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &topic_content_bg);
g_signal_connect(eb, "enter-notify-event", G_CALLBACK(welcome_item_enter_cb), NULL);
g_signal_connect(eb, "leave-notify-event", G_CALLBACK(welcome_item_leave_cb), NULL);
g_signal_connect(eb, "button-press-event", G_CALLBACK(callback), callback_data);
/* icon */
w = gtk_image_new_from_stock(stock_item, GTK_ICON_SIZE_LARGE_TOOLBAR);
gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 5);
g_signal_connect(w, "clicked", G_CALLBACK(callback), callback_data);
w = gtk_label_new(message);
text_vb = gtk_vbox_new(FALSE, 3);
/* title */
w = gtk_label_new(title);
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
formatted_message = g_strdup_printf("<span weight=\"bold\" size=\"x-large\">%s</span>", message);
gtk_label_set_markup(GTK_LABEL(w), formatted_message);
g_free(formatted_message);
formatted_text = g_strdup_printf("<span weight=\"bold\" size=\"x-large\">%s</span>", title);
gtk_label_set_markup(GTK_LABEL(w), formatted_text);
g_free(formatted_text);
gtk_box_pack_start(GTK_BOX(text_vb), w, FALSE, FALSE, 1);
/* subtitle */
w = gtk_label_new(subtitle);
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
formatted_text = g_strdup_printf("<span size=\"small\">%s</span>", subtitle);
gtk_label_set_markup(GTK_LABEL(w), formatted_text);
g_free(formatted_text);
gtk_box_pack_start(GTK_BOX(text_vb), w, FALSE, FALSE, 1);
gtk_box_pack_start(GTK_BOX(item_hb), text_vb, TRUE, TRUE, 5);
gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 10);
return item_hb;
return eb;
}
@ -76,31 +141,22 @@ welcome_header_new(void)
GtkWidget *item_vb;
GtkWidget *item_hb;
GtkWidget *eb;
GdkColor bg;
GtkWidget *icon;
gchar *message;
GtkWidget *w;
/* background color of the header bar */
bg.pixel = 0;
bg.red = 154 * 255;
bg.green = 210 * 255;
bg.blue = 229 * 255;
item_vb = gtk_vbox_new(FALSE, 0);
/* colorize vbox */
get_color(&bg);
eb = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(eb), item_vb);
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &header_bar_bg);
item_hb = gtk_hbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(item_vb), item_hb, FALSE, FALSE, 10);
icon = xpm_to_widget_from_parent(top_level, wssplash_xpm);
/*icon = xpm_to_widget_from_parent(top_level, wsicon64_xpm);*/
gtk_box_pack_start(GTK_BOX(item_hb), icon, FALSE, FALSE, 10);
message = "<span weight=\"bold\" size=\"x-large\">" "The World's Most Popular Network Protocol Analyzer" "</span>";
@ -114,11 +170,11 @@ welcome_header_new(void)
return eb;
}
GtkWidget *
welcome_topic_header_new(const char *header)
{
GtkWidget *w;
GdkColor bg;
GtkWidget *eb;
gchar *formatted_message;
@ -128,17 +184,10 @@ welcome_topic_header_new(const char *header)
gtk_label_set_markup(GTK_LABEL(w), formatted_message);
g_free(formatted_message);
/* topic header background color */
bg.pixel = 0;
bg.red = 24 * 255;
bg.green = 151 * 255;
bg.blue = 192 * 255;
/* colorize vbox */
get_color(&bg);
eb = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(eb), w);
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &topic_header_bg);
return eb;
}
@ -151,16 +200,10 @@ welcome_topic_new(const char *header, GtkWidget **to_fill)
GtkWidget *layout_vb;
GtkWidget *topic_eb;
GtkWidget *topic_header;
GdkColor bg;
topic_vb = gtk_vbox_new(FALSE, 0);
/* topic content background color */
bg.pixel = 0;
bg.red = 221 * 255;
bg.green = 226 * 255;
bg.blue = 228 * 255;
topic_header = welcome_topic_header_new(header);
gtk_box_pack_start(GTK_BOX(topic_vb), topic_header, FALSE, FALSE, 0);
@ -169,43 +212,15 @@ welcome_topic_new(const char *header, GtkWidget **to_fill)
gtk_box_pack_start(GTK_BOX(topic_vb), layout_vb, FALSE, FALSE, 0);
/* colorize vbox (we need an event box for this!) */
get_color(&bg);
topic_eb = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(topic_eb), topic_vb);
gtk_widget_modify_bg(topic_eb, GTK_STATE_NORMAL, &bg);
gtk_widget_modify_bg(topic_eb, GTK_STATE_NORMAL, &topic_content_bg);
*to_fill = layout_vb;
return topic_eb;
}
static gboolean
welcome_link_enter_cb(GtkWidget *widget _U_, GdkEventCrossing *event _U_, gpointer user_data)
{
gchar *message;
GtkWidget *w = user_data;
message = g_strdup_printf("<span foreground='blue' underline='single'>%s</span>", g_object_get_data(G_OBJECT(w),"TEXT"));
gtk_label_set_markup(GTK_LABEL(w), message);
g_free(message);
return FALSE;
}
static gboolean
welcome_link_leave_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer user_data)
{
gchar *message;
GtkWidget *w = user_data;
message = g_strdup_printf("<span foreground='blue'>%s</span>", g_object_get_data(G_OBJECT(w),"TEXT"));
gtk_label_set_markup(GTK_LABEL(w), message);
g_free(message);
return FALSE;
}
static gboolean
welcome_link_press_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer data _U_) {
@ -230,14 +245,11 @@ welcome_link_new(const gchar *text, GtkWidget **label /*, void *callback, void *
/* event box */
eb = gtk_event_box_new();
gtk_container_add(GTK_CONTAINER(eb), w);
g_signal_connect(eb, "enter-notify-event", G_CALLBACK(welcome_link_enter_cb), w);
g_signal_connect(eb, "leave-notify-event", G_CALLBACK(welcome_link_leave_cb), w);
g_signal_connect(eb, "enter-notify-event", G_CALLBACK(welcome_item_enter_cb), w);
g_signal_connect(eb, "leave-notify-event", G_CALLBACK(welcome_item_leave_cb), w);
g_signal_connect(eb, "button-press-event", G_CALLBACK(welcome_link_press_cb), w);
/* XXX - memleak */
g_object_set_data(G_OBJECT(w), "TEXT", g_strdup(text));
return eb;
}
@ -264,50 +276,77 @@ welcome_filename_link_new(const char *filename, GtkWidget **label)
}
#include <epan/prefs.h>
#include "capture.h"
#include "capture-pcap-util.h"
#include "capture_opts.h"
#include "main.h"
#include "simple_dialog.h"
extern gint if_list_comparator_alph (const void *first_arg, const void *second_arg);
static gboolean
welcome_if_press_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer data) {
//g_warning("TBD: start capture pressed");
if (capture_opts->iface)
g_free(capture_opts->iface);
if (capture_opts->iface_descr)
g_free(capture_opts->iface_descr);
capture_opts->iface = g_strdup(data);
capture_opts->iface_descr = NULL;
//capture_opts->iface_descr = get_interface_descriptive_name(capture_opts->iface);
/* XXX - remove this? */
if (capture_opts->save_file) {
g_free(capture_opts->save_file);
capture_opts->save_file = NULL;
}
capture_start_cb(NULL, NULL);
return FALSE;
}
#ifdef HAVE_LIBPCAP
GtkWidget *
welcome_if_new(const char *if_name, GdkColor *topic_bg, gboolean active)
welcome_if_new(const char *if_name, GdkColor *topic_bg, gpointer interf)
{
GtkWidget *interface_hb;
GtkWidget *w;
GtkWidget *label;
GtkTooltips *tooltips;
GString *message;
GtkWidget *eb;
tooltips = gtk_tooltips_new();
/* event box */
eb = gtk_event_box_new();
gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &topic_content_bg);
g_signal_connect(eb, "enter-notify-event", G_CALLBACK(welcome_item_enter_cb), NULL);
g_signal_connect(eb, "leave-notify-event", G_CALLBACK(welcome_item_leave_cb), NULL);
g_signal_connect(eb, "button-press-event", G_CALLBACK(welcome_if_press_cb), interf);
interface_hb = gtk_hbox_new(FALSE, 5);
gtk_container_add(GTK_CONTAINER(eb), interface_hb);
w = welcome_link_new("START", &label);
gtk_tooltips_set_tip(tooltips, w, "Immediately start a capture on this interface", NULL);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
w = welcome_link_new("OPTIONS", &label);
gtk_tooltips_set_tip(tooltips, w, "Show the capture options of this interface", NULL);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
w = welcome_link_new("DETAILS", &label);
gtk_tooltips_set_tip(tooltips, w, "Show detailed information about this interface", NULL);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
/* icon */
w = gtk_image_new_from_stock(WIRESHARK_STOCK_CAPTURE_START, GTK_ICON_SIZE_SMALL_TOOLBAR);
gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 5);
message = g_string_new(if_name);
/* truncate string if it's too long */
if(message->len > 38) {
g_string_truncate(message, 35);
/* (the number of chars is a bit arbitrary, though) */
if(message->len > 48) {
g_string_truncate(message, 45);
g_string_append (message, " ...");
}
/* if this is the "active" interface, display it bold */
if(active) {
g_string_prepend(message, "<span weight=\"bold\">");
g_string_append (message, "</span>");
}
g_string_prepend(message, "<span foreground='blue'>");
g_string_append (message, "</span>");
w = gtk_label_new(message->str);
gtk_label_set_markup(GTK_LABEL(w), message->str);
g_string_free(message, TRUE);
@ -315,10 +354,154 @@ welcome_if_new(const char *if_name, GdkColor *topic_bg, gboolean active)
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
return interface_hb;
return eb;
}
/* XXX - the layout has to be improved */
/*
* Sorts the Interface List in alphabetical order
*/
/*gint if_list_comparator_alph (const void *first_arg, const void *second_arg){
const if_info_t *first = first_arg, *second = second_arg;
if (first != NULL && first->description != NULL &&
second != NULL && second->description != NULL) {
return g_ascii_strcasecmp(first->description, second->description);
} else {
return 0;
}
}*/
GtkWidget *
welcome_if_panel_new(void)
{
GtkWidget *interface_hb;
GtkWidget *panel_vb;
if_info_t *if_info;
GList *if_list;
int err;
gchar *err_str;
int ifs;
GList *curr;
//if_dlg_data_t *if_dlg_data;
panel_vb = gtk_vbox_new(FALSE, 0);
#if 0
#ifdef _WIN32
/* Is WPcap loaded? */
if (!has_wpcap) {
char *detailed_err;
detailed_err = cant_load_winpcap_err("Wireshark");
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s", detailed_err);
g_free(detailed_err);
return;
}
#endif
#endif
/* LOAD THE INTERFACES */
if_list = capture_interface_list(&err, &err_str);
if_list = g_list_sort (if_list, if_list_comparator_alph);
if (if_list == NULL && err == CANT_GET_INTERFACE_LIST) {
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s", err_str);
g_free(err_str);
return NULL;
}
/* List the interfaces */
for(ifs = 0; (curr = g_list_nth(if_list, ifs)); ifs++) {
//g_string_assign(if_tool_str, "");
if_info = curr->data;
/* Continue if capture device is hidden */
if (prefs_is_capture_device_hidden(if_info->name)) {
continue;
}
//if_dlg_data = g_malloc0(sizeof(if_dlg_data_t));
//if_dlg_data->if_info = *if_info;
/* Kind of adaptor (icon) */
//icon = xpm_to_widget(capture_ethernet_16_xpm);
//gtk_table_attach_defaults(GTK_TABLE(if_tb), icon, 0, 1, row, row+1);
/* description */
//if (if_info->description != NULL)
//if_dlg_data->descr_lb = gtk_label_new(if_info->description);
//else
//if_dlg_data->descr_lb = gtk_label_new("");
//gtk_misc_set_alignment(GTK_MISC(if_dlg_data->descr_lb), 0.0, 0.5);
//gtk_table_attach_defaults(GTK_TABLE(if_tb), if_dlg_data->descr_lb, 2, 3, row, row+1);
#if 0
if (if_info->description) {
g_string_append(if_tool_str, "Description: ");
g_string_append(if_tool_str, if_info->description);
g_string_append(if_tool_str, "\n");
}
#endif
interface_hb = welcome_if_new(if_info->description, &topic_content_bg, g_strdup(if_info->name));
gtk_box_pack_start(GTK_BOX(panel_vb), interface_hb, FALSE, FALSE, 2);
#if 0
/* IP address */
/* only the first IP address will be shown */
g_string_append(if_tool_str, "IP: ");
curr_ip = g_slist_nth(if_info->ip_addr, 0);
if(curr_ip) {
ip_addr = (if_addr_t *)curr_ip->data;
switch (ip_addr->type) {
case AT_IPv4:
tmp_str = ip_to_str((guint8 *)&ip_addr->ip_addr.ip4_addr);
break;
case AT_IPv6:
tmp_str = ip6_to_str((struct e_in6_addr *)&ip_addr->ip_addr.ip6_addr);
break;
default:
g_assert_not_reached();
tmp_str = NULL;
}
if_dlg_data->ip_lb = gtk_label_new(tmp_str);
gtk_widget_set_sensitive(if_dlg_data->ip_lb, TRUE);
g_string_append(if_tool_str, tmp_str);
} else {
if_dlg_data->ip_lb = gtk_label_new("unknown");
gtk_widget_set_sensitive(if_dlg_data->ip_lb, FALSE);
g_string_append(if_tool_str, "unknown");
}
#endif
}
free_interface_list(if_list);
#if 0
/* Generic dialup */
interface_hb = welcome_if_new("Generic dialup adapter", &topic_content_bg, TRUE);
gtk_box_pack_start(GTK_BOX(panel_vb), interface_hb, FALSE, FALSE, 2);
/* Marvell interface */
interface_hb = welcome_if_new("Marvell Gigabit Ethernet Controller", &topic_content_bg, TRUE);
gtk_box_pack_start(GTK_BOX(panel_vb), interface_hb, FALSE, FALSE, 2);
/* Wireless interface */
interface_hb = welcome_if_new("Intel(R) PRO/Wireless 3945ABG Network Connection", &topic_content_bg, TRUE);
gtk_box_pack_start(GTK_BOX(panel_vb), interface_hb, FALSE, FALSE, 2);
#endif
return panel_vb;
}
#endif /* HAVE_LIBPCAP */
GtkWidget *
welcome_new(void)
{
@ -332,15 +515,37 @@ welcome_new(void)
GtkWidget *header;
GtkWidget *topic_vb;
GtkWidget *topic_to_fill;
GtkWidget *interface_hb;
GdkColor topic_bg;
/* topic content background color */
topic_bg.pixel = 0;
topic_bg.red = 221 * 255;
topic_bg.green = 226 * 255;
topic_bg.blue = 228 * 255;
/* prepare colors */
/* header bar background color */
header_bar_bg.pixel = 0;
header_bar_bg.red = 154 * 255;
header_bar_bg.green = 210 * 255;
header_bar_bg.blue = 229 * 255;
get_color(&header_bar_bg);
/* topic header background color */
topic_header_bg.pixel = 0;
topic_header_bg.red = 24 * 255;
topic_header_bg.green = 151 * 255;
topic_header_bg.blue = 192 * 255;
get_color(&topic_header_bg);
/* topic content background color */
topic_content_bg.pixel = 0;
topic_content_bg.red = 221 * 255;
topic_content_bg.green = 226 * 255;
topic_content_bg.blue = 228 * 255;
get_color(&topic_content_bg);
/* topic item entered color */
topic_item_entered_bg.pixel = 0;
topic_item_entered_bg.red = 154 * 255;
topic_item_entered_bg.green = 210 * 255;
topic_item_entered_bg.blue = 229 * 255;
get_color(&topic_item_entered_bg);
welcome_scrollw = scrolled_window_new(NULL, NULL);
@ -365,47 +570,50 @@ welcome_new(void)
#ifdef HAVE_LIBPCAP
item_hb = welcome_item(WIRESHARK_STOCK_CAPTURE_INTERFACES,
"Interfaces...",
"Interface Life List",
"Show a life list of the available capture interfaces",
"Interface List",
"Life list of the capture interfaces (counts incoming packets)",
GTK_SIGNAL_FUNC(capture_if_cb), NULL);
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
#endif
w = gtk_label_new("Available Interfaces:");
w = gtk_label_new("Start capture on interface:");
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 5);
interface_hb = welcome_if_new("Generic dialup adapter", &topic_bg, FALSE);
gtk_box_pack_start(GTK_BOX(topic_to_fill), interface_hb, FALSE, FALSE, 0);
/* Marvell interface (currently "active") */
interface_hb = welcome_if_new("Marvell Gigabit Ethernet Controller", &topic_bg, TRUE);
gtk_box_pack_start(GTK_BOX(topic_to_fill), interface_hb, FALSE, FALSE, 0);
/* Wireless interface */
interface_hb = welcome_if_new("Intel(R) PRO/Wireless 3945ABG Network Connection", &topic_bg, FALSE);
gtk_box_pack_start(GTK_BOX(topic_to_fill), interface_hb, FALSE, FALSE, 0);
w = welcome_if_panel_new();
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
item_hb = welcome_item(WIRESHARK_STOCK_CAPTURE_OPTIONS,
"Capture Options",
"Start a capture with detailed options",
GTK_SIGNAL_FUNC(capture_prep_cb), NULL);
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
/* capture help topic */
topic_vb = welcome_topic_new("Capture Help", &topic_to_fill);
gtk_box_pack_start(GTK_BOX(column_vb), topic_vb, TRUE, TRUE, 0);
#ifdef HAVE_LIBPCAP
item_hb = welcome_item(WIRESHARK_STOCK_CAPTURE_START,
"Setup",
"How To: Setup a Capture",
"How To: Setup a Capture (online from the Wiki)",
GTK_SIGNAL_FUNC(topic_cb), GINT_TO_POINTER(ONLINEPAGE_USERGUIDE));
item_hb = welcome_item(WIRESHARK_STOCK_WIKI,
"How to Capture",
"Step by step to a successful capture setup",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_CAPTURE_SETUP));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
item_hb = welcome_item(WIRESHARK_STOCK_CAPTURE_START,
"Examples",
"Capture Filter Examples",
"Capture Filter Examples (online from the Wiki)",
GTK_SIGNAL_FUNC(topic_cb), GINT_TO_POINTER(ONLINEPAGE_USERGUIDE));
item_hb = welcome_item(WIRESHARK_STOCK_WIKI,
"Network Media",
"Specific infos for capturing on: Ethernet, WLAN, ...",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_NETWORK_MEDIA));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
/*item_hb = welcome_item(WIRESHARK_STOCK_WIKI,
"Capture Filters",
"Capture filter examples on the wiki",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_CAPTURE_FILTERS));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);*/
#else
/* place a note that capturing is not compiled in */
w = gtk_label_new("Capturing is not compiled into this version of Wireshark!");
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 5);
#endif
/* fill bottom space */
@ -418,40 +626,55 @@ welcome_new(void)
gtk_box_pack_start(GTK_BOX(welcome_hb), topic_vb, TRUE, TRUE, 0);
item_hb = welcome_item(GTK_STOCK_OPEN,
"Open...",
"Open a Capture File",
"Open",
"Open a previously captured file",
GTK_SIGNAL_FUNC(file_open_cmd_cb), NULL);
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
item_hb = welcome_item(GTK_STOCK_OPEN,
"Examples",
"Download Examples",
"Download Example Capture Files (from the Wiki)",
GTK_SIGNAL_FUNC(topic_cb), GINT_TO_POINTER(ONLINEPAGE_USERGUIDE));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
w = gtk_label_new("Recent Files:");
/* list of recent files */
w = gtk_label_new("Open Recent:");
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 5);
w = welcome_link_new("C:\\Testfiles\\hello.pcap", &label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
w = welcome_filename_link_new("C:\\Testfiles\\hello2.pcap", &label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
w = welcome_filename_link_new("C:\\Testfiles\\hello3.pcap", &label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
w = welcome_filename_link_new("C:\\Testfiles\\hello4.pcap", &label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
w = welcome_filename_link_new("C:\\Testfiles\\hello5.pcap", &label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
w = welcome_filename_link_new(
"C:\\Testfiles\\to avoid screen garbage\\Unfortunately this is a very long filename which had to be truncated.pcap",
&label);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_content_bg);
gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, FALSE, FALSE, 0);
item_hb = welcome_item(WIRESHARK_STOCK_WIKI,
"Sample Captures",
"A rich assortment of sample capture files on the wiki",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_SAMPLE_CAPTURES));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
/* fill bottom space */
w = gtk_label_new("");
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
@ -464,26 +687,33 @@ welcome_new(void)
topic_vb = welcome_topic_new("Online", &topic_to_fill);
gtk_box_pack_start(GTK_BOX(column_vb), topic_vb, TRUE, TRUE, 0);
item_hb = welcome_item(WIRESHARK_STOCK_WEB_SUPPORT,
"Help",
"Show the User's Guide",
"Show the User's Guide (local version, if available)",
GTK_SIGNAL_FUNC(topic_cb), GINT_TO_POINTER(ONLINEPAGE_USERGUIDE));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
item_hb = welcome_item(GTK_STOCK_HOME,
"Home",
"Projects Home Page",
"Visit www.wireshark.org, the project's home page",
GTK_SIGNAL_FUNC(topic_cb), GINT_TO_POINTER(ONLINEPAGE_HOME));
"Website",
"Visit the project's website",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_HOME));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
item_hb = welcome_item(WIRESHARK_STOCK_WEB_SUPPORT,
"User's Guide",
"The User's Guide (local version, if installed)",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(HELP_CONTENT));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
item_hb = welcome_item(WIRESHARK_STOCK_WIKI,
"Security",
"Work with Wireshark as secure as possible",
GTK_SIGNAL_FUNC(topic_menu_cb), GINT_TO_POINTER(ONLINEPAGE_SECURITY));
gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
#if 0
/* XXX - add this, once the Windows update functionality is implemented */
/* topic updates */
topic_vb = welcome_topic_new("Updates", &topic_to_fill);
gtk_box_pack_start(GTK_BOX(column_vb), topic_vb, TRUE, TRUE, 0);
w = gtk_label_new("No updates available!");
gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
#endif
/* the end */