- // Creates a new widget style if none is there
- // and sets m_widgetStyle to this value.
- GtkStyle *GetWidgetStyle();
-
- // Called by SetFont() and SetXXXColour etc
- void SetWidgetStyle();
-
- // Overridden in many GTK widgets who have to handle subwidgets
- virtual void ApplyWidgetStyle();
+#ifdef __WXGTK20__
+ // Returns the default context which usually is anti-aliased
+ PangoContext *GtkGetPangoDefaultContext();
+
+ // Returns the X11 context which renders on the X11 client
+ // side (which can be remote) and which usually is not
+ // anti-aliased and is thus faster
+ PangoContext *GtkGetPangoX11Context();
+ PangoContext *m_x11Context;
+#endif