aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/gtkglobals.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-05 12:12:13 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-05 12:12:13 +0000
commitdd5bc1c8891780de6c93b924e6109670f213c2ef (patch)
treec91a767c30afbb51dee89b803624e2393426fee1 /gtk/gtkglobals.h
parent40879662bf27df67f4825e0a560eb0a426fa88e3 (diff)
add more details for doxygen
svn path=/trunk/; revision=11121
Diffstat (limited to 'gtk/gtkglobals.h')
-rw-r--r--gtk/gtkglobals.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/gtk/gtkglobals.h b/gtk/gtkglobals.h
index afa914f93c..d2e428afe0 100644
--- a/gtk/gtkglobals.h
+++ b/gtk/gtkglobals.h
@@ -1,7 +1,7 @@
/* gtkglobals.h
* GTK-related Global defines, etc.
*
- * $Id: gtkglobals.h,v 1.28 2004/06/04 20:05:31 ulfl Exp $
+ * $Id: gtkglobals.h,v 1.29 2004/06/05 12:12:13 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -39,38 +39,36 @@
* GTK global definitions. For example a pointer to the main application window.
*/
-/** application window */
+/** Application window. */
extern GtkWidget *top_level;
-/** packet list pane */
+/** Packet list pane. */
extern GtkWidget *packet_list;
-/** tree view (packet details) pane */
+/** Tree view (packet details) pane. */
extern GtkWidget *tree_view;
-/** byte notebook (packet bytes) pane */
+/** Byte notebook (packet bytes) pane. */
extern GtkWidget *byte_nb_ptr;
-/** the filter text entry in the filter toolbar */
+/** The filter text entry in the filter toolbar. */
extern GtkWidget *main_display_filter_widget;
#if GTK_MAJOR_VERSION < 2
-/** normal font */
+/** Normal font. */
extern GdkFont *m_r_font;
-/** bold font */
+/** Bold font. */
extern GdkFont *m_b_font;
-/** font height */
+/** Font height. */
extern guint m_font_height;
-/** font width */
+/** Font width. */
extern guint m_font_width;
-/** ???
- * @todo what's this?
- */
+/** Widget style (font, color, ...). */
extern GtkStyle *item_style;
#else
-/** normal font */
+/** Normal font. */
extern PangoFontDescription *m_r_font;
-/** bold font */
+/** Bold font. */
extern PangoFontDescription *m_b_font;
#endif