Prepare removing creation of a wxPaintEvent instance, not allowed in 3.1.4 wxWidgets
This commit is contained in:
parent
1cd2a51db2
commit
d34f8fd4b5
|
@ -2,7 +2,7 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013-2017 CERN
|
* Copyright (C) 2013-2017 CERN
|
||||||
* Copyright (C) 2013-2017 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 2013-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
||||||
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
||||||
*
|
*
|
||||||
|
@ -158,7 +158,17 @@ void EDA_DRAW_PANEL_GAL::SetFocus()
|
||||||
|
|
||||||
void EDA_DRAW_PANEL_GAL::onPaint( wxPaintEvent& WXUNUSED( aEvent ) )
|
void EDA_DRAW_PANEL_GAL::onPaint( wxPaintEvent& WXUNUSED( aEvent ) )
|
||||||
{
|
{
|
||||||
// Update scroll position if the canvas is managed by a EDA frame
|
DoRePaint();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void EDA_DRAW_PANEL_GAL::DoRePaint()
|
||||||
|
{
|
||||||
|
// Repaint the canvas, and fix scrollbar cursors
|
||||||
|
// Usually called by a OnPaint event, but because it does not use a wxPaintDC,
|
||||||
|
// it can be called outside a wxPaintEvent.
|
||||||
|
|
||||||
|
// Update current zoom settings if the canvas is managed by a EDA frame
|
||||||
// (i.e. not by a preview panel in a dialog)
|
// (i.e. not by a preview panel in a dialog)
|
||||||
if( GetParentEDAFrame() && GetParentEDAFrame()->GetScreen() )
|
if( GetParentEDAFrame() && GetParentEDAFrame()->GetScreen() )
|
||||||
GetParentEDAFrame()->GetScreen()->m_ScrollCenter = GetView()->GetCenter();
|
GetParentEDAFrame()->GetScreen()->m_ScrollCenter = GetView()->GetCenter();
|
||||||
|
@ -228,7 +238,7 @@ void EDA_DRAW_PANEL_GAL::onPaint( wxPaintEvent& WXUNUSED( aEvent ) )
|
||||||
|
|
||||||
#ifdef PROFILE
|
#ifdef PROFILE
|
||||||
totalRealTime.Stop();
|
totalRealTime.Stop();
|
||||||
wxLogTrace( "GAL_PROFILE", "EDA_DRAW_PANEL_GAL::onPaint(): %.1f ms", totalRealTime.msecs() );
|
wxLogTrace( "GAL_PROFILE", "EDA_DRAW_PANEL_GAL::DoRePaint(): %.1f ms", totalRealTime.msecs() );
|
||||||
#endif /* PROFILE */
|
#endif /* PROFILE */
|
||||||
|
|
||||||
m_lastRefresh = wxGetLocalTimeMillis();
|
m_lastRefresh = wxGetLocalTimeMillis();
|
||||||
|
@ -283,8 +293,9 @@ void EDA_DRAW_PANEL_GAL::Refresh( bool aEraseBackground, const wxRect* aRect )
|
||||||
|
|
||||||
void EDA_DRAW_PANEL_GAL::ForceRefresh()
|
void EDA_DRAW_PANEL_GAL::ForceRefresh()
|
||||||
{
|
{
|
||||||
wxPaintEvent redrawEvent;
|
//wxPaintEvent redrawEvent;
|
||||||
wxPostEvent( this, redrawEvent );
|
//wxPostEvent( this, redrawEvent );
|
||||||
|
DoRePaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -503,8 +514,9 @@ void EDA_DRAW_PANEL_GAL::onRefreshTimer( wxTimerEvent& aEvent )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wxPaintEvent redrawEvent;
|
//wxPaintEvent redrawEvent;
|
||||||
wxPostEvent( this, redrawEvent );
|
//wxPostEvent( this, redrawEvent );
|
||||||
|
DoRePaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013-2018 CERN
|
* Copyright (C) 2013-2018 CERN
|
||||||
|
* Copyright (C) 2013-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
|
*
|
||||||
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
||||||
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
||||||
*
|
*
|
||||||
|
@ -200,7 +202,15 @@ public:
|
||||||
*/
|
*/
|
||||||
void OnEvent( wxEvent& aEvent );
|
void OnEvent( wxEvent& aEvent );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Repaint the canvas, and fix scrollbar cursors
|
||||||
|
* Usually called by a OnPaint event, but because it do not use a wxPaintDC,
|
||||||
|
* it can be called outside a wxPaintEvent.
|
||||||
|
*/
|
||||||
|
void DoRePaint();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
virtual void onPaint( wxPaintEvent& WXUNUSED( aEvent ) );
|
virtual void onPaint( wxPaintEvent& WXUNUSED( aEvent ) );
|
||||||
void onSize( wxSizeEvent& aEvent );
|
void onSize( wxSizeEvent& aEvent );
|
||||||
void onEnter( wxEvent& aEvent );
|
void onEnter( wxEvent& aEvent );
|
||||||
|
|
Loading…
Reference in New Issue