aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/stream_prefs.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-02 18:44:10 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-02 18:44:10 +0000
commit611362ce68cf5c7e93358a9724da6326431ee4c5 (patch)
tree9e96e1f2537ef66861517c1b0f723865220d8bfc /gtk/stream_prefs.h
parent63ad3ed9ae4554642e987b6fd1ba09b94c597bb8 (diff)
add details for doxygen
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11074 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/stream_prefs.h')
-rw-r--r--gtk/stream_prefs.h32
1 files changed, 28 insertions, 4 deletions
diff --git a/gtk/stream_prefs.h b/gtk/stream_prefs.h
index 00d87bb8f7..8712ad0a90 100644
--- a/gtk/stream_prefs.h
+++ b/gtk/stream_prefs.h
@@ -1,7 +1,7 @@
/* stream_prefs.h
* Definitions for stream preferences window
*
- * $Id: stream_prefs.h,v 1.4 2002/08/28 21:03:49 jmayer Exp $
+ * $Id: stream_prefs.h,v 1.5 2004/06/02 18:44:10 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -26,9 +26,33 @@
#ifndef __STREAM_PREFS_H__
#define __STREAM_PREFS_H__
+/** @file
+ * "User Interface: Colors" preferences pages.
+ * @todo rename functions and files from stream to colors
+ */
+
+/** Build a Colors preferences page.
+ *
+ * @return the new preferences page
+ */
GtkWidget *stream_prefs_show(void);
-void stream_prefs_fetch(GtkWidget *w);
-void stream_prefs_apply(GtkWidget *w);
-void stream_prefs_destroy(GtkWidget *w);
+
+/** Fetch preference values from page.
+ *
+ * @param widget widget from stream_prefs_show()
+ */
+void stream_prefs_fetch(GtkWidget *widget);
+
+/** Apply preference values from page.
+ *
+ * @param widget widget from stream_prefs_show()
+ */
+void stream_prefs_apply(GtkWidget *widget);
+
+/** Destroy preference values from page.
+ *
+ * @param widget widget from stream_prefs_show()
+ */
+void stream_prefs_destroy(GtkWidget *widget);
#endif