aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-04 23:14:27 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-04 23:14:27 +0000
commit792d18eaee6488c6cc668024856a91f2c0d2862d (patch)
treed7e41f8280d811922a7004800eb74695d7fc14f8 /gtk
parentd43be134b994b0ab12f52103a3837b6ff69393d2 (diff)
carve out the (currently disabled) welcome page into it's own file to slightly reduce the huge main.c file size
svn path=/trunk/; revision=24773
Diffstat (limited to 'gtk')
-rw-r--r--gtk/Makefile.am1
-rw-r--r--gtk/Makefile.common1
-rw-r--r--gtk/main.c528
-rw-r--r--gtk/main_welcome.c561
-rw-r--r--gtk/main_welcome.h31
5 files changed, 596 insertions, 526 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index f5aac05e87..530311d8c5 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -88,6 +88,7 @@ noinst_HEADERS = \
layout_prefs.h \
macros_dlg.h \
main.h \
+ main_welcome.h \
menu.h \
mtp3_stat.h \
nameres_prefs.h \
diff --git a/gtk/Makefile.common b/gtk/Makefile.common
index 024aa8f739..5f8b79b375 100644
--- a/gtk/Makefile.common
+++ b/gtk/Makefile.common
@@ -86,6 +86,7 @@ WIRESHARK_GTK_SRC = \
layout_prefs.c \
macros_dlg.c \
main.c \
+ main_welcome.c \
menu.c \
nameres_prefs.c \
packet_history.c \
diff --git a/gtk/main.c b/gtk/main.c
index c0879c8b2f..c0d9acf6d3 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -134,6 +134,7 @@
#include "color_dlg.h"
#include "main.h"
+#include "main_welcome.h"
#include "menu.h"
#include "../main_window.h"
#include "../menu.h"
@@ -168,9 +169,6 @@
#include "../image/wsiconcap48.xpm"
#endif
#endif
-#ifdef SHOW_WELCOME_PAGE
-#include "../image/wssplash.xpm"
-#endif
#ifdef HAVE_AIRPCAP
#include <airpcap.h>
@@ -3622,529 +3620,6 @@ is_widget_visible(GtkWidget *widget, gpointer data)
}
}
-/*#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 */
-GtkWidget *
-welcome_item(const gchar *stock_item, const gchar * label, const gchar * message, const gchar * tooltip,
- GtkSignalFunc callback, void *callback_data)
-{
- GtkWidget *w, *item_hb;
-#if GTK_MAJOR_VERSION >= 2
- gchar *formatted_message;
- GtkTooltips *tooltips;
-
- tooltips = gtk_tooltips_new();
-#endif
-
- item_hb = gtk_hbox_new(FALSE, 1);
-
- w = BUTTON_NEW_FROM_STOCK(stock_item);
- WIDGET_SET_SIZE(w, 80, 40);
-#if GTK_MAJOR_VERSION >= 2
- gtk_button_set_label(GTK_BUTTON(w), label);
- gtk_tooltips_set_tip(tooltips, w, tooltip, NULL);
-#endif
- gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 0);
- SIGNAL_CONNECT(w, "clicked", callback, callback_data);
-
- w = gtk_label_new(message);
- gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
-#if GTK_MAJOR_VERSION >= 2
- 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);
-#endif
-
- gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 10);
-
- return item_hb;
-}
-
-
-GtkWidget *
-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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
-#endif
-
- 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);
-
-#if GTK_MAJOR_VERSION < 2
- message = "The World's Most Popular Network Protocol Analyzer";
-#else
- message = "<span weight=\"bold\" size=\"x-large\">" "The World's Most Popular Network Protocol Analyzer" "</span>";
-#endif
- w = gtk_label_new(message);
-#if GTK_MAJOR_VERSION >= 2
- gtk_label_set_markup(GTK_LABEL(w), message);
-#endif
- gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
- gtk_box_pack_start(GTK_BOX(item_hb), w, TRUE, TRUE, 5);
-
- gtk_widget_show_all(eb);
-
- return eb;
-}
-
-GtkWidget *
-welcome_topic_header_new(const char *header)
-{
- GtkWidget *w;
- GdkColor bg;
- GtkWidget *eb;
-#if GTK_MAJOR_VERSION >= 2
- gchar *formatted_message;
-#endif
-
-
- w = gtk_label_new(header);
-#if GTK_MAJOR_VERSION >= 2
- formatted_message = g_strdup_printf("<span weight=\"bold\" size=\"x-large\">%s</span>", header);
- gtk_label_set_markup(GTK_LABEL(w), formatted_message);
- g_free(formatted_message);
-#endif
-
- /* 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
-#endif
-
- return eb;
-}
-
-
-GtkWidget *
-welcome_topic_new(const char *header, GtkWidget **to_fill)
-{
- GtkWidget *topic_vb;
- 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);
-
- layout_vb = gtk_vbox_new(FALSE, 5);
- gtk_container_border_width(GTK_CONTAINER(layout_vb), 10);
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(topic_eb, GTK_STATE_NORMAL, &bg);
-#endif
- *to_fill = layout_vb;
-
- return topic_eb;
-}
-
-
-#if GTK_MAJOR_VERSION >= 2
-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>", OBJECT_GET_DATA(w,"TEXT"));
-#if GTK_MAJOR_VERSION >= 2
- gtk_label_set_markup(GTK_LABEL(w), message);
-#endif
- 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>", OBJECT_GET_DATA(w,"TEXT"));
-#if GTK_MAJOR_VERSION >= 2
- gtk_label_set_markup(GTK_LABEL(w), message);
-#endif
- g_free(message);
-
- return FALSE;
-}
-#endif
-
-
-static gboolean
-welcome_link_press_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer data _U_) {
-
- g_warning("TBD: link pressed");
-
- return FALSE;
-}
-
-GtkWidget *
-welcome_link_new(const gchar *text, GtkWidget **label /*, void *callback, void *private_data */)
-{
- gchar *message;
- GtkWidget *w;
- GtkWidget *eb;
-
-#if GTK_MAJOR_VERSION < 2
- message = g_strdup(text);
-#else
- message = g_strdup_printf("<span foreground='blue'>%s</span>", text);
-#endif
- w = gtk_label_new(message);
- *label = w;
-#if GTK_MAJOR_VERSION >= 2
- gtk_label_set_markup(GTK_LABEL(w), message);
-#endif
- g_free(message);
-
- /* event box */
- eb = gtk_event_box_new();
- gtk_container_add(GTK_CONTAINER(eb), w);
-
-#if GTK_MAJOR_VERSION >= 2
- SIGNAL_CONNECT(eb, "enter-notify-event", welcome_link_enter_cb, w);
- SIGNAL_CONNECT(eb, "leave-notify-event", welcome_link_leave_cb, w);
-#endif
- SIGNAL_CONNECT(eb, "button-press-event", welcome_link_press_cb, w);
-
- /* XXX - memleak */
- OBJECT_SET_DATA(w, "TEXT", g_strdup(text));
-
- return eb;
-}
-
-GtkWidget *
-welcome_filename_link_new(const char *filename, GtkWidget **label)
-{
- GString *str;
- GtkWidget *w;
- const unsigned int max = 60;
-
-
- str = g_string_new(filename);
-
- if(str->len > max) {
- g_string_erase(str, 0, str->len-max /*cut*/);
- g_string_prepend(str, "... ");
- }
-
- w = welcome_link_new(str->str, label);
-
- g_string_free(str, TRUE);
-
- return w;
-}
-
-
-GtkWidget *
-welcome_if_new(const char *if_name, GdkColor *topic_bg, gboolean active)
-{
- GtkWidget *interface_hb;
- GtkWidget *w;
- GtkWidget *label;
- GtkTooltips *tooltips;
- GString *message;
-
-
- tooltips = gtk_tooltips_new();
-
- interface_hb = gtk_hbox_new(FALSE, 5);
-
- w = welcome_link_new("START", &label);
- gtk_tooltips_set_tip(tooltips, w, "Immediately start a capture on this interface", NULL);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
-#endif
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
-#endif
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
-#endif
- gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
- gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
-
- message = g_string_new(if_name);
-
- /* truncate string if it's too long */
- if(message->len > 38) {
- g_string_truncate(message, 35);
- g_string_append (message, " ...");
- }
-#if GTK_MAJOR_VERSION >= 2
- /* if this is the "active" interface, display it bold */
- if(active) {
- g_string_prepend(message, "<span weight=\"bold\">");
- g_string_append (message, "</span>");
- }
-#endif
- w = gtk_label_new(message->str);
-#if GTK_MAJOR_VERSION >= 2
- gtk_label_set_markup(GTK_LABEL(w), message->str);
-#endif
- g_string_free(message, TRUE);
-
- 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;
-}
-
-/* XXX - the layout has to be improved */
-GtkWidget *
-welcome_new(void)
-{
- GtkWidget *welcome_scrollw;
- GtkWidget *welcome_vb;
- GtkWidget *welcome_hb;
- GtkWidget *column_vb;
- GtkWidget *item_hb;
- GtkWidget *w;
- GtkWidget *label;
- 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;
-
- welcome_scrollw = scrolled_window_new(NULL, NULL);
-
- welcome_vb = gtk_vbox_new(FALSE, 0);
-
- /* header */
- header = welcome_header_new();
- gtk_box_pack_start(GTK_BOX(welcome_vb), header, FALSE, FALSE, 0);
-
- /* content */
- welcome_hb = gtk_hbox_new(FALSE, 10);
- gtk_container_border_width(GTK_CONTAINER(welcome_hb), 10);
- gtk_box_pack_start(GTK_BOX(welcome_vb), welcome_hb, TRUE, TRUE, 0);
-
- /* column capture */
- column_vb = gtk_vbox_new(FALSE, 10);
- gtk_box_pack_start(GTK_BOX(welcome_hb), column_vb, TRUE, TRUE, 0);
-
- /* capture topic */
- topic_vb = welcome_topic_new("Capture", &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_INTERFACES,
- "Interfaces...",
- "Interface Life List",
- "Show a life list of the available capture interfaces",
- 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:");
- 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);
-
-
- /* 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));
- 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));
- gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
-#endif
-
- /* fill bottom space */
- w = gtk_label_new("");
- gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
-
-
- /* column files */
- topic_vb = welcome_topic_new("Files", &topic_to_fill);
- 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 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:");
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
-#endif
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
-#endif
- 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);
-#if GTK_MAJOR_VERSION >= 2
- gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
-#endif
- 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 = gtk_label_new("");
- gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
-
-
- /* column online */
- column_vb = gtk_vbox_new(FALSE, 10);
- gtk_box_pack_start(GTK_BOX(welcome_hb), column_vb, TRUE, TRUE, 0);
-
- /* topic online */
- topic_vb = welcome_topic_new("Online", &topic_to_fill);
- gtk_box_pack_start(GTK_BOX(column_vb), topic_vb, TRUE, TRUE, 0);
-
-#if (GLIB_MAJOR_VERSION >= 2)
- 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));
- gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
-#endif
-
- /* 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);
-
-
- /* the end */
- gtk_widget_show_all(welcome_vb);
-
- gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(welcome_scrollw),
- welcome_vb);
- gtk_widget_show_all(welcome_scrollw);
-
- return welcome_scrollw;
-}
-#else
-static GtkWidget *
-welcome_new(void)
-{
- /* this is just a dummy to fill up window space, simply showing nothing */
- return scrolled_window_new(NULL, NULL);
-}
-#endif
-
/*
@@ -4272,6 +3747,7 @@ window_state_event_cb (GtkWidget *widget _U_,
}
#endif
+
#ifdef HAVE_AIRPCAP
/*
* Changed callback for the channel combobox
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c
new file mode 100644
index 0000000000..7ede153f35
--- /dev/null
+++ b/gtk/main_welcome.c
@@ -0,0 +1,561 @@
+/* main_welcome.c
+ *
+ * $Id: main_welcome.c 24577 2008-03-06 18:26:09Z stig $
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+
+#include <gtk/gtk.h>
+
+#include "gui_utils.h"
+#include "recent.h"
+#include "main_welcome.h"
+
+
+#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 */
+GtkWidget *
+welcome_item(const gchar *stock_item, const gchar * label, const gchar * message, const gchar * tooltip,
+ GtkSignalFunc callback, void *callback_data)
+{
+ GtkWidget *w, *item_hb;
+#if GTK_MAJOR_VERSION >= 2
+ gchar *formatted_message;
+ GtkTooltips *tooltips;
+
+ tooltips = gtk_tooltips_new();
+#endif
+
+ item_hb = gtk_hbox_new(FALSE, 1);
+
+ w = BUTTON_NEW_FROM_STOCK(stock_item);
+ WIDGET_SET_SIZE(w, 80, 40);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_button_set_label(GTK_BUTTON(w), label);
+ gtk_tooltips_set_tip(tooltips, w, tooltip, NULL);
+#endif
+ gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 0);
+ SIGNAL_CONNECT(w, "clicked", callback, callback_data);
+
+ w = gtk_label_new(message);
+ gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
+#if GTK_MAJOR_VERSION >= 2
+ 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);
+#endif
+
+ gtk_box_pack_start(GTK_BOX(item_hb), w, FALSE, FALSE, 10);
+
+ return item_hb;
+}
+
+
+GtkWidget *
+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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
+#endif
+
+ 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);
+
+#if GTK_MAJOR_VERSION < 2
+ message = "The World's Most Popular Network Protocol Analyzer";
+#else
+ message = "<span weight=\"bold\" size=\"x-large\">" "The World's Most Popular Network Protocol Analyzer" "</span>";
+#endif
+ w = gtk_label_new(message);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_label_set_markup(GTK_LABEL(w), message);
+#endif
+ gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
+ gtk_box_pack_start(GTK_BOX(item_hb), w, TRUE, TRUE, 5);
+
+ gtk_widget_show_all(eb);
+
+ return eb;
+}
+
+GtkWidget *
+welcome_topic_header_new(const char *header)
+{
+ GtkWidget *w;
+ GdkColor bg;
+ GtkWidget *eb;
+#if GTK_MAJOR_VERSION >= 2
+ gchar *formatted_message;
+#endif
+
+
+ w = gtk_label_new(header);
+#if GTK_MAJOR_VERSION >= 2
+ formatted_message = g_strdup_printf("<span weight=\"bold\" size=\"x-large\">%s</span>", header);
+ gtk_label_set_markup(GTK_LABEL(w), formatted_message);
+ g_free(formatted_message);
+#endif
+
+ /* 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(eb, GTK_STATE_NORMAL, &bg);
+#endif
+
+ return eb;
+}
+
+
+GtkWidget *
+welcome_topic_new(const char *header, GtkWidget **to_fill)
+{
+ GtkWidget *topic_vb;
+ 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);
+
+ layout_vb = gtk_vbox_new(FALSE, 5);
+ gtk_container_border_width(GTK_CONTAINER(layout_vb), 10);
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(topic_eb, GTK_STATE_NORMAL, &bg);
+#endif
+ *to_fill = layout_vb;
+
+ return topic_eb;
+}
+
+
+#if GTK_MAJOR_VERSION >= 2
+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>", OBJECT_GET_DATA(w,"TEXT"));
+#if GTK_MAJOR_VERSION >= 2
+ gtk_label_set_markup(GTK_LABEL(w), message);
+#endif
+ 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>", OBJECT_GET_DATA(w,"TEXT"));
+#if GTK_MAJOR_VERSION >= 2
+ gtk_label_set_markup(GTK_LABEL(w), message);
+#endif
+ g_free(message);
+
+ return FALSE;
+}
+#endif
+
+
+static gboolean
+welcome_link_press_cb(GtkWidget *widget _U_, GdkEvent *event _U_, gpointer data _U_) {
+
+ g_warning("TBD: link pressed");
+
+ return FALSE;
+}
+
+GtkWidget *
+welcome_link_new(const gchar *text, GtkWidget **label /*, void *callback, void *private_data */)
+{
+ gchar *message;
+ GtkWidget *w;
+ GtkWidget *eb;
+
+#if GTK_MAJOR_VERSION < 2
+ message = g_strdup(text);
+#else
+ message = g_strdup_printf("<span foreground='blue'>%s</span>", text);
+#endif
+ w = gtk_label_new(message);
+ *label = w;
+#if GTK_MAJOR_VERSION >= 2
+ gtk_label_set_markup(GTK_LABEL(w), message);
+#endif
+ g_free(message);
+
+ /* event box */
+ eb = gtk_event_box_new();
+ gtk_container_add(GTK_CONTAINER(eb), w);
+
+#if GTK_MAJOR_VERSION >= 2
+ SIGNAL_CONNECT(eb, "enter-notify-event", welcome_link_enter_cb, w);
+ SIGNAL_CONNECT(eb, "leave-notify-event", welcome_link_leave_cb, w);
+#endif
+ SIGNAL_CONNECT(eb, "button-press-event", welcome_link_press_cb, w);
+
+ /* XXX - memleak */
+ OBJECT_SET_DATA(w, "TEXT", g_strdup(text));
+
+ return eb;
+}
+
+GtkWidget *
+welcome_filename_link_new(const char *filename, GtkWidget **label)
+{
+ GString *str;
+ GtkWidget *w;
+ const unsigned int max = 60;
+
+
+ str = g_string_new(filename);
+
+ if(str->len > max) {
+ g_string_erase(str, 0, str->len-max /*cut*/);
+ g_string_prepend(str, "... ");
+ }
+
+ w = welcome_link_new(str->str, label);
+
+ g_string_free(str, TRUE);
+
+ return w;
+}
+
+
+GtkWidget *
+welcome_if_new(const char *if_name, GdkColor *topic_bg, gboolean active)
+{
+ GtkWidget *interface_hb;
+ GtkWidget *w;
+ GtkWidget *label;
+ GtkTooltips *tooltips;
+ GString *message;
+
+
+ tooltips = gtk_tooltips_new();
+
+ interface_hb = gtk_hbox_new(FALSE, 5);
+
+ w = welcome_link_new("START", &label);
+ gtk_tooltips_set_tip(tooltips, w, "Immediately start a capture on this interface", NULL);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
+#endif
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
+#endif
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, topic_bg);
+#endif
+ gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.0);
+ gtk_box_pack_start(GTK_BOX(interface_hb), w, FALSE, FALSE, 0);
+
+ message = g_string_new(if_name);
+
+ /* truncate string if it's too long */
+ if(message->len > 38) {
+ g_string_truncate(message, 35);
+ g_string_append (message, " ...");
+ }
+#if GTK_MAJOR_VERSION >= 2
+ /* if this is the "active" interface, display it bold */
+ if(active) {
+ g_string_prepend(message, "<span weight=\"bold\">");
+ g_string_append (message, "</span>");
+ }
+#endif
+ w = gtk_label_new(message->str);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_label_set_markup(GTK_LABEL(w), message->str);
+#endif
+ g_string_free(message, TRUE);
+
+ 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;
+}
+
+/* XXX - the layout has to be improved */
+GtkWidget *
+welcome_new(void)
+{
+ GtkWidget *welcome_scrollw;
+ GtkWidget *welcome_vb;
+ GtkWidget *welcome_hb;
+ GtkWidget *column_vb;
+ GtkWidget *item_hb;
+ GtkWidget *w;
+ GtkWidget *label;
+ 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;
+
+ welcome_scrollw = scrolled_window_new(NULL, NULL);
+
+ welcome_vb = gtk_vbox_new(FALSE, 0);
+
+ /* header */
+ header = welcome_header_new();
+ gtk_box_pack_start(GTK_BOX(welcome_vb), header, FALSE, FALSE, 0);
+
+ /* content */
+ welcome_hb = gtk_hbox_new(FALSE, 10);
+ gtk_container_border_width(GTK_CONTAINER(welcome_hb), 10);
+ gtk_box_pack_start(GTK_BOX(welcome_vb), welcome_hb, TRUE, TRUE, 0);
+
+ /* column capture */
+ column_vb = gtk_vbox_new(FALSE, 10);
+ gtk_box_pack_start(GTK_BOX(welcome_hb), column_vb, TRUE, TRUE, 0);
+
+ /* capture topic */
+ topic_vb = welcome_topic_new("Capture", &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_INTERFACES,
+ "Interfaces...",
+ "Interface Life List",
+ "Show a life list of the available capture interfaces",
+ 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:");
+ 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);
+
+
+ /* 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));
+ 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));
+ gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
+#endif
+
+ /* fill bottom space */
+ w = gtk_label_new("");
+ gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
+
+
+ /* column files */
+ topic_vb = welcome_topic_new("Files", &topic_to_fill);
+ 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 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:");
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
+#endif
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
+#endif
+ 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);
+#if GTK_MAJOR_VERSION >= 2
+ gtk_widget_modify_bg(w, GTK_STATE_NORMAL, &topic_bg);
+#endif
+ 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 = gtk_label_new("");
+ gtk_box_pack_start(GTK_BOX(topic_to_fill), w, TRUE, TRUE, 0);
+
+
+ /* column online */
+ column_vb = gtk_vbox_new(FALSE, 10);
+ gtk_box_pack_start(GTK_BOX(welcome_hb), column_vb, TRUE, TRUE, 0);
+
+ /* topic online */
+ topic_vb = welcome_topic_new("Online", &topic_to_fill);
+ gtk_box_pack_start(GTK_BOX(column_vb), topic_vb, TRUE, TRUE, 0);
+
+#if (GLIB_MAJOR_VERSION >= 2)
+ 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));
+ gtk_box_pack_start(GTK_BOX(topic_to_fill), item_hb, FALSE, FALSE, 5);
+#endif
+
+ /* 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);
+
+
+ /* the end */
+ gtk_widget_show_all(welcome_vb);
+
+ gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(welcome_scrollw),
+ welcome_vb);
+ gtk_widget_show_all(welcome_scrollw);
+
+ return welcome_scrollw;
+}
+#else
+GtkWidget *
+welcome_new(void)
+{
+ /* this is just a dummy to fill up window space, simply showing nothing */
+ return scrolled_window_new(NULL, NULL);
+}
+#endif
+
+
diff --git a/gtk/main_welcome.h b/gtk/main_welcome.h
new file mode 100644
index 0000000000..20f0376310
--- /dev/null
+++ b/gtk/main_welcome.h
@@ -0,0 +1,31 @@
+/* main_welcome.h
+ * Welcome "page"
+ *
+ * $Id: main_welcome.h 24604 2008-03-11 18:23:16Z stig $
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __MAIN_WELCOME_H__
+#define __MAIN_WELCOME_H__
+
+
+GtkWidget *welcome_new(void);
+
+#endif /* __MAIN_WELCOME_H__ */