Got a new idea to do cursors, including global

ones and busy etc.
  Fixed an assert in UserScaler from PS code.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2577 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-05-26 20:40:04 +00:00
parent 14906731b1
commit 238d735dc2
14 changed files with 112 additions and 90 deletions

View File

@@ -70,7 +70,7 @@ public:
// implementation // implementation
// -------------- // --------------
void ComputeScaleAndOrigin(); virtual void ComputeScaleAndOrigin();
long XDEV2LOG(long x) const long XDEV2LOG(long x) const
{ {

View File

@@ -118,6 +118,8 @@ public:
void SetUpDC(); void SetUpDC();
void Destroy(); void Destroy();
void ComputeScaleAndOrigin();
GdkWindow *GetWindow() { return m_window; } GdkWindow *GetWindow() { return m_window; }
}; };

View File

@@ -70,7 +70,7 @@ public:
// implementation // implementation
// -------------- // --------------
void ComputeScaleAndOrigin(); virtual void ComputeScaleAndOrigin();
long XDEV2LOG(long x) const long XDEV2LOG(long x) const
{ {

View File

@@ -118,6 +118,8 @@ public:
void SetUpDC(); void SetUpDC();
void Destroy(); void Destroy();
void ComputeScaleAndOrigin();
GdkWindow *GetWindow() { return m_window; } GdkWindow *GetWindow() { return m_window; }
}; };

View File

@@ -16,6 +16,13 @@
#include "gdk/gdk.h" #include "gdk/gdk.h"
//-----------------------------------------------------------------------------
// idle system
//-----------------------------------------------------------------------------
extern void wxapp_install_idle_handler();
extern bool g_isIdle;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// wxCursor // wxCursor
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -137,38 +144,31 @@ GdkCursor *wxCursor::GetCursor() const
// busy cursor routines // 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; static int gs_busyCount = 0;
void wxEndBusyCursor() void wxEndBusyCursor()
{ {
if ( --gs_busyCount > 0 ) if (--gs_busyCount > 0)
return; return;
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(), wxSetCursor( gs_savedCursor );
_T("calling wxEndBusyCursor() without wxBeginBusyCursor()?") ); gs_savedCursor = wxNullCursor;
wxSetCursor(*gs_savedCursor);
delete gs_savedCursor;
gs_savedCursor = NULL;
} }
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) ) void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{ {
if ( gs_busyCount++ > 0 ) if (gs_busyCount++ > 0)
return; return;
wxASSERT_MSG( !gs_savedCursor, wxASSERT_MSG( !gs_savedCursor.Ok(),
_T("forgot to call wxEndBusyCursor, will leak memory") ); _T("forgot to call wxEndBusyCursor, will leak memory") );
gs_savedCursor = new wxCursor; gs_savedCursor = g_globalCursor;
if ( g_globalCursor && g_globalCursor->Ok() )
*gs_savedCursor = *g_globalCursor; wxSetCursor( wxCursor(wxCURSOR_WATCH) );
else
*gs_savedCursor = wxCursor(wxCURSOR_ARROW);
wxSetCursor(wxCursor(wxCURSOR_WATCH));
} }
bool wxIsBusy() bool wxIsBusy()
@@ -178,5 +178,8 @@ bool wxIsBusy()
void wxSetCursor( const wxCursor& cursor ) void wxSetCursor( const wxCursor& cursor )
{ {
if (g_globalCursor) (*g_globalCursor) = cursor; if (g_isIdle)
wxapp_install_idle_handler();
g_globalCursor = cursor;
} }

View File

@@ -46,7 +46,7 @@ wxCriticalSection *wxPendingEventsLocker = NULL;
/* Current cursor, in order to hang on to /* Current cursor, in order to hang on to
* cursor handle when setting the cursor globally */ * cursor handle when setting the cursor globally */
wxCursor *g_globalCursor = (wxCursor *) NULL; wxCursor g_globalCursor;
/* Don't allow event propagation during drag */ /* Don't allow event propagation during drag */
bool g_blockEventsOnDrag = FALSE; bool g_blockEventsOnDrag = FALSE;

View File

