-// get the font from a style
-//
-// TODO: GdkFont has been replaced by PangoFontDescription in GTK+ 2.0
-// and we really should use it instead of GdkFont (see also dclient.cpp)
-#ifdef __WXGTK20__
- #define GET_STYLE_FONT(style) gtk_style_get_font(style)
- #define SET_STYLE_FONT(style, font) gtk_style_set_font(style, font)
-#else
- #define GET_STYLE_FONT(style) ((style)->font)
- #define SET_STYLE_FONT(style, fnt) \
- gdk_font_unref( style->font ); \
- style->font = gdk_font_ref( fnt )
-#endif
-