KiCad PCB EDA Suite
Loading...
Searching...
No Matches
draw_panel_gal.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2013-2017 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Tomasz Wlostowski <[email protected]>
8 * @author Maciej Suminski <[email protected]>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, you may find one here:
22 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
23 * or you may search the http://www.gnu.org website for the version 2 license,
24 * or you may write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 */
27#include <eda_draw_frame.h>
28#include <kiface_base.h>
29#include <macros.h>
30#include <scoped_set_reset.h>
32#include <trace_helpers.h>
33
35#include <view/view.h>
37#include <gal/painter.h>
38#include <base_screen.h>
39#include <gal/cursors.h>
42#include <gal/cairo/cairo_gal.h>
43#include <math/vector2wx.h>
44
45
47#include <tool/tool_manager.h>
48
49#include <widgets/wx_infobar.h>
50
51#include <kiplatform/ui.h>
52
53#include <core/profile.h>
54
55#include <wx/display.h>
56
57#include <pgm_base.h>
58#include <confirm.h>
59
60
66static const wxChar traceDrawPanel[] = wxT( "KICAD_DRAW_PANEL" );
67
68
69EDA_DRAW_PANEL_GAL::EDA_DRAW_PANEL_GAL( wxWindow* aParentWindow, wxWindowID aWindowId,
70 const wxPoint& aPosition, const wxSize& aSize,
71 KIGFX::GAL_DISPLAY_OPTIONS& aOptions, GAL_TYPE aGalType ) :
72 wxScrolledCanvas( aParentWindow, aWindowId, aPosition, aSize ),
73 m_MouseCapturedLost( false ),
74 m_parent( aParentWindow ),
75 m_edaFrame( nullptr ),
78 m_drawing( false ),
79 m_drawingEnabled( false ),
80 m_needIdleRefresh( false ),
81 m_gal( nullptr ),
82 m_view( nullptr ),
83 m_painter( nullptr ),
84 m_viewControls( nullptr ),
86 m_options( aOptions ),
87 m_eventDispatcher( nullptr ),
88 m_lostFocus( false ),
89 m_glRecoveryAttempted( false ),
90 m_stealsFocus( true ),
91 m_statusPopup( nullptr )
92{
93#ifdef _WIN32
94 // need to fix broken cairo rendering on Windows with wx 3.3
95 SetDoubleBuffered( false );
96#endif
97 m_PaintEventCounter = std::make_unique<PROF_COUNTER>( "Draw panel paint events" );
98
99 if( Pgm().GetCommonSettings()->m_Appearance.show_scrollbars )
100 ShowScrollbars( wxSHOW_SB_ALWAYS, wxSHOW_SB_ALWAYS );
101 else
102 ShowScrollbars( wxSHOW_SB_NEVER, wxSHOW_SB_NEVER );
103
104 SetLayoutDirection( wxLayout_LeftToRight );
105
106 m_edaFrame = dynamic_cast<EDA_DRAW_FRAME*>( m_parent );
107
108 // If we're in a dialog, we have to go looking for our parent frame
109 if( !m_edaFrame )
110 {
111 wxWindow* ancestor = aParentWindow->GetParent();
112
113 while( ancestor && !dynamic_cast<EDA_DRAW_FRAME*>( ancestor ) )
114 ancestor = ancestor->GetParent();
115
116 if( ancestor )
117 m_edaFrame = dynamic_cast<EDA_DRAW_FRAME*>( ancestor );
118 }
119
120 SwitchBackend( aGalType );
121 SetBackgroundStyle( wxBG_STYLE_CUSTOM );
122
123 EnableScrolling( false, false ); // otherwise Zoom Auto disables GAL canvas
124 KIPLATFORM::UI::SetOverlayScrolling( this, false ); // Prevent excessive repaint on GTK
125 KIPLATFORM::UI::ImmControl( this, false ); // Ensure our panel can't suck in IME events
126
127 Connect( wxEVT_SIZE, wxSizeEventHandler( EDA_DRAW_PANEL_GAL::onSize ), nullptr, this );
128 Connect( wxEVT_ENTER_WINDOW, wxMouseEventHandler( EDA_DRAW_PANEL_GAL::onEnter ), nullptr,
129 this );
130 Connect( wxEVT_KILL_FOCUS, wxFocusEventHandler( EDA_DRAW_PANEL_GAL::onLostFocus ), nullptr,
131 this );
132
133 const wxEventType events[] = {
134 // Binding both EVT_CHAR and EVT_CHAR_HOOK ensures that all key events,
135 // especially special key like arrow keys, are handled by the GAL event dispatcher,
136 // and not sent to GUI without filtering, because they have a default action (scroll)
137 // that must not be called.
138 wxEVT_LEFT_UP,
139 wxEVT_LEFT_DOWN,
140 wxEVT_LEFT_DCLICK,
141 wxEVT_RIGHT_UP,
142 wxEVT_RIGHT_DOWN,
143 wxEVT_RIGHT_DCLICK,
144 wxEVT_MIDDLE_UP,
145 wxEVT_MIDDLE_DOWN,
146 wxEVT_MIDDLE_DCLICK,
147 wxEVT_AUX1_UP,
148 wxEVT_AUX1_DOWN,
149 wxEVT_AUX1_DCLICK,
150 wxEVT_AUX2_UP,
151 wxEVT_AUX2_DOWN,
152 wxEVT_AUX2_DCLICK,
153 wxEVT_MOTION,
154 wxEVT_MOUSEWHEEL,
155 wxEVT_CHAR,
156 wxEVT_CHAR_HOOK,
157 wxEVT_MAGNIFY,
159 };
160
161 for( wxEventType eventType : events )
162 Connect( eventType, wxEventHandler( EDA_DRAW_PANEL_GAL::OnEvent ), nullptr,
164
165 // Set up timer to detect when drawing starts
166 m_refreshTimer.SetOwner( this );
167 Connect( m_refreshTimer.GetId(), wxEVT_TIMER,
168 wxTimerEventHandler( EDA_DRAW_PANEL_GAL::onRefreshTimer ), nullptr, this );
169
170 Connect( wxEVT_SHOW, wxShowEventHandler( EDA_DRAW_PANEL_GAL::onShowEvent ), nullptr, this );
171}
172
173
175{
176 // Ensure EDA_DRAW_PANEL_GAL::onShowEvent is not fired during Dtor process
177 Disconnect( wxEVT_SHOW, wxShowEventHandler( EDA_DRAW_PANEL_GAL::onShowEvent ) );
178 StopDrawing();
179
180 wxASSERT( !m_drawing );
181
182 delete m_viewControls;
183 delete m_view;
184 delete m_gal;
185 m_gal = nullptr; // Ensure OnShow is not called
186}
187
188
190{
192 wxScrolledCanvas::SetFocus();
193 m_lostFocus = false;
194}
195
196
197void EDA_DRAW_PANEL_GAL::onPaint( wxPaintEvent& WXUNUSED( aEvent ) )
198{
199 DoRePaint( false );
200}
201
202
203bool EDA_DRAW_PANEL_GAL::recoverFromGalError( const std::exception& aError )
204{
205 try
206 {
207 // Sleep/wake and GPU resets can invalidate the entire GL context.
208 // Try a full reinit of the current backend before falling back.
210 {
212 GAL_TYPE prevBackend = m_backend;
214
215 if( SwitchBackend( prevBackend ) )
216 {
217 StartDrawing();
218 return true;
219 }
220 }
221
223 {
224 m_glRecoveryAttempted = false;
226
227 DisplayInfoMessage( m_parent, _( "Could not use OpenGL, falling back to software rendering" ),
228 wxString( aError.what() ) );
229
230 StartDrawing();
231 return true;
232 }
233
234 DisplayErrorMessage( m_parent, _( "Graphics error" ), wxString( aError.what() ) );
235 }
236 catch( std::exception& recoveryErr )
237 {
238 DisplayErrorMessage( m_parent, _( "Graphics error during recovery" ), wxString( recoveryErr.what() ) );
239 }
240 catch( ... )
241 {
242 DisplayErrorMessage( m_parent, _( "Graphics error during recovery" ),
243 _( "Unknown exception during backend switch" ) );
244 }
245
246 return false;
247}
248
249
250bool EDA_DRAW_PANEL_GAL::DoRePaint( bool aAllowSkip )
251{
252 if( !m_refreshMutex.try_lock() )
253 return false;
254
255 std::lock_guard<std::mutex> lock( m_refreshMutex, std::adopt_lock );
256
257 if( !m_drawingEnabled )
258 return false;
259
260 if( !m_gal->IsInitialized() || !m_gal->IsVisible() || m_gal->IsContextLocked() )
261 return false;
262
263 if( m_drawing )
264 return false;
265
266 m_lastRepaintStart = wxGetLocalTimeMillis();
267
268 // Repaint the canvas, and fix scrollbar cursors
269 // Usually called by a OnPaint event, but because it does not use a wxPaintDC,
270 // it can be called outside a wxPaintEvent.
271
272 // Update current zoom settings if the canvas is managed by a EDA frame
273 // (i.e. not by a preview panel in a dialog)
274 if( !IsDialogPreview() && GetParentEDAFrame() && GetParentEDAFrame()->GetScreen() )
276
277 if( Pgm().GetCommonSettings()->m_Appearance.show_scrollbars )
278 m_viewControls->UpdateScrollbars();
279
280#ifdef KICAD_GAL_PROFILE
281 latencyProbeZoomToRender.Checkpoint("do-repaint-start");
282#endif
283
284 SCOPED_SET_RESET<bool> drawing( m_drawing, true );
285
286 ( *m_PaintEventCounter )++;
287
288 wxASSERT( m_painter );
289
290 KIGFX::RENDER_SETTINGS* settings =
291 static_cast<KIGFX::RENDER_SETTINGS*>( m_painter->GetSettings() );
292
293 PROF_TIMER cntUpd("view-upd-items", false);
294 PROF_TIMER cntTotal("view-total", false);
295 PROF_TIMER cntCtx("view-context-create", false);
296 PROF_TIMER cntCtxDestroy("view-context-destroy", false);
297 PROF_TIMER cntRedraw("view-redraw-rects", false);
298
299 bool isDirty = false;
300
301 cntTotal.Start();
302
303 try
304 {
305 VECTOR2D cursorPos = m_viewControls->GetCursorPosition();
306 bool viewDirty = m_view->IsDirty();
307 bool cursorMoved = ( cursorPos != m_lastCursorPosition );
308 bool hasPendingItemUpdates = m_view->HasPendingItemUpdates();
309
310 // Skip all update work when nothing has changed since the previous frame.
311 // Never skip when responding to a native paint event or explicit ForceRefresh
312 // because the window content may have been invalidated by the OS.
313 if( aAllowSkip && !viewDirty && !cursorMoved && !hasPendingItemUpdates )
314 {
315 m_lastRepaintEnd = wxGetLocalTimeMillis();
316 return true;
317 }
318
319 if( hasPendingItemUpdates )
320 {
321 cntUpd.Start();
322
323 try
324 {
325 m_view->UpdateItems();
326 }
327 catch( std::out_of_range& err )
328 {
329 // Don't do anything here but don't fail
330 // This can happen when we don't catch `at()` calls
331 wxLogTrace( traceDrawPanel, wxS( "Out of Range error: %s" ), err.what() );
332 }
333 catch( std::runtime_error& err )
334 {
335 // Handle GL errors (e.g. glMapBuffer failure) that surface during UpdateItems().
336 // These can occur on macOS under memory pressure when embedding large 3D models.
337 // Log and continue so the outer handler can decide whether to switch backends.
338 wxLogTrace( traceDrawPanel, wxS( "Runtime error during UpdateItems: %s" ),
339 err.what() );
340 throw;
341 }
342
343 cntUpd.Stop();
344 viewDirty = m_view->IsDirty();
345 }
346
347 // After processing item updates, skip the GL cycle when neither the
348 // view targets nor the cursor position have changed.
349 if( aAllowSkip && !viewDirty && !cursorMoved )
350 {
351 m_lastRepaintEnd = wxGetLocalTimeMillis();
352 return true;
353 }
354
355 m_lastCursorPosition = cursorPos;
356
357 // GAL_DRAWING_CONTEXT can throw in the dtor, so we need to scope
358 // the full lifetime inside the try block
359 {
360 cntCtx.Start();
362 cntCtx.Stop();
363
364 if( m_view->IsTargetDirty( KIGFX::TARGET_OVERLAY )
365 && !m_gal->HasTarget( KIGFX::TARGET_OVERLAY ) )
366 {
367 m_view->MarkDirty();
368 }
369
370 m_gal->SetClearColor( settings->GetBackgroundColor() );
371 m_gal->SetGridColor( settings->GetGridColor() );
372 m_gal->SetCursorColor( settings->GetCursorColor() );
373
374 // OpenGL double-buffering leaves the back buffer undefined after
375 // SwapBuffers, so a full clear is always required before compositing.
376 // Cairo only needs to clear when NONCACHED content changed.
378 m_gal->ClearScreen();
379
380 if( m_view->IsDirty() )
381 {
382 if( m_backend != GAL_TYPE_OPENGL // Already called in opengl
383 && m_view->IsTargetDirty( KIGFX::TARGET_NONCACHED ) )
384 {
385 m_gal->ClearScreen();
386 }
387
388 m_view->ClearTargets();
389
390 // Grid has to be redrawn only when the NONCACHED target is redrawn
391 if( m_view->IsTargetDirty( KIGFX::TARGET_NONCACHED ) )
392 m_gal->DrawGrid();
393
394 cntRedraw.Start();
395 m_view->Redraw();
396 cntRedraw.Stop();
397 isDirty = true;
398 }
399
400 m_gal->DrawCursor( cursorPos );
401
402 #ifdef KICAD_GAL_PROFILE
403 latencyProbeZoomToRender.Checkpoint("do-repaint-pre-ctx-destroy");
404 #endif
405
406
407 cntCtxDestroy.Start();
408 }
409
410 // ctx goes out of scope here so destructor would be called
411 cntCtxDestroy.Stop();
412
413#ifdef KICAD_GAL_PROFILE
414 latencyProbeZoomToRender.Checkpoint("do-repaint-ctx-done");
415#endif
416
417 // OpenGL frame completed successfully, allow future recovery attempts
418 m_glRecoveryAttempted = false;
419 }
420 catch( std::exception& err )
421 {
422 wxLogTrace( traceDrawPanel, wxS( "DoRePaint exception: %s" ), err.what() );
423
424 if( recoverFromGalError( err ) )
425 return true;
426
427 StopDrawing();
428 }
429 catch( ... )
430 {
431 DisplayErrorMessage( m_parent, _( "Graphics error" ), _( "Unknown exception" ) );
432 StopDrawing();
433 }
434
435 if( isDirty )
436 {
437#ifdef KICAD_GAL_PROFILE
438 wxLogTrace( traceGalProfile, "View timing: %s %s %s %s %s",
439 cntTotal.to_string(),
440 cntUpd.to_string(),
441 cntRedraw.to_string(),
442 cntCtx.to_string(),
443 cntCtxDestroy.to_string()
444 );
445#endif
446 }
447
448 m_lastRepaintEnd = wxGetLocalTimeMillis();
449
450#ifdef KICAD_GAL_PROFILE
451 wxLogTrace( traceGalProfile, "%s", latencyProbeZoomToRender.to_string() );
452 latencyProbeRepaintToMotion.Reset();
453 latencyProbeRepaintToMotion.Checkpoint("repaint-done");
454#endif
455
456 return true;
457}
458
459
460void EDA_DRAW_PANEL_GAL::onSize( wxSizeEvent& aEvent )
461{
462 // If we get a second wx update call before the first finishes, don't crash
463 if( m_gal->IsContextLocked() )
464 return;
465
467 wxSize clientSize = GetClientSize();
468 WX_INFOBAR* infobar = GetParentEDAFrame() ? GetParentEDAFrame()->GetInfoBar() : nullptr;
469
470 if( ToVECTOR2I( clientSize ) == m_gal->GetScreenPixelSize() )
471 return;
472
473 // Note: ( +1, +1 ) prevents an ugly black line on right and bottom on Mac
474 clientSize.x = std::max( 10, clientSize.x + 1 );
475 clientSize.y = std::max( 10, clientSize.y + 1 );
476
477 VECTOR2D bottom( 0, 0 );
478
479 if( m_view )
480 bottom = m_view->ToWorld( m_gal->GetScreenPixelSize(), true );
481
482 m_gal->ResizeScreen( clientSize.GetX(), clientSize.GetY() );
483
484 if( m_view )
485 {
486 if( infobar && infobar->IsLocked() )
487 {
488 VECTOR2D halfScreen( std::ceil( 0.5 * clientSize.x ), std::ceil( 0.5 * clientSize.y ) );
489 m_view->SetCenter( bottom - m_view->ToWorld( halfScreen, false ) );
490 }
491
492 m_view->MarkTargetDirty( KIGFX::TARGET_CACHED );
493 m_view->MarkTargetDirty( KIGFX::TARGET_NONCACHED );
494 }
495}
496
497
502
503
504void EDA_DRAW_PANEL_GAL::Refresh( bool aEraseBackground, const wxRect* aRect )
505{
506 wxLongLong now = wxGetLocalTimeMillis();
507 wxLongLong delta = now - m_lastRepaintEnd;
508 bool galInitialized = m_gal && m_gal->IsInitialized();
509
510 // wxGetLocalTimeMillis is wall clock, so an NTP correction or manual
511 // clock change can make delta negative. Treat that as "long enough".
512 if( delta < 0 )
513 delta = 0;
514
515 // When vsync is available the driver throttles SwapBuffers, so we only need
516 // a small guard to avoid queueing work faster than the GPU can consume it.
517 // Without vsync, cap the render rate at the monitor refresh rate so the
518 // GPU is not saturated producing frames that will never be shown.
519 int minPeriodMs = 3;
520
521 if( galInitialized && m_gal->GetSwapInterval() == 0 )
522 {
523 // wxDisplay reports 0 on headless, some virtualized, and a few driver
524 // combinations. Clamp to a plausible monitor range before trusting it
525 // and fall back to 60 Hz otherwise.
526 int refreshHz = 60;
527 int reported = wxDisplay( this ).GetCurrentMode().refresh;
528
529 if( reported >= 24 && reported <= 1000 )
530 refreshHz = reported;
531
532 minPeriodMs = 1000 / refreshHz;
533 }
534
535 if( delta >= minPeriodMs )
536 {
537 if( !DoRePaint() )
539 }
540 else if( !m_refreshTimer.IsRunning() )
541 {
542 m_refreshTimer.StartOnce( static_cast<int>( ( minPeriodMs - delta ).GetValue() ) );
543 }
544}
545
546
548{
549 if( !m_drawingEnabled )
550 {
551 if( m_gal && m_gal->IsInitialized() )
552 {
553 Connect( wxEVT_PAINT, wxPaintEventHandler( EDA_DRAW_PANEL_GAL::onPaint ), nullptr,
554 this );
555
556 Connect( wxEVT_IDLE, wxIdleEventHandler( EDA_DRAW_PANEL_GAL::onIdle ), nullptr, this );
557
558 m_drawingEnabled = true;
559 }
560 else
561 {
562 // Try again soon
563 m_refreshTimer.StartOnce( 100 );
564 return;
565 }
566 }
567
568 DoRePaint( false );
569}
570
571
573{
574 m_eventDispatcher = aEventDispatcher;
575}
576
577
579{
580 // Start querying GAL if it is ready
581 m_refreshTimer.StartOnce( 100 );
582}
583
584
586{
587 m_refreshTimer.Stop();
588 m_drawingEnabled = false;
589
590 Disconnect( wxEVT_PAINT, wxPaintEventHandler( EDA_DRAW_PANEL_GAL::onPaint ), nullptr, this );
591
592 Disconnect( wxEVT_IDLE, wxIdleEventHandler( EDA_DRAW_PANEL_GAL::onIdle ), nullptr, this );
593}
594
595
597{
598 // Set display settings for high contrast mode
599 KIGFX::RENDER_SETTINGS* rSettings = m_view->GetPainter()->GetSettings();
600
601 SetTopLayer( aLayer );
602
603 rSettings->ClearHighContrastLayers();
604 rSettings->SetLayerIsHighContrast( aLayer );
605
606 m_view->UpdateAllLayersColor();
607}
608
609
611{
612 m_view->ClearTopLayers();
613 m_view->SetTopLayer( aLayer );
614 m_view->UpdateAllLayersOrder();
615}
616
617
619{
620 // Do not do anything if the currently used GAL is correct
621 if( aGalType == m_backend && m_gal != nullptr )
622 return true;
623
624 VECTOR2D grid_size = m_gal ? m_gal->GetGridSize() : VECTOR2D();
625 bool grid_visibility = m_gal ? m_gal->GetGridVisibility() : true;
626 bool result = true; // assume everything will be fine
627
628 // Prevent refreshing canvas during backend switch
629 StopDrawing();
630
631 KIGFX::GAL* new_gal = nullptr;
632
633 try
634 {
635 switch( aGalType )
636 {
637 case GAL_TYPE_OPENGL:
638 {
639 wxString errormsg = KIGFX::OPENGL_GAL::CheckFeatures( m_options );
640
641 if( errormsg.empty() )
642 {
643 new_gal = new KIGFX::OPENGL_GAL( GetVcSettings(), m_options, this, this, this );
644 }
645 else
646 {
647 if( GAL_FALLBACK != aGalType )
648 {
649 aGalType = GAL_FALLBACK;
651 m_parent,
652 _( "Could not use OpenGL, falling back to software rendering" ),
653 errormsg );
654 new_gal = new KIGFX::CAIRO_GAL( m_options, this, this, this );
655 }
656 else
657 {
658 // We're well and truly banjaxed if we get here without a fallback.
659 DisplayInfoMessage( m_parent, _( "Could not use OpenGL" ), errormsg );
660 }
661 }
662
663 break;
664 }
665
666 case GAL_TYPE_CAIRO:
667 new_gal = new KIGFX::CAIRO_GAL( m_options, this, this, this );
668 break;
669
670 default:
671 wxASSERT( false );
673 // warn about unhandled GAL canvas type, but continue with the fallback option
674
675 case GAL_TYPE_NONE:
676 // KIGFX::GAL is a stub - it actually does cannot display anything,
677 // but prevents code relying on GAL canvas existence from crashing
678 new_gal = new KIGFX::GAL( m_options );
679 break;
680 }
681 }
682 catch( std::runtime_error& err )
683 {
684 // Create a dummy GAL
685 new_gal = new KIGFX::GAL( m_options );
686 aGalType = GAL_TYPE_NONE;
687 DisplayErrorMessage( m_parent, _( "Error switching GAL backend" ), wxString( err.what() ) );
688 result = false;
689 }
690
691 // trigger update of the gal options in case they differ from the defaults
692 m_options.NotifyChanged();
693
694 delete m_gal;
695 m_gal = new_gal;
696
697 wxSize clientSize = GetClientSize();
698 clientSize.x = std::max( 10, clientSize.x );
699 clientSize.y = std::max( 10, clientSize.y );
700 m_gal->ResizeScreen( clientSize.GetX(), clientSize.GetY() );
701
702 if( grid_size.x > 0 && grid_size.y > 0 )
703 m_gal->SetGridSize( grid_size );
704
705 m_gal->SetGridVisibility( grid_visibility );
706
707 // Make sure the cursor is set on the new canvas
709
710 if( m_painter )
711 m_painter->SetGAL( m_gal );
712
713 if( m_view )
714 {
715 m_view->SetGAL( m_gal );
716 // Note: OpenGL requires reverse draw order when draw priority is enabled
717 m_view->ReverseDrawOrder( aGalType == GAL_TYPE_OPENGL );
718 }
719
720 m_backend = aGalType;
721
722 return result;
723}
724
725
726void EDA_DRAW_PANEL_GAL::OnEvent( wxEvent& aEvent )
727{
728 bool shouldSetFocus = m_lostFocus && m_stealsFocus
729 && !KIUI::IsInputControlFocused() // Don't steal from input controls
730 && !KIUI::IsModalDialogFocused() // Don't steal from dialogs
731 && KIPLATFORM::UI::IsWindowActive( m_edaFrame ); // Don't steal from other windows
732
733 if( shouldSetFocus )
734 SetFocus();
735
736 if( !m_eventDispatcher )
737 aEvent.Skip();
738 else
739 m_eventDispatcher->DispatchWxEvent( aEvent );
740
741 Refresh();
742}
743
744
745void EDA_DRAW_PANEL_GAL::onEnter( wxMouseEvent& aEvent )
746{
747 bool shouldSetFocus = m_stealsFocus
748 && !KIUI::IsInputControlFocused() // Don't steal from input controls
749 && !KIUI::IsModalDialogFocused() // Don't steal from dialogs
750 && KIPLATFORM::UI::IsWindowActive( m_edaFrame ); // Don't steal from other windows
751
752 // Getting focus is necessary in order to receive key events properly
753 if( shouldSetFocus )
754 SetFocus();
755
756 aEvent.Skip();
757}
758
759
760void EDA_DRAW_PANEL_GAL::onLostFocus( wxFocusEvent& aEvent )
761{
762 m_lostFocus = true;
763
764 m_viewControls->CancelDrag();
765
766 // Reset the tool dispatcher's button state when focus is lost. This prevents
767 // the dispatcher from thinking the button is still pressed when focus returns,
768 // which can cause selection and drag operations to stop working.
770 m_eventDispatcher->ResetState();
771
772 aEvent.Skip();
773}
774
775
776void EDA_DRAW_PANEL_GAL::onIdle( wxIdleEvent& aEvent )
777{
779 {
780 m_needIdleRefresh = false;
781 Refresh();
782 }
783
784 aEvent.Skip();
785}
786
787
788void EDA_DRAW_PANEL_GAL::onRefreshTimer( wxTimerEvent& aEvent )
789{
790 ForceRefresh();
791}
792
793
794void EDA_DRAW_PANEL_GAL::onShowEvent( wxShowEvent& aEvent )
795{
796 if( m_gal && m_gal->IsInitialized() && m_gal->IsVisible() )
797 {
798 OnShow();
799 }
800}
801
802
804{
805 if( !m_gal )
806 return;
807
808 DPI_SCALING_COMMON dpi( nullptr, m_parent );
809
810 bool hidpi = false;
811
812 // Cursor scaling factor cannot be set for a wxCursor on GTK and OSX (at least before wx 3.3),
813 // resulting in 4x rendered size on 2x window scale.
814 // MSW renders the bitmap as-is, without scaling, so this works here.
815#ifdef __WXMSW__
816 hidpi = dpi.GetContentScaleFactor() >= 2.0;
817#endif
818
819 m_gal->SetNativeCursorStyle( aCursor, hidpi );
820}
821
822
823std::shared_ptr<KIGFX::VIEW_OVERLAY> EDA_DRAW_PANEL_GAL::DebugOverlay()
824{
825 if( !m_debugOverlay )
826 {
827 m_debugOverlay.reset( new KIGFX::VIEW_OVERLAY() );
828 m_view->Add( m_debugOverlay.get() );
829 }
830
831 return m_debugOverlay;
832}
833
834
836{
837 if( m_debugOverlay )
838 {
839 m_view->Remove( m_debugOverlay.get() );
840 m_debugOverlay = nullptr;
841 }
842}
843
844
846{
848
849 KIGFX::VC_SETTINGS vcSettings;
850 vcSettings.m_warpCursor = cfg->m_Input.center_on_zoom;
852 vcSettings.m_autoPanSettingEnabled = cfg->m_Input.auto_pan;
854 vcSettings.m_horizontalPan = cfg->m_Input.horizontal_pan;
856 vcSettings.m_zoomSpeed = cfg->m_Input.zoom_speed;
857 vcSettings.m_zoomSpeedAuto = cfg->m_Input.zoom_speed_auto;
862 vcSettings.m_dragLeft = cfg->m_Input.drag_left;
863 vcSettings.m_dragMiddle = cfg->m_Input.drag_middle;
864 vcSettings.m_dragRight = cfg->m_Input.drag_right;
867
868 return vcSettings;
869}
BASE_SCREEN class implementation.
VECTOR2D m_ScrollCenter
Current scroll center point in logical units.
Class to handle configuration and automatic determination of the DPI scale to use for canvases.
double GetContentScaleFactor() const override
Get the content scale factor, which may be different from the scale factor on some platforms.
WX_INFOBAR * GetInfoBar()
The base class for create windows for drawing purpose.
virtual BASE_SCREEN * GetScreen() const
Return a pointer to a BASE_SCREEN or one of its derivatives.
std::unique_ptr< PROF_COUNTER > m_PaintEventCounter
bool m_glRecoveryAttempted
Set after an OpenGL recovery attempt to prevent infinite retry loops.
EDA_DRAW_FRAME * m_edaFrame
Parent EDA_DRAW_FRAME (if available)
void onLostFocus(wxFocusEvent &aEvent)
static constexpr GAL_TYPE GAL_FALLBACK
std::unique_ptr< KIGFX::PAINTER > m_painter
Contains information about how to draw items using GAL.
void onSize(wxSizeEvent &aEvent)
bool m_needIdleRefresh
True when canvas needs to be refreshed from idle handler.
virtual void SetHighContrastLayer(int aLayer)
Take care of display settings for the given layer to be displayed in high contrast mode.
bool m_stealsFocus
Flag to indicate whether the panel should take focus at certain times (when moused over,...
KIGFX::GAL_DISPLAY_OPTIONS & m_options
void StopDrawing()
Prevent the GAL canvas from further drawing until it is recreated or StartDrawing() is called.
static KIGFX::VC_SETTINGS GetVcSettings()
Gets a populated View Controls settings object dervived from our program settings.
virtual void SetTopLayer(int aLayer)
Move the selected layer to the top, so it is displayed above all others.
void ClearDebugOverlay()
Clear the contents of the debug overlay and removes it from the VIEW.
virtual KIGFX::VIEW * GetView() const
Return a pointer to the #VIEW instance used in the panel.
void ForceRefresh()
Force a redraw.
bool recoverFromGalError(const std::exception &aErr)
bool m_drawing
True if GAL is currently redrawing the view.
KIGFX::GAL * m_gal
Interface for drawing objects on a 2D-surface.
EDA_DRAW_PANEL_GAL(wxWindow *aParentWindow, wxWindowID aWindowId, const wxPoint &aPosition, const wxSize &aSize, KIGFX::GAL_DISPLAY_OPTIONS &aOptions, GAL_TYPE aGalType=GAL_TYPE_OPENGL)
Create a drawing panel that is contained inside aParentWindow.
void onRefreshTimer(wxTimerEvent &aEvent)
void SetCurrentCursor(KICURSOR aCursor)
Set the current cursor shape for this panel.
virtual void onPaint(wxPaintEvent &WXUNUSED(aEvent))
bool m_lostFocus
Flag to indicate that focus should be regained on the next mouse event.
virtual void OnShow()
Called when the window is shown for the first time.
std::shared_ptr< KIGFX::VIEW_OVERLAY > m_debugOverlay
Optional overlay for drawing transient debug objects.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
wxTimer m_refreshTimer
Timer to prevent too-frequent refreshing.
TOOL_DISPATCHER * m_eventDispatcher
Processes and forwards events to tools.
wxWindow * m_parent
Pointer to the parent window.
wxLongLong m_lastRepaintStart
Timestamp of the last repaint start.
@ GAL_TYPE_OPENGL
OpenGL implementation.
@ GAL_TYPE_CAIRO
Cairo implementation.
@ GAL_TYPE_NONE
GAL not used (the legacy wxDC engine is used)
KIGFX::VIEW * m_view
Stores view settings (scale, center, etc.) and items to be drawn.
bool m_MouseCapturedLost
used on wxMSW: true after a wxEVT_MOUSE_CAPTURE_LOST was received false after the mouse is recaptured...
KIGFX::WX_VIEW_CONTROLS * m_viewControls
Control for VIEW (moving, zooming, etc.)
void SetFocus() override
void onIdle(wxIdleEvent &aEvent)
void SetEventDispatcher(TOOL_DISPATCHER *aEventDispatcher)
Set a dispatcher that processes events and forwards them to tools.
void onEnter(wxMouseEvent &aEvent)
void RequestRefresh()
Make sure a refresh gets done on the next idle event if it hasn't already.
std::mutex m_refreshMutex
Blocks multiple calls to the draw.
virtual bool SwitchBackend(GAL_TYPE aGalType)
Switch method of rendering graphics.
void StartDrawing()
Begin drawing if it was stopped previously.
wxLongLong m_lastRepaintEnd
Timestamp of the last repaint end.
bool DoRePaint(bool aAllowSkip=true)
Repaint the canvas, and fix scrollbar cursors.
void OnEvent(wxEvent &aEvent)
Used to forward events to the canvas from popups, etc.
bool m_drawingEnabled
Flag that determines if VIEW may use GAL for redrawing the screen.
std::shared_ptr< KIGFX::VIEW_OVERLAY > DebugOverlay()
Create an overlay for rendering debug graphics.
void onShowEvent(wxShowEvent &aEvent)
static constexpr bool GAL_FALLBACK_AVAILABLE
GAL_TYPE m_backend
Currently used GAL.
VECTOR2D m_lastCursorPosition
Last cursor position sent to GAL for drawing.
EDA_DRAW_FRAME * GetParentEDAFrame() const
Returns parent EDA_DRAW_FRAME, if available or NULL otherwise.
Abstract interface for drawing on a 2D-surface.
OpenGL implementation of the Graphics Abstraction Layer.
Definition opengl_gal.h:73
static wxString CheckFeatures(GAL_DISPLAY_OPTIONS &aOptions)
Checks OpenGL features.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
void ClearHighContrastLayers()
Clear the list of active layers.
virtual const COLOR4D & GetGridColor()=0
Return current grid color settings.
virtual const COLOR4D & GetBackgroundColor() const =0
Return current background color settings.
void SetLayerIsHighContrast(int aLayerId, bool aEnabled=true)
Set the specified layer as high-contrast.
virtual const COLOR4D & GetCursorColor()=0
Return current cursor color settings.
const VECTOR2D & GetCenter() const
Return the center point of this VIEW (in world space coordinates).
Definition view.h:355
static const wxEventType EVT_REFRESH_MOUSE
Event that forces mouse move event in the dispatcher (eg.
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition pgm_base.cpp:541
A small class to help profiling.
Definition profile.h:50
void Stop()
Save the time when this function was called, and set the counter stane to stop.
Definition profile.h:90
void Start()
Start or restart the counter.
Definition profile.h:78
std::string to_string()
Definition profile.h:157
RAII class that sets an value at construction and resets it to the original value at destruction.
A modified version of the wxInfoBar class that allows us to:
Definition wx_infobar.h:77
bool IsLocked()
Returns true if the infobar is being updated.
Definition wx_infobar.h:207
void DisplayInfoMessage(wxWindow *aParent, const wxString &aMessage, const wxString &aExtraInfo)
Display an informational message box with aMessage.
Definition confirm.cpp:249
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
Definition confirm.cpp:221
This file is part of the common library.
KICURSOR
Definition cursors.h:44
@ ARROW
Definition cursors.h:46
#define _(s)
static const wxChar traceDrawPanel[]
Flag to enable drawing panel debugging output.
const wxChar *const traceGalProfile
Flag to enable debug output of GAL performance profiling.
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
Definition macros.h:83
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
Definition definitions.h:38
@ TARGET_CACHED
Main rendering target (cached)
Definition definitions.h:37
@ TARGET_OVERLAY
Items that may change while the view stays the same (noncached)
Definition definitions.h:39
void SetOverlayScrolling(const wxWindow *aWindow, bool overlay)
Used to set overlay/non-overlay scrolling mode in a window.
Definition wxgtk/ui.cpp:288
void ImmControl(wxWindow *aWindow, bool aEnable)
Configures the IME mode of a given control handle.
Definition wxgtk/ui.cpp:405
void ImeNotifyCancelComposition(wxWindow *aWindow)
Asks the IME to cancel.
Definition wxgtk/ui.cpp:410
bool IsWindowActive(wxWindow *aWindow)
Check to see if the given window is the currently active window (e.g.
Definition wxgtk/ui.cpp:147
KICOMMON_API bool IsInputControlFocused(wxWindow *aFocus=nullptr)
Check if a input control has focus.
KICOMMON_API bool IsModalDialogFocused()
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
MOUSE_DRAG_ACTION drag_right
MOUSE_DRAG_ACTION drag_middle
MOUSE_DRAG_ACTION drag_left
Structure to keep VIEW_CONTROLS settings for easy store/restore operations.
MOUSE_DRAG_ACTION m_dragLeft
bool m_horizontalPan
Enable horizontal panning with the horizontal scroll/trackpad input.
bool m_scrollReversePanH
Whether to invert the scroll wheel movement for horizontal pan.
bool m_autoPanSettingEnabled
Flag for turning on autopanning.
bool m_focusFollowSchPcb
Flag for automatic focus switching between Schematic and PCB editors.
float m_autoPanAcceleration
How fast does panning accelerate when approaching the window boundary.
MOUSE_DRAG_ACTION m_dragMiddle
int m_zoomSpeed
Zoom speed for the non-accelerating zoom controller.
int m_scrollModifierZoom
What modifier key to enable zoom with the (vertical) scroll wheel.
int m_scrollModifierPanH
What modifier key to enable horizontal pan with the (vertical) scroll wheel.
bool m_warpCursor
If the cursor is allowed to be warped.
MOUSE_DRAG_ACTION m_dragRight
bool m_scrollReverseZoom
Whether to invert the scroll wheel movement for zoom.
int m_motionPanModifier
What modifier key pans the view when the mouse moves with it held.
bool m_zoomAcceleration
Enable the accelerating zoom controller.
bool m_zoomSpeedAuto
When true, ignore zoom_speed and pick a platform-specific default.
int m_scrollModifierPanV
What modifier key to enable vertical with the (vertical) scroll wheel.
wxString result
Test unit parsing edge cases and error handling.
int delta
wxLogTrace helper definitions.
VECTOR2< double > VECTOR2D
Definition vector2d.h:686
VECTOR2I ToVECTOR2I(const wxSize &aSize)
Definition vector2wx.h:30
WX_VIEW_CONTROLS class definition.