X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a1db952fde952abc8b241c1e1fac0f952f8b4dd5..71414756b2cb4d64ee167e61f3fa4854c4f2a85b:/include/wx/gtk/cursor.h diff --git a/include/wx/gtk/cursor.h b/include/wx/gtk/cursor.h index 6027e12790..655103113a 100644 --- a/include/wx/gtk/cursor.h +++ b/include/wx/gtk/cursor.h @@ -11,7 +11,7 @@ #ifndef __GTKCURSORH__ #define __GTKCURSORH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface #endif @@ -19,6 +19,10 @@ #include "wx/object.h" #include "wx/gdicmn.h" +#if wxUSE_IMAGE +#include "wx/image.h" +#endif + //----------------------------------------------------------------------------- // wxCursor //----------------------------------------------------------------------------- @@ -30,6 +34,9 @@ public: wxCursor(); wxCursor( int cursorId ); wxCursor( const wxCursor &cursor ); +#if wxUSE_IMAGE + wxCursor( const wxImage & image ); +#endif wxCursor( const char bits[], int width, int height, int hotSpotX=-1, int hotSpotY=-1, const char maskBits[]=0, wxColour *fg=0, wxColour *bg=0 );