aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_prefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/print_prefs.h')
-rw-r--r--gtk/print_prefs.h31
1 files changed, 27 insertions, 4 deletions
diff --git a/gtk/print_prefs.h b/gtk/print_prefs.h
index 1b9b3b3734..4280afadee 100644
--- a/gtk/print_prefs.h
+++ b/gtk/print_prefs.h
@@ -1,7 +1,7 @@
/* print_prefs.h
* Definitions for print preferences window
*
- * $Id: print_prefs.h,v 1.6 2002/08/28 21:03:49 jmayer Exp $
+ * $Id: print_prefs.h,v 1.7 2004/06/02 18:44:10 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -26,9 +26,32 @@
#ifndef __PRINT_PREFS_H__
#define __PRINT_PREFS_H__
+/** @file
+ * "Print" preferences pages.
+ */
+
+/** Build a Print preferences page.
+ *
+ * @return the new preferences page
+ */
GtkWidget *printer_prefs_show(void);
-void printer_prefs_fetch(GtkWidget *w);
-void printer_prefs_apply(GtkWidget *w);
-void printer_prefs_destroy(GtkWidget *w);
+
+/** Fetch preference values from page.
+ *
+ * @param widget widget from printer_prefs_show()
+ */
+void printer_prefs_fetch(GtkWidget *widget);
+
+/** Apply preference values from page.
+ *
+ * @param widget widget from printer_prefs_show()
+ */
+void printer_prefs_apply(GtkWidget *widget);
+
+/** Destroy preference values from page.
+ *
+ * @param widget widget from printer_prefs_show()
+ */
+void printer_prefs_destroy(GtkWidget *widget);
#endif