git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40951
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// set the current cursor for all GdkWindows making part of this widget
// (see GTKGetWindow)
// set the current cursor for all GdkWindows making part of this widget
// (see GTKGetWindow)
// should be called from OnInternalIdle() if it's overridden
void GTKUpdateCursor();
// should be called from OnInternalIdle() if it's overridden
void GTKUpdateCursor();
{
// Rewrite cursor handling here (away from idle).
win->SetCursor( cevent.GetCursor() );
{
// Rewrite cursor handling here (away from idle).
win->SetCursor( cevent.GetCursor() );
- win->GTKUpdateCursor();
{
// Rewrite cursor handling here (away from idle).
win->SetCursor( cevent.GetCursor() );
{
// Rewrite cursor handling here (away from idle).
win->SetCursor( cevent.GetCursor() );
- win->GTKUpdateCursor();
bool wxWindowGTK::SetCursor( const wxCursor &cursor )
{
bool wxWindowGTK::SetCursor( const wxCursor &cursor )
{
- wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") );
-
- if (cursor == m_cursor)
- return false;
+ if ( !wxWindowBase::SetCursor( cursor.Ok() ? cursor : *wxSTANDARD_CURSOR) )
+ return false;
- if (g_isIdle)
- wxapp_install_idle_handler();
- return wxWindowBase::SetCursor( cursor.Ok() ? cursor : *wxSTANDARD_CURSOR );
}
void wxWindowGTK::GTKUpdateCursor()
}
void wxWindowGTK::GTKUpdateCursor()