aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-01-20 18:47:25 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-01-20 18:47:25 +0000
commitef57df088f4c62d2b49b7a06ccceb7c0df10dff9 (patch)
tree73d347c23e8b498132f3e90674cd798bb6f4c638 /file.h
parent3172f21ea58c044aeffe90501dbcecf9b9f9fc21 (diff)
a.) saving GTK1 and GTK2 fontnames in different preference setting, to prevent problems when switching between GTK1 and GTK2 ethereal versions
b.) added new feature "Edit->Go To First Packet" "Edit->Go To Last Packet" with corresponding menu and toolbar items c.) added new feature "View->Zoom In" / "View->Zoom Out" / View->Normal Size" with corresponding menu and toolbar items This feature will act as a "size offset" to the current fontsize, so that the packet list/tree view/... will have a larger/smaller font size. The value is stored inside the recent file. d.) Win32 only: Try to get the win32 system font and fontsize at program startup and show the menus/dialogs and such with the same font and fontsize like other win32 windows. This makes the program make a *lot* more feel like a normal win32 program. svn path=/trunk/; revision=9753
Diffstat (limited to 'file.h')
-rw-r--r--file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/file.h b/file.h
index c8b26aba9a..3cd339ad92 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.110 2004/01/13 22:33:26 guy Exp $
+ * $Id: file.h,v 1.111 2004/01/20 18:47:21 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -70,6 +70,9 @@ guint8 get_int_value(char char_val);
gboolean find_ascii(capture_file *cf, char *ascii_text, gboolean ascii_search, char *ftype, gboolean case_type);
gboolean find_in_gtk_data(capture_file *cf, gpointer *data, char *ascii_text, gboolean case_type, gboolean search_type);
gboolean goto_frame(capture_file *cf, guint fnumber);
+gboolean goto_bottom_frame(capture_file *cf);
+gboolean goto_top_frame(capture_file *cf);
+
void select_packet(capture_file *, int);
void unselect_packet(capture_file *);