@@ -97,22 +97,8 @@ wxSize wxDC::GetPPI() const
void wxDC::ComputeScaleAndOrigin() void wxDC::ComputeScaleAndOrigin()
{ {
/* CMB: copy scale to see if it changes */
double origScaleX = m_scaleX;
double origScaleY = m_scaleY;
m_scaleX = m_logicalScaleX * m_userScaleX; m_scaleX = m_logicalScaleX * m_userScaleX;
m_scaleY = m_logicalScaleY * m_userScaleY; m_scaleY = m_logicalScaleY * m_userScaleY;
/* CMB: if scale has changed call SetPen to recalulate the line width */
if (m_scaleX != origScaleX || m_scaleY != origScaleY)
{
/* this is a bit artificial, but we need to force wxDC to think
the pen has changed */
wxPen pen = m_pen;
m_pen = wxNullPen;
SetPen( pen );
}
} }
void wxDC::SetMapMode( int mode ) void wxDC::SetMapMode( int mode )

View File

@@ -1200,6 +1200,26 @@ void wxWindowDC::Destroy()
m_bgGC = (GdkGC*) NULL; m_bgGC = (GdkGC*) NULL;
} }
void wxWindowDC::ComputeScaleAndOrigin()
{
/* CMB: copy scale to see if it changes */
double origScaleX = m_scaleX;
double origScaleY = m_scaleY;
wxDC::ComputeScaleAndOrigin();
/* CMB: if scale has changed call SetPen to recalulate the line width */
if ((m_scaleX != origScaleX || m_scaleY != origScaleY) &&
(m_pen.Ok()))
{
/* this is a bit artificial, but we need to force wxDC to think
the pen has changed */
wxPen pen = m_pen;
m_pen = wxNullPen;
SetPen( pen );
}
}
// Resolution in pixels per logical inch // Resolution in pixels per logical inch
wxSize wxWindowDC::GetPPI() const wxSize wxWindowDC::GetPPI() const
{ {

View File

@@ -132,6 +132,7 @@
extern wxList wxPendingDelete; extern wxList wxPendingDelete;
extern bool g_blockEventsOnDrag; extern bool g_blockEventsOnDrag;
extern bool g_blockEventsOnScroll; extern bool g_blockEventsOnScroll;
extern wxCursor g_globalCursor;
static bool g_capturing = FALSE; static bool g_capturing = FALSE;
static wxWindow *g_focusWindow = (wxWindow*) NULL; static wxWindow *g_focusWindow = (wxWindow*) NULL;
@@ -1250,9 +1251,6 @@ static gint gtk_window_enter_callback( GtkWidget *widget, GdkEventCrossing *gdk_
if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE;
if (widget->window && win->GetCursor().Ok() )
gdk_window_set_cursor( widget->window, win->GetCursor().GetCursor() );
wxMouseEvent event( wxEVT_ENTER_WINDOW ); wxMouseEvent event( wxEVT_ENTER_WINDOW );
#if (GTK_MINOR_VERSION > 0) #if (GTK_MINOR_VERSION > 0)
event.SetTimestamp( gdk_event->time ); event.SetTimestamp( gdk_event->time );
@@ -1299,9 +1297,6 @@ static gint gtk_window_leave_callback( GtkWidget *widget, GdkEventCrossing *gdk_
if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE;
if (widget->window && win->GetCursor().Ok() )
gdk_window_set_cursor( widget->window, wxSTANDARD_CURSOR->GetCursor() );
wxMouseEvent event( wxEVT_LEAVE_WINDOW ); wxMouseEvent event( wxEVT_LEAVE_WINDOW );
#if (GTK_MINOR_VERSION > 0) #if (GTK_MINOR_VERSION > 0)
event.SetTimestamp( gdk_event->time ); event.SetTimestamp( gdk_event->time );
@@ -2032,6 +2027,15 @@ void wxWindow::DoSetSize( int x, int y, int width, int height, int sizeFlags )
void wxWindow::OnInternalIdle() void wxWindow::OnInternalIdle()
{ {
GdkWindow *window = GetConnectWidget()->window;
if (window)
{
if (g_globalCursor.Ok())
gdk_window_set_cursor( window, g_globalCursor.GetCursor() );
else
gdk_window_set_cursor( window, m_cursor.GetCursor() );
}
UpdateWindowUI(); UpdateWindowUI();
} }
@@ -2391,11 +2395,7 @@ bool wxWindow::SetCursor( const wxCursor &cursor )
return TRUE; return TRUE;
} }
if ((m_widget) && (m_widget->window)) // gdk_window_set_cursor( connect_widget->window, GetCursor().GetCursor() );
gdk_window_set_cursor( m_widget->window, GetCursor().GetCursor() );
if ((m_wxwindow) && (m_wxwindow->window))
gdk_window_set_cursor( m_wxwindow->window, GetCursor().GetCursor() );
// cursor was set // cursor was set
return TRUE; return TRUE;

View File

@@ -16,6 +16,13 @@
#include "gdk/gdk.h" #include "gdk/gdk.h"
//-----------------------------------------------------------------------------
// idle system
//-----------------------------------------------------------------------------
extern void wxapp_install_idle_handler();
extern bool g_isIdle;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// wxCursor // wxCursor
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -137,38 +144,31 @@ GdkCursor *wxCursor::GetCursor() const
// busy cursor routines // 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; static int gs_busyCount = 0;
void wxEndBusyCursor() void wxEndBusyCursor()
{ {
if ( --gs_busyCount > 0 ) if (--gs_busyCount > 0)
return; return;
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(), wxSetCursor( gs_savedCursor );
_T("calling wxEndBusyCursor() without wxBeginBusyCursor()?") ); gs_savedCursor = wxNullCursor;
wxSetCursor(*gs_savedCursor);
delete gs_savedCursor;
gs_savedCursor = NULL;
} }
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) ) void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{ {
if ( gs_busyCount++ > 0 ) if (gs_busyCount++ > 0)
return; return;
wxASSERT_MSG( !gs_savedCursor, wxASSERT_MSG( !gs_savedCursor.Ok(),
_T("forgot to call wxEndBusyCursor, will leak memory") ); _T("forgot to call wxEndBusyCursor, will leak memory") );
gs_savedCursor = new wxCursor; gs_savedCursor = g_globalCursor;
if ( g_globalCursor && g_globalCursor->Ok() )
*gs_savedCursor = *g_globalCursor; wxSetCursor( wxCursor(wxCURSOR_WATCH) );
else
*gs_savedCursor = wxCursor(wxCURSOR_ARROW);
wxSetCursor(wxCursor(wxCURSOR_WATCH));
} }
bool wxIsBusy() bool wxIsBusy()
@@ -178,5 +178,8 @@ bool wxIsBusy()
void wxSetCursor( const wxCursor& cursor ) void wxSetCursor( const wxCursor& cursor )
{ {
if (g_globalCursor) (*g_globalCursor) = cursor; if (g_isIdle)
wxapp_install_idle_handler();
g_globalCursor = cursor;
} }

