#ifndef __GTKWINDOWH__
#define __GTKWINDOWH__
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
virtual void Refresh( bool eraseBackground = TRUE,
const wxRect *rect = (const wxRect *) NULL );
virtual void Update();
- virtual void Clear();
+ virtual void ClearBackground();
virtual bool SetBackgroundColour( const wxColour &colour );
virtual bool SetForegroundColour( const wxColour &colour );
// see the docs in src/gtk/window.cpp
GtkWidget *m_widget; // mostly the widget seen by the rest of GTK
- GtkWidget *m_wxwindow; // mostly the client area as per wxWindows
+ GtkWidget *m_wxwindow; // mostly the client area as per wxWidgets
// this widget will be queried for GTK's focus events
GtkWidget *m_focusWidget;
GtkIMMulticontext *m_imContext;
#else
#if HAVE_XIM
- // XIM support for wxWindows
+ // XIM support for wxWidgets
GdkIC *m_ic;
GdkICAttr *m_icattr;
#endif