aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/recent.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-01-19 00:42:12 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-01-19 00:42:12 +0000
commit453309c0c6d3786c013ea553510fa76a53ea84a1 (patch)
tree3f63aa6cff1819846ee3c822114ac0babaad0d04 /gtk/recent.h
parentd2a8b3d2cc60ab91880e794612f580883db2b273 (diff)
added some menuitems "View->Show" including show/hide of all main widgets,
saving the states in the recent file svn path=/trunk/; revision=9726
Diffstat (limited to 'gtk/recent.h')
-rw-r--r--gtk/recent.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/gtk/recent.h b/gtk/recent.h
new file mode 100644
index 0000000000..bf317f935c
--- /dev/null
+++ b/gtk/recent.h
@@ -0,0 +1,61 @@
+/* recent.h
+ * Definitions for recent "preference" handling routines
+ * Copyright 2004, Ulf Lamping <ulf.lamping@web.de>
+ *
+ * $Id: recent.h,v 1.1 2004/01/19 00:42:11 ulfl Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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 __RECENT_H__
+#define __RECENT_H__
+
+#include <glib.h>
+
+
+#define RECENT_KEY_CAPTURE_FILE "recent.capture_file"
+#define RECENT_KEY_DISPLAY_FILTER "recent.display_filter"
+#define RECENT_KEY_MAIN_TOOLBAR_SHOW "gui.toolbar_main_show"
+#define RECENT_KEY_FILTER_TOOLBAR_SHOW "gui.filter_toolbar_show"
+#define RECENT_KEY_PACKET_LIST_SHOW "gui.packet_list_show"
+#define RECENT_KEY_TREE_VIEW_SHOW "gui.tree_view_show"
+#define RECENT_KEY_BYTE_VIEW_SHOW "gui.byte_view_show"
+#define RECENT_KEY_STATUSBAR_SHOW "gui.statusbar_show"
+
+
+typedef struct recent_settings_tag {
+ gboolean main_toolbar_show;
+ gboolean filter_toolbar_show;
+ gboolean packet_list_show;
+ /*gboolean packet_list_height;*/
+ gboolean tree_view_show;
+ /*gboolean tree_view_height;*/
+ gboolean byte_view_show;
+ gboolean statusbar_show;
+} recent_settings_t;
+
+extern recent_settings_t recent;
+
+
+extern int write_recent(char **rf_path_return);
+
+extern void read_recent(char **rf_path_return, int *rf_errno_return);
+
+
+#endif /* recent.h */