View File

@@ -46,7 +46,7 @@ wxCriticalSection *wxPendingEventsLocker = NULL;
/* Current cursor, in order to hang on to /* Current cursor, in order to hang on to
* cursor handle when setting the cursor globally */ * cursor handle when setting the cursor globally */
wxCursor *g_globalCursor = (wxCursor *) NULL; wxCursor g_globalCursor;
/* Don't allow event propagation during drag */ /* Don't allow event propagation during drag */
bool g_blockEventsOnDrag = FALSE; bool g_blockEventsOnDrag = FALSE;

View File

@@ -97,22 +97,8 @@ wxSize wxDC::GetPPI() const
void wxDC::ComputeScaleAndOrigin() void wxDC::ComputeScaleAndOrigin()
{ {
/* CMB: copy scale to see if it changes */
double origScaleX = m_scaleX;
double origScaleY = m_scaleY;
m_scaleX = m_logicalScaleX * m_userScaleX; m_scaleX = m_logicalScaleX * m_userScaleX;
m_scaleY = m_logicalScaleY * m_userScaleY; m_scaleY = m_logicalScaleY * m_userScaleY;
/* CMB: if scale has changed call SetPen to recalulate the line width */
if (m_scaleX != origScaleX || m_scaleY != origScaleY)
{
/* this is a bit artificial, but we need to force wxDC to think
the pen has changed */
wxPen pen = m_pen;
m_pen = wxNullPen;
SetPen( pen );
}
} }
void wxDC::SetMapMode( int mode ) void wxDC::SetMapMode( int mode )

