X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/89a43902a865ebd1da12cf41b2906279b8662361..e0272d05780ae2f150b6217fd20048a3e3d21c65:/src/gtk/cursor.cpp diff --git a/src/gtk/cursor.cpp b/src/gtk/cursor.cpp index 7c497e454c..2277c0aee4 100644 --- a/src/gtk/cursor.cpp +++ b/src/gtk/cursor.cpp @@ -16,6 +16,13 @@ #include "gdk/gdk.h" +//----------------------------------------------------------------------------- +// idle system +//----------------------------------------------------------------------------- + +extern void wxapp_install_idle_handler(); +extern bool g_isIdle; + //----------------------------------------------------------------------------- // wxCursor //----------------------------------------------------------------------------- @@ -84,7 +91,7 @@ wxCursor::wxCursor( int cursorId ) case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break; */ default: - wxFAIL_MSG("unsupported cursor type"); + wxFAIL_MSG(_T("unsupported cursor type")); // will use the standard one case wxCURSOR_ARROW: @@ -137,38 +144,31 @@ GdkCursor *wxCursor::GetCursor() const // busy cursor routines //----------------------------------------------------------------------------- -extern wxCursor *g_globalCursor; +extern wxCursor g_globalCursor; -static wxCursor *gs_savedCursor = NULL; +static wxCursor gs_savedCursor; static int gs_busyCount = 0; void wxEndBusyCursor() { - if ( --gs_busyCount > 0 ) + if (--gs_busyCount > 0) return; - wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(), - "calling wxEndBusyCursor() without wxBeginBusyCursor()?" ); - - wxSetCursor(*gs_savedCursor); - delete gs_savedCursor; - gs_savedCursor = NULL; + wxSetCursor( gs_savedCursor ); + gs_savedCursor = wxNullCursor; } void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) ) { - if ( gs_busyCount++ > 0 ) + if (gs_busyCount++ > 0) return; - wxASSERT_MSG( !gs_savedCursor, - "forgot to call wxEndBusyCursor, will leak memory" ); + wxASSERT_MSG( !gs_savedCursor.Ok(), + _T("forgot to call wxEndBusyCursor, will leak memory") ); - gs_savedCursor = new wxCursor; - if ( g_globalCursor && g_globalCursor->Ok() ) - *gs_savedCursor = *g_globalCursor; - else - *gs_savedCursor = wxCursor(wxCURSOR_ARROW); - wxSetCursor(wxCursor(wxCURSOR_WATCH)); + gs_savedCursor = g_globalCursor; + + wxSetCursor( wxCursor(wxCURSOR_WATCH) ); } bool wxIsBusy() @@ -178,7 +178,8 @@ bool wxIsBusy() void wxSetCursor( const wxCursor& cursor ) { - if (g_globalCursor) (*g_globalCursor) = cursor; -} - + if (g_isIdle) + wxapp_install_idle_handler(); + g_globalCursor = cursor; +}