View File

@@ -1200,6 +1200,26 @@ void wxWindowDC::Destroy()
m_bgGC = (GdkGC*) NULL; m_bgGC = (GdkGC*) NULL;
} }
void wxWindowDC::ComputeScaleAndOrigin()
{
/* CMB: copy scale to see if it changes */
double origScaleX = m_scaleX;
double origScaleY = m_scaleY;
wxDC::ComputeScaleAndOrigin();
/* CMB: if scale has changed call SetPen to recalulate the line width */
if ((m_scaleX != origScaleX || m_scaleY != origScaleY) &&
(m_pen.Ok()))
{
/* this is a bit artificial, but we need to force wxDC to think
the pen has changed */
wxPen pen = m_pen;
m_pen = wxNullPen;
SetPen( pen );
}
}
// Resolution in pixels per logical inch // Resolution in pixels per logical inch
wxSize wxWindowDC::GetPPI() const wxSize wxWindowDC::GetPPI() const
{ {

View File

@@ -132,6 +132,7 @@
extern wxList wxPendingDelete; extern wxList wxPendingDelete;
extern bool g_blockEventsOnDrag; extern bool g_blockEventsOnDrag;
extern bool g_blockEventsOnScroll; extern bool g_blockEventsOnScroll;
extern wxCursor g_globalCursor;
static bool g_capturing = FALSE; static bool g_capturing = FALSE;
static wxWindow *g_focusWindow = (wxWindow*) NULL; static wxWindow *g_focusWindow = (wxWindow*) NULL;
@@ -1250,9 +1251,6 @@ static gint gtk_window_enter_callback( GtkWidget *widget, GdkEventCrossing *gdk_
if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE;
if (widget->window && win->GetCursor().Ok() )
gdk_window_set_cursor( widget->window, win->GetCursor().GetCursor() );
wxMouseEvent event( wxEVT_ENTER_WINDOW ); wxMouseEvent event( wxEVT_ENTER_WINDOW );
#if (GTK_MINOR_VERSION > 0) #if (GTK_MINOR_VERSION > 0)
event.SetTimestamp( gdk_event->time ); event.SetTimestamp( gdk_event->time );
@@ -1299,9 +1297,6 @@ static gint gtk_window_leave_callback( GtkWidget *widget, GdkEventCrossing *gdk_
if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE;
if (widget->window && win->GetCursor().Ok() )
gdk_window_set_cursor( widget->window, wxSTANDARD_CURSOR->GetCursor() );
wxMouseEvent event( wxEVT_LEAVE_WINDOW ); wxMouseEvent event( wxEVT_LEAVE_WINDOW );
#if (GTK_MINOR_VERSION > 0) #if (GTK_MINOR_VERSION > 0)
event.SetTimestamp( gdk_event->time ); event.SetTimestamp( gdk_event->time );
@@ -2032,6 +2027,15 @@ void wxWindow::DoSetSize( int x, int y, int width, int height, int sizeFlags )
void wxWindow::OnInternalIdle() void wxWindow::OnInternalIdle()
{ {
GdkWindow *window = GetConnectWidget()->window;
if (window)
{
if (g_globalCursor.Ok())
gdk_window_set_cursor( window, g_globalCursor.GetCursor() );
else
gdk_window_set_cursor( window, m_cursor.GetCursor() );
}
UpdateWindowUI(); UpdateWindowUI();
} }
@@ -2391,11 +2395,7 @@ bool wxWindow::SetCursor( const wxCursor &cursor )
return TRUE; return TRUE;
} }
if ((m_widget) && (m_widget->window)) // gdk_window_set_cursor( connect_widget->window, GetCursor().GetCursor() );
gdk_window_set_cursor( m_widget->window, GetCursor().GetCursor() );
if ((m_wxwindow) && (m_wxwindow->window))
gdk_window_set_cursor( m_wxwindow->window, GetCursor().GetCursor() );
// cursor was set // cursor was set
return TRUE; return TRUE;