KiCad PCB EDA Suite
wx_view_controls.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) 2012 Torsten Hueter, torstenhtr <at> gmx.de
5 * Copyright (C) 2013-2015 CERN
6 * Copyright (C) 2012-2022 KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * @author Tomasz Wlostowski <[email protected]>
9 * @author Maciej Suminski <[email protected]>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, you may find one here:
23 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
24 * or you may search the http://www.gnu.org website for the version 2 license,
25 * or you may write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
27 */
28
29#include <pgm_base.h>
30#include <profile.h>
31#include <view/view.h>
36#include <trace_helpers.h>
38#include <math/util.h> // for KiROUND
40#include <widgets/ui_common.h>
42#include <eda_draw_frame.h>
43#include <kiway.h>
44#include <kiplatform/ui.h>
45#include <wx/log.h>
46
47#ifdef __WXMSW__
48 #define USE_MOUSE_CAPTURE
49#endif
50
51using namespace KIGFX;
52
53const wxEventType WX_VIEW_CONTROLS::EVT_REFRESH_MOUSE = wxNewEventType();
54
55
56static std::unique_ptr<ZOOM_CONTROLLER> GetZoomControllerForPlatform( bool aAcceleration )
57{
58#ifdef __WXMAC__
59 // On Apple pointer devices, wheel events occur frequently and with
60 // smaller rotation values. For those devices, let's handle zoom
61 // based on the rotation amount rather than the time difference.
62 return std::make_unique<CONSTANT_ZOOM_CONTROLLER>( CONSTANT_ZOOM_CONTROLLER::MAC_SCALE );
63#elif __WXGTK3__
64 // GTK3 is similar, but the scale constant is smaller
65 return std::make_unique<CONSTANT_ZOOM_CONTROLLER>( CONSTANT_ZOOM_CONTROLLER::GTK3_SCALE );
66#else
67 if( aAcceleration )
68 return std::make_unique<ACCELERATING_ZOOM_CONTROLLER>();
69 else
70 return std::make_unique<CONSTANT_ZOOM_CONTROLLER>( CONSTANT_ZOOM_CONTROLLER::MSW_SCALE );
71#endif
72}
73
74
75WX_VIEW_CONTROLS::WX_VIEW_CONTROLS( VIEW* aView, EDA_DRAW_PANEL_GAL* aParentPanel ) :
76 VIEW_CONTROLS( aView ),
77 m_state( IDLE ),
78 m_parentPanel( aParentPanel ),
79 m_scrollScale( 1.0, 1.0 ),
80#ifdef __WXGTK3__
81 m_lastTimestamp( 0 ),
82#endif
83 m_cursorPos( 0, 0 ),
84 m_updateCursor( true )
85{
87
88 m_MotionEventCounter = std::make_unique<PROF_COUNTER>( "Mouse motion events" );
89
90 m_parentPanel->Connect( wxEVT_MOTION,
91 wxMouseEventHandler( WX_VIEW_CONTROLS::onMotion ), nullptr, this );
92#if wxCHECK_VERSION( 3, 1, 0 ) || defined( USE_OSX_MAGNIFY_EVENT )
93 m_parentPanel->Connect( wxEVT_MAGNIFY,
94 wxMouseEventHandler( WX_VIEW_CONTROLS::onMagnify ), nullptr, this );
95#endif
96 m_parentPanel->Connect( wxEVT_MOUSEWHEEL,
97 wxMouseEventHandler( WX_VIEW_CONTROLS::onWheel ), nullptr, this );
98 m_parentPanel->Connect( wxEVT_MIDDLE_UP,
99 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
100 m_parentPanel->Connect( wxEVT_MIDDLE_DOWN,
101 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
102 m_parentPanel->Connect( wxEVT_LEFT_UP,
103 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
104 m_parentPanel->Connect( wxEVT_LEFT_DOWN,
105 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
106 m_parentPanel->Connect( wxEVT_RIGHT_UP,
107 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
108 m_parentPanel->Connect( wxEVT_RIGHT_DOWN,
109 wxMouseEventHandler( WX_VIEW_CONTROLS::onButton ), nullptr, this );
110#if defined __WXMSW__
111 m_parentPanel->Connect( wxEVT_ENTER_WINDOW,
112 wxMouseEventHandler( WX_VIEW_CONTROLS::onEnter ), nullptr, this );
113#endif
114 m_parentPanel->Connect( wxEVT_LEAVE_WINDOW,
115 wxMouseEventHandler( WX_VIEW_CONTROLS::onLeave ), nullptr, this );
116 m_parentPanel->Connect( wxEVT_SCROLLWIN_THUMBTRACK,
117 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
118 m_parentPanel->Connect( wxEVT_SCROLLWIN_PAGEUP,
119 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
120 m_parentPanel->Connect( wxEVT_SCROLLWIN_PAGEDOWN,
121 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
122
123 m_parentPanel->Connect( wxEVT_SCROLLWIN_BOTTOM,
124 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
125 m_parentPanel->Connect( wxEVT_SCROLLWIN_TOP,
126 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
127 m_parentPanel->Connect( wxEVT_SCROLLWIN_LINEUP,
128 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
129 m_parentPanel->Connect( wxEVT_SCROLLWIN_LINEDOWN,
130 wxScrollWinEventHandler( WX_VIEW_CONTROLS::onScroll ), nullptr, this );
131#if defined USE_MOUSE_CAPTURE
132 m_parentPanel->Connect( wxEVT_MOUSE_CAPTURE_LOST,
133 wxMouseEventHandler( WX_VIEW_CONTROLS::onCaptureLost ), nullptr, this );
134#endif
135
136 m_cursorWarped = false;
137
138 m_panTimer.SetOwner( this );
139 this->Connect( wxEVT_TIMER, wxTimerEventHandler( WX_VIEW_CONTROLS::onTimer ), nullptr, this );
140
144}
145
146
148{
149#if defined USE_MOUSE_CAPTURE
150 if( m_parentPanel->HasCapture() )
151 m_parentPanel->ReleaseMouse();
152#endif
153}
154
155
157{
158 COMMON_SETTINGS* cfg = Pgm().GetCommonSettings();
159
174
175 m_zoomController.reset();
176
177 if( cfg->m_Input.zoom_speed_auto )
178 {
180 }
181 else
182 {
183 if( cfg->m_Input.zoom_acceleration )
184 {
186 std::make_unique<ACCELERATING_ZOOM_CONTROLLER>( cfg->m_Input.zoom_speed );
187 }
188 else
189 {
191
192 m_zoomController = std::make_unique<CONSTANT_ZOOM_CONTROLLER>( scale );
193 }
194 }
195}
196
197
198void WX_VIEW_CONTROLS::onMotion( wxMouseEvent& aEvent )
199{
200 ( *m_MotionEventCounter )++;
201
202 bool isAutoPanning = false;
203 int x = aEvent.GetX();
204 int y = aEvent.GetY();
205 VECTOR2D mousePos( x, y );
206
207 // Automatic focus switching between SCH and PCB windows on canvas mouse motion
209 {
211 {
212 KIWAY_PLAYER* otherFrame = nullptr;
213
214 if( frame->IsType( FRAME_PCB_EDITOR ) )
215 {
216 otherFrame = frame->Kiway().Player( FRAME_SCH, false );
217 }
218 else if( frame->IsType( FRAME_SCH ) )
219 {
220 otherFrame = frame->Kiway().Player( FRAME_PCB_EDITOR, false );
221 }
222
223 if( otherFrame && KIPLATFORM::UI::IsWindowActive( otherFrame )
224 && !KIPLATFORM::UI::IsWindowActive( frame ) )
225 {
226 frame->Raise();
227 }
228 }
229 }
230
232 handleCursorCapture( x, y );
233
235 isAutoPanning = handleAutoPanning( aEvent );
236
237 if( !isAutoPanning && aEvent.Dragging() )
238 {
239 if( m_state == DRAG_PANNING )
240 {
241 static bool justWarped = false;
242 int warpX = 0;
243 int warpY = 0;
244 wxSize parentSize = m_parentPanel->GetClientSize();
245
246 if( x < 0 )
247 {
248 warpX = parentSize.x;
249 }
250 else if(x >= parentSize.x )
251 {
252 warpX = -parentSize.x;
253 }
254
255 if( y < 0 )
256 {
257 warpY = parentSize.y;
258 }
259 else if( y >= parentSize.y )
260 {
261 warpY = -parentSize.y;
262 }
263
264 if( !justWarped )
265 {
266 VECTOR2D d = m_dragStartPoint - mousePos;
267 m_dragStartPoint = mousePos;
268 VECTOR2D delta = m_view->ToWorld( d, false );
270 aEvent.StopPropagation();
271 }
272
273 if( warpX || warpY )
274 {
275 if( !justWarped )
276 {
277 KIPLATFORM::UI::WarpPointer( m_parentPanel, x + warpX, y + warpY );
278 m_dragStartPoint += VECTOR2D( warpX, warpY );
279 justWarped = true;
280 }
281 else
282 justWarped = false;
283 }
284 else
285 justWarped = false;
286 }
287 else if( m_state == DRAG_ZOOMING )
288 {
289 static bool justWarped = false;
290 int warpY = 0;
291 wxSize parentSize = m_parentPanel->GetClientSize();
292
293 if( y < 0 )
294 {
295 warpY = parentSize.y;
296 }
297 else if( y >= parentSize.y )
298 {
299 warpY = -parentSize.y;
300 }
301
302 if( !justWarped )
303 {
304 VECTOR2D d = m_dragStartPoint - mousePos;
305 m_dragStartPoint = mousePos;
306
307 double scale = exp( d.y * m_settings.m_zoomSpeed * 0.001 );
308
309 wxLogTrace( traceZoomScroll, wxString::Format( "dy: %f scale: %f", d.y, scale ) );
310
312 aEvent.StopPropagation();
313 }
314
315 if( warpY )
316 {
317 if( !justWarped )
318 {
320 m_dragStartPoint += VECTOR2D( 0, warpY );
321 justWarped = true;
322 }
323 else
324 justWarped = false;
325 }
326 else
327 justWarped = false;
328 }
329 }
330
331 if( m_updateCursor ) // do not update the cursor position if it was explicitly set
332 m_cursorPos = GetClampedCoords( m_view->ToWorld( mousePos ) );
333 else
334 m_updateCursor = true;
335
336 aEvent.Skip();
337}
338
339
340void WX_VIEW_CONTROLS::onWheel( wxMouseEvent& aEvent )
341{
342#ifdef __WXGTK3__
343 if( aEvent.GetTimestamp() == m_lastTimestamp )
344 {
345 aEvent.Skip( false );
346 return;
347 }
348
349 m_lastTimestamp = aEvent.GetTimestamp();
350#endif
351
352 const double wheelPanSpeed = 0.001;
353 const int axis = aEvent.GetWheelAxis();
354
355 if( axis == wxMOUSE_WHEEL_HORIZONTAL && !m_settings.m_horizontalPan )
356 return;
357
358 // Pick the modifier, if any. Shift beats control beats alt, we don't support more than one.
359 int modifiers =
360 aEvent.ShiftDown() ? WXK_SHIFT :
361 ( aEvent.ControlDown() ? WXK_CONTROL : ( aEvent.AltDown() ? WXK_ALT : 0 ) );
362
363 // Restrict zoom handling to the vertical axis, otherwise horizontal
364 // scrolling events (e.g. touchpads and some mice) end up interpreted
365 // as vertical scroll events and confuse the user.
366 if( axis == wxMOUSE_WHEEL_VERTICAL && modifiers == m_settings.m_scrollModifierZoom )
367 {
368 const int rotation = aEvent.GetWheelRotation();
369 const double zoomScale = m_zoomController->GetScaleForRotation( rotation );
370
372 {
374 m_view->SetScale( m_view->GetScale() * zoomScale );
375 }
376 else
377 {
378 const VECTOR2D anchor = m_view->ToWorld( VECTOR2D( aEvent.GetX(), aEvent.GetY() ) );
379 m_view->SetScale( m_view->GetScale() * zoomScale, anchor );
380 }
381
382 // Refresh the zoom level and mouse position on message panel
383 // (mouse position has not changed, only the zoom level has changed):
384 refreshMouse( true );
385 }
386 else
387 {
388 // Scrolling
389 VECTOR2D scrollVec = m_view->ToWorld( m_view->GetScreenPixelSize(), false ) *
390 ( (double) aEvent.GetWheelRotation() * wheelPanSpeed );
391 double scrollX = 0.0;
392 double scrollY = 0.0;
393
394 if( axis == wxMOUSE_WHEEL_HORIZONTAL || modifiers == m_settings.m_scrollModifierPanH )
395 scrollX = scrollVec.x;
396 else
397 scrollY = -scrollVec.y;
398
399 VECTOR2D delta( scrollX, scrollY );
400
402 refreshMouse( true );
403 }
404
405 // Do not skip this event, otherwise wxWidgets will fire
406 // 3 wxEVT_SCROLLWIN_LINEUP or wxEVT_SCROLLWIN_LINEDOWN (normal wxWidgets behavior)
407 // and we do not want that.
409}
410
411
412#if wxCHECK_VERSION( 3, 1, 0 ) || defined( USE_OSX_MAGNIFY_EVENT )
413void WX_VIEW_CONTROLS::onMagnify( wxMouseEvent& aEvent )
414{
415 // Scale based on the magnification from our underlying magnification event.
416 VECTOR2D anchor = m_view->ToWorld( VECTOR2D( aEvent.GetX(), aEvent.GetY() ) );
417 m_view->SetScale( m_view->GetScale() * ( aEvent.GetMagnification() + 1.0f ), anchor );
418
419 aEvent.Skip();
420}
421#endif
422
423
425{
426 m_state = aNewState;
427}
428
429void WX_VIEW_CONTROLS::onButton( wxMouseEvent& aEvent )
430{
431 switch( m_state )
432 {
433 case IDLE:
434 case AUTO_PANNING:
435 if( ( aEvent.MiddleDown() && m_settings.m_dragMiddle == MOUSE_DRAG_ACTION::PAN ) ||
436 ( aEvent.RightDown() && m_settings.m_dragRight == MOUSE_DRAG_ACTION::PAN ) )
437 {
438 m_dragStartPoint = VECTOR2D( aEvent.GetX(), aEvent.GetY() );
440
441#if defined USE_MOUSE_CAPTURE
442 if( !m_parentPanel->HasCapture() )
443 m_parentPanel->CaptureMouse();
444#endif
445 }
446 else if( ( aEvent.MiddleDown() && m_settings.m_dragMiddle == MOUSE_DRAG_ACTION::ZOOM ) ||
447 ( aEvent.RightDown() && m_settings.m_dragRight == MOUSE_DRAG_ACTION::ZOOM ) )
448 {
449 m_dragStartPoint = VECTOR2D( aEvent.GetX(), aEvent.GetY() );
452
453#if defined USE_MOUSE_CAPTURE
454 if( !m_parentPanel->HasCapture() )
455 m_parentPanel->CaptureMouse();
456#endif
457 }
458
459 if( aEvent.LeftUp() )
460 setState( IDLE ); // Stop autopanning when user release left mouse button
461
462 break;
463
464 case DRAG_ZOOMING:
465 case DRAG_PANNING:
466 if( aEvent.MiddleUp() || aEvent.LeftUp() || aEvent.RightUp() )
467 {
468 setState( IDLE );
469
470#if defined USE_MOUSE_CAPTURE
471 if( !m_settings.m_cursorCaptured && m_parentPanel->HasCapture() )
472 m_parentPanel->ReleaseMouse();
473#endif
474 }
475
476 break;
477 }
478
479 aEvent.Skip();
480}
481
482
483void WX_VIEW_CONTROLS::onEnter( wxMouseEvent& aEvent )
484{
485 // Avoid stealing focus from text controls
486 // This is particularly important for users using On-Screen-Keyboards
487 // They may move the mouse over the canvas to reach the keyboard
489 {
490 return;
491 }
492
493#if defined( _WIN32 ) || defined( __WXGTK__ )
494 // Win32 and some *nix WMs transmit mouse move and wheel events to all controls below the mouse regardless
495 // of focus. Forcing the focus here will cause the EDA FRAMES to immediately become the
496 // top level active window.
497 if( m_parentPanel->GetParent() != nullptr )
498 {
499 // this assumes the parent panel's parent is the eda window
501 {
503 }
504 }
505#else
507#endif
508}
509
510
511void WX_VIEW_CONTROLS::onLeave( wxMouseEvent& aEvent )
512{
513#if !defined USE_MOUSE_CAPTURE
514 onMotion( aEvent );
515#endif
516}
517
518void WX_VIEW_CONTROLS::onCaptureLost( wxMouseEvent& aEvent )
519{
520 // This method must be present to suppress the capture-lost assertion
521
522 // Set the flag to allow calling m_parentPanel->CaptureMouse()
523 // Note: One cannot call m_parentPanel->CaptureMouse() twice, this is not accepted
524 // by wxWidgets (MSW specific) so we need this guard
526}
527
528
529void WX_VIEW_CONTROLS::onTimer( wxTimerEvent& aEvent )
530{
531 switch( m_state )
532 {
533 case AUTO_PANNING:
534 {
536 {
537 setState( IDLE );
538 return;
539 }
540
541 #ifdef __WXMSW__
542 // Hackfix: It's possible for the mouse to leave the canvas
543 // without triggering any leave events on windows
544 // Use a MSW only wx function
545 if( !m_parentPanel->IsMouseInWindow() )
546 {
547 m_panTimer.Stop();
548 setState( IDLE );
549 return;
550 }
551 #endif
552
553 if( !m_parentPanel->HasFocus() && !m_parentPanel->StatusPopupHasFocus() )
554 {
555 setState( IDLE );
556 return;
557 }
558
559 double borderSize = std::min( m_settings.m_autoPanMargin * m_view->GetScreenPixelSize().x,
561
562 // When the mouse cursor is outside the area with no pan,
563 // m_panDirection is the dist to this area limit ( in pixels )
564 // It will be used also as pan value (the pan speed depends on this dist).
566
567 // When the mouse cursor is outside the area with no pan, the pan value
568 // is accelerated depending on the dist between the area and the cursor
569 float accel = 0.5f + ( m_settings.m_autoPanAcceleration / 5.0f );
570
571 // For a small mouse cursor dist to area, just use the distance.
572 // But for a dist > borderSize / 2, use an accelerated pan value
573
574 if( dir.EuclideanNorm() >= borderSize ) // far from area limits
575 dir = dir.Resize( borderSize * accel );
576 else if( dir.EuclideanNorm() > borderSize / 2 ) // Near from area limits
577 dir = dir.Resize( borderSize );
578
579 dir = m_view->ToWorld( dir, false );
580 m_view->SetCenter( m_view->GetCenter() + dir );
581
582 refreshMouse( true );
583
584 m_panTimer.Start();
585 }
586 break;
587
588 case IDLE: // Just remove unnecessary warnings
589 case DRAG_PANNING:
590 case DRAG_ZOOMING:
591 break;
592 }
593}
594
595
596void WX_VIEW_CONTROLS::onScroll( wxScrollWinEvent& aEvent )
597{
598 const double linePanDelta = 0.05;
599 const double pagePanDelta = 0.5;
600
601 int type = aEvent.GetEventType();
602 int dir = aEvent.GetOrientation();
603
604 if( type == wxEVT_SCROLLWIN_THUMBTRACK )
605 {
606 auto center = m_view->GetCenter();
607 const auto& boundary = m_view->GetBoundary();
608
609 // Flip scroll direction in flipped view
610 const double xstart = ( m_view->IsMirroredX() ?
611 boundary.GetRight() : boundary.GetLeft() );
612 const double xdelta = ( m_view->IsMirroredX() ? -1 : 1 );
613
614 if( dir == wxHORIZONTAL )
615 center.x = xstart + xdelta * ( aEvent.GetPosition() / m_scrollScale.x );
616 else
617 center.y = boundary.GetTop() + aEvent.GetPosition() / m_scrollScale.y;
618
619 m_view->SetCenter( center );
620 }
621 else
622 {
623 double dist = 0;
624
625 if( type == wxEVT_SCROLLWIN_PAGEUP )
626 dist = pagePanDelta;
627 else if( type == wxEVT_SCROLLWIN_PAGEDOWN )
628 dist = -pagePanDelta;
629 else if( type == wxEVT_SCROLLWIN_LINEUP )
630 dist = linePanDelta;
631 else if( type == wxEVT_SCROLLWIN_LINEDOWN )
632 dist = -linePanDelta;
633 else
634 wxCHECK_MSG( false, /* void */, wxT( "Unhandled event type" ) );
635
636 VECTOR2D scroll = m_view->ToWorld( m_view->GetScreenPixelSize(), false ) * dist;
637
638 double scrollX = 0.0;
639 double scrollY = 0.0;
640
641 if ( dir == wxHORIZONTAL )
642 scrollX = -scroll.x;
643 else
644 scrollY = -scroll.y;
645
646 VECTOR2D delta( scrollX, scrollY );
647
649 }
650
652}
653
654
656{
657#if defined USE_MOUSE_CAPTURE
658 // Note: for some reason, m_parentPanel->HasCapture() can be false even if CaptureMouse()
659 // was called (i.e. mouse was captured, so when need to test m_MouseCapturedLost to be
660 // sure a wxEVT_MOUSE_CAPTURE_LOST event was fired before. Otherwise wxMSW complains
661 if( aEnabled && !m_parentPanel->HasCapture() && m_parentPanel->m_MouseCapturedLost )
662 {
663 m_parentPanel->CaptureMouse();
664
665 // Clear the flag to allow calling m_parentPanel->CaptureMouse()
666 // Calling it without calling ReleaseMouse() is not accepted by wxWidgets (MSW specific)
668 }
669 else if( !aEnabled && m_parentPanel->HasCapture()
671 {
672 m_parentPanel->ReleaseMouse();
673
674 // Mouse is released, calling CaptureMouse() is allowed now:
676 }
677#endif
679}
680
681
683{
685 {
686 setState( IDLE );
687#if defined USE_MOUSE_CAPTURE
688 if( !m_settings.m_cursorCaptured && m_parentPanel->HasCapture() )
689 m_parentPanel->ReleaseMouse();
690#endif
691 }
692}
693
694
695VECTOR2D WX_VIEW_CONTROLS::GetMousePosition( bool aWorldCoordinates ) const
696{
697 wxPoint msp = getMouseScreenPosition();
698 VECTOR2D screenPos( msp.x, msp.y );
699
700 return aWorldCoordinates ? GetClampedCoords( m_view->ToWorld( screenPos ) ) : screenPos;
701}
702
703
705{
706 GAL* gal = m_view->GetGAL();
707
708 if( aEnableSnapping && gal->GetGridSnapping() )
709 {
710 return gal->GetGridPoint( m_cursorPos );
711 }
712 else
713 {
714 return m_cursorPos;
715 }
716}
717
718
720{
722 {
724 }
725 else
726 {
727 return GetClampedCoords( GetRawCursorPosition( aEnableSnapping ) );
728 }
729}
730
731
732void WX_VIEW_CONTROLS::SetCursorPosition( const VECTOR2D& aPosition, bool aWarpView,
733 bool aTriggeredByArrows, long aArrowCommand )
734{
735 m_updateCursor = false;
736
737 VECTOR2D clampedPosition = GetClampedCoords( aPosition );
738
739 if( aTriggeredByArrows )
740 {
744 m_cursorWarped = false;
745 }
746 else
747 {
751 m_cursorWarped = true;
752 }
753
754 WarpMouseCursor( clampedPosition, true, aWarpView );
755 m_cursorPos = clampedPosition;
756}
757
758
760 bool aWarpView = true )
761{
762 m_updateCursor = false;
763
764 VECTOR2D clampedPosition = GetClampedCoords( aPosition );
765
766 const VECTOR2I& screenSize = m_view->GetGAL()->GetScreenPixelSize();
767 BOX2I screen( VECTOR2I( 0, 0 ), screenSize );
768 VECTOR2D screenPos = m_view->ToScreen( clampedPosition );
769
770 if( aWarpView && !screen.Contains( screenPos ) )
771 m_view->SetCenter( clampedPosition );
772
773 m_cursorPos = clampedPosition;
774}
775
776
777void WX_VIEW_CONTROLS::WarpMouseCursor( const VECTOR2D& aPosition, bool aWorldCoordinates,
778 bool aWarpView )
779{
780 if( aWorldCoordinates )
781 {
782 const VECTOR2I& screenSize = m_view->GetGAL()->GetScreenPixelSize();
783 BOX2I screen( VECTOR2I( 0, 0 ), screenSize );
784 VECTOR2D clampedPosition = GetClampedCoords( aPosition );
785 VECTOR2D screenPos = m_view->ToScreen( clampedPosition );
786
787 if( !screen.Contains( screenPos ) )
788 {
789 if( aWarpView )
790 {
791 m_view->SetCenter( clampedPosition );
792 KIPLATFORM::UI::WarpPointer( m_parentPanel, screenSize.x / 2, screenSize.y / 2 );
793 }
794 }
795 else
796 {
797 KIPLATFORM::UI::WarpPointer( m_parentPanel, screenPos.x, screenPos.y );
798 }
799 }
800 else
801 {
802 KIPLATFORM::UI::WarpPointer( m_parentPanel, aPosition.x, aPosition.y );
803 }
804
805 // If we are not refreshing because of mouse movement, don't set the modifiers
806 // because we are refreshing for keyboard movement, which uses the same modifiers for other actions
808}
809
810
812{
813 const VECTOR2I& screenSize = m_view->GetGAL()->GetScreenPixelSize();
814 VECTOR2I screenCenter( screenSize / 2 );
815
816 if( GetMousePosition( false ) != screenCenter )
817 {
819 m_dragStartPoint = screenCenter;
820 KIPLATFORM::UI::WarpPointer( m_parentPanel, screenCenter.x, screenCenter.y );
821 }
822}
823
824
826{
827 int border = std::min( m_settings.m_autoPanMargin * m_view->GetScreenPixelSize().x,
829 border += 2;
830
831 VECTOR2D topLeft( border, border );
832 VECTOR2D botRight( m_view->GetScreenPixelSize().x - border,
833 m_view->GetScreenPixelSize().y - border );
834
835 topLeft = m_view->ToWorld( topLeft );
836 botRight = m_view->ToWorld( botRight );
837
838 VECTOR2D pos = GetMousePosition( true );
839
840 if( pos.x < topLeft.x )
841 pos.x = topLeft.x;
842 else if( pos.x > botRight.x )
843 pos.x = botRight.x;
844
845 if( pos.y < topLeft.y )
846 pos.y = topLeft.y;
847 else if( pos.y > botRight.y )
848 pos.y = botRight.y;
849
850 SetCursorPosition( pos, false, false, 0 );
851
852 if( aWarpMouseCursor )
853 WarpMouseCursor( pos, true );
854}
855
856
857bool WX_VIEW_CONTROLS::handleAutoPanning( const wxMouseEvent& aEvent )
858{
859 VECTOR2I p( aEvent.GetX(), aEvent.GetY() );
861
863 {
864 // last cursor move event came from keyboard cursor control. If auto-panning is enabled
865 // and the next position is inside the autopan zone, check if it really came from a mouse
866 // event, otherwise disable autopan temporarily. Also temporarily disable autopan if the
867 // cursor is in the autopan zone because the application warped the cursor.
868
869 m_cursorWarped = false;
870 return true;
871 }
872
873 m_cursorWarped = false;
874
875 // Compute areas where autopanning is active
876 int borderStart = std::min( m_settings.m_autoPanMargin * m_view->GetScreenPixelSize().x,
878 borderStart = std::max( borderStart, 2 );
879 int borderEndX = m_view->GetScreenPixelSize().x - borderStart;
880 int borderEndY = m_view->GetScreenPixelSize().y - borderStart;
881
882 if( p.x < borderStart )
883 m_panDirection.x = -( borderStart - p.x );
884 else if( p.x > borderEndX )
885 m_panDirection.x = ( p.x - borderEndX );
886 else
887 m_panDirection.x = 0;
888
889 if( p.y < borderStart )
890 m_panDirection.y = -( borderStart - p.y );
891 else if( p.y > borderEndY )
892 m_panDirection.y = ( p.y - borderEndY );
893 else
894 m_panDirection.y = 0;
895
896 bool borderHit = ( m_panDirection.x != 0 || m_panDirection.y != 0 );
897
898 switch( m_state )
899 {
900 case AUTO_PANNING:
901 if( !borderHit )
902 {
903 m_panTimer.Stop();
904 setState( IDLE );
905
906 return false;
907 }
908
909 return true;
910
911 case IDLE:
912 if( borderHit )
913 {
915 m_panTimer.Start( (int) ( 250.0 / 60.0 ), true );
916
917 return true;
918 }
919
920 return false;
921
922 case DRAG_PANNING:
923 case DRAG_ZOOMING:
924 return false;
925 }
926
927 wxCHECK_MSG( false, false, wxT( "This line should never be reached" ) );
928
929 return false;
930}
931
932
934{
936 {
937 bool warp = false;
938 wxSize parentSize = m_parentPanel->GetClientSize();
939
940 if( x < 0 )
941 {
942 x = 0;
943 warp = true;
944 }
945 else if( x >= parentSize.x )
946 {
947 x = parentSize.x - 1;
948 warp = true;
949 }
950
951 if( y < 0 )
952 {
953 y = 0;
954 warp = true;
955 }
956 else if( y >= parentSize.y )
957 {
958 y = parentSize.y - 1;
959 warp = true;
960 }
961
962 if( warp )
964 }
965}
966
967
968void WX_VIEW_CONTROLS::refreshMouse( bool aSetModifiers )
969{
970 // Notify tools that the cursor position has changed in the world coordinates
971 wxMouseEvent moveEvent( EVT_REFRESH_MOUSE );
972 wxPoint msp = getMouseScreenPosition();
973 moveEvent.SetX( msp.x );
974 moveEvent.SetY( msp.y );
975
976 if( aSetModifiers )
977 {
978 // Set the modifiers state
979 moveEvent.SetControlDown( wxGetKeyState( WXK_CONTROL ) );
980 moveEvent.SetShiftDown( wxGetKeyState( WXK_SHIFT ) );
981 moveEvent.SetAltDown( wxGetKeyState( WXK_ALT ) );
982 }
983
984 m_cursorPos = GetClampedCoords( m_view->ToWorld( VECTOR2D( msp.x, msp.y ) ) );
985 wxPostEvent( m_parentPanel, moveEvent );
986}
987
988
990{
991 wxPoint msp = wxGetMousePosition();
992 m_parentPanel->ScreenToClient( &msp.x, &msp.y );
993 return msp;
994}
995
996
998{
999 const BOX2D viewport = m_view->GetViewport();
1000 const BOX2D& boundary = m_view->GetBoundary();
1001
1002 m_scrollScale.x = 2e3 / viewport.GetWidth(); // TODO it does not have to be updated so often
1003 m_scrollScale.y = 2e3 / viewport.GetHeight();
1004 VECTOR2I newScroll( ( viewport.Centre().x - boundary.GetLeft() ) * m_scrollScale.x,
1005 ( viewport.Centre().y - boundary.GetTop() ) * m_scrollScale.y );
1006
1007 // We add the width of the scroll bar thumb to the range because the scroll range is given by
1008 // the full bar while the position is given by the left/top position of the thumb
1009 VECTOR2I newRange( m_scrollScale.x * boundary.GetWidth() +
1010 m_parentPanel->GetScrollThumb( wxSB_HORIZONTAL ),
1011 m_scrollScale.y * boundary.GetHeight() +
1012 m_parentPanel->GetScrollThumb( wxSB_VERTICAL ) );
1013
1014 // Flip scroll direction in flipped view
1015 if( m_view->IsMirroredX() )
1016 newScroll.x = ( boundary.GetRight() - viewport.Centre().x ) * m_scrollScale.x;
1017
1018 // Adjust scrollbars only if it is needed. Otherwise there are cases when canvas is continuously
1019 // refreshed (Windows)
1020 if( m_scrollPos != newScroll || newRange.x != m_parentPanel->GetScrollRange( wxSB_HORIZONTAL )
1021 || newRange.y != m_parentPanel->GetScrollRange( wxSB_VERTICAL ) )
1022 {
1023 m_parentPanel->SetScrollbars( 1, 1, newRange.x, newRange.y, newScroll.x, newScroll.y,
1024 true );
1025 m_scrollPos = newScroll;
1026
1027#if !defined( __APPLE__ ) && !defined( WIN32 )
1028 // Trigger a mouse refresh to get the canvas update in GTK (re-draws the scrollbars).
1029 // Note that this causes an infinite loop on OSX and Windows (in certain cases) as it
1030 // generates a paint event.
1031 refreshMouse( false );
1032#endif
1033 }
1034}
1035
1036void WX_VIEW_CONTROLS::ForceCursorPosition( bool aEnabled, const VECTOR2D& aPosition )
1037{
1038 VECTOR2D clampedPosition = GetClampedCoords( aPosition );
1039
1041 m_settings.m_forcedPosition = clampedPosition;
1042}
coord_type GetTop() const
Definition: box2.h:194
coord_type GetHeight() const
Definition: box2.h:188
coord_type GetWidth() const
Definition: box2.h:187
bool Contains(const Vec &aPoint) const
Definition: box2.h:141
Vec Centre() const
Definition: box2.h:70
coord_type GetRight() const
Definition: box2.h:189
coord_type GetLeft() const
Definition: box2.h:193
The base class for create windows for drawing purpose.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
Update the board display after modifying it by a python script (note: it is automatically called by a...
bool m_MouseCapturedLost
used on wxMSW: true after a wxEVT_MOUSE_CAPTURE_LOST was received false after the mouse is recaptured...
void SetFocus() override
EDA_DRAW_FRAME * GetParentEDAFrame() const
Returns parent EDA_DRAW_FRAME, if available or NULL otherwise.
static constexpr double MANUAL_SCALE_FACTOR
Abstract interface for drawing on a 2D-surface.
VECTOR2D GetGridPoint(const VECTOR2D &aPoint) const
For a given point it returns the nearest point belonging to the grid in world coordinates.
bool GetGridSnapping() const
const VECTOR2I & GetScreenPixelSize() const
Return GAL canvas size in pixels.
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void CaptureCursor(bool aEnabled)
Force the cursor to stay within the drawing panel area.
bool m_cursorWarped
Current VIEW_CONTROLS settings.
bool IsCursorWarpingEnabled() const
VC_SETTINGS m_settings
VIEW * m_view
< Pointer to controlled VIEW.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:69
double GetScale() const
Definition: view.h:269
BOX2D GetViewport() const
Return the current viewport visible area rectangle.
Definition: view.cpp:511
const VECTOR2D & GetCenter() const
Return the center point of this VIEW (in world space coordinates).
Definition: view.h:339
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
Definition: view.cpp:551
VECTOR2D ToScreen(const VECTOR2D &aCoord, bool aAbsolute=true) const
Convert a world space point/vector to a point/vector in screen space coordinates.
Definition: view.cpp:467
const VECTOR2I & GetScreenPixelSize() const
Return the size of the our rendering area in pixels.
Definition: view.cpp:1166
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
Definition: view.h:195
VECTOR2D ToWorld(const VECTOR2D &aCoord, bool aAbsolute=true) const
Converts a screen space point/vector to a point/vector in world space coordinates.
Definition: view.cpp:448
bool IsMirroredX() const
Return true if view is flipped across the X axis.
Definition: view.h:243
const BOX2D & GetBoundary() const
Definition: view.h:298
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition: view.cpp:577
bool m_updateCursor
A #ZOOM_CONTROLLER that determines zoom steps. This is platform-specific.
void SetCrossHairCursorPosition(const VECTOR2D &aPosition, bool aWarpView) override
void LoadSettings() override
Event that forces mouse move event in the dispatcher (eg.
void setState(STATE aNewState)
Sets the interaction state, simply a internal setter to make it easier to debug changes.
STATE m_state
Panel that is affected by VIEW_CONTROLS.
void CaptureCursor(bool aEnabled) override
Force the cursor to stay within the drawing panel area.
void onScroll(wxScrollWinEvent &aEvent)
wxTimer m_panTimer
Ratio used for scaling world coordinates to scrollbar position.
void onButton(wxMouseEvent &aEvent)
void onEnter(wxMouseEvent &WXUNUSED(aEvent))
void onWheel(wxMouseEvent &aEvent)
Handler functions.
VECTOR2I m_scrollPos
The mouse position when a drag zoom started.
void refreshMouse(bool aSetModifiers)
Send an event to refresh mouse position.
void PinCursorInsideNonAutoscrollArea(bool aWarpMouseCursor) override
Return the current mouse pointer position.
void SetCursorPosition(const VECTOR2D &aPosition, bool warpView, bool aTriggeredByArrows, long aArrowCommand) override
Move the graphic crosshair cursor to the requested position expressed in world coordinates.
VECTOR2D GetMousePosition(bool aWorldCoordinates=true) const override
Return the current mouse pointer position.
void WarpMouseCursor(const VECTOR2D &aPosition, bool aWorldCoordinates=false, bool aWarpView=false) override
Set the viewport center to the current cursor position and warps the cursor to the screen center.
VECTOR2D GetRawCursorPosition(bool aSnappingEnabled=true) const override
Return the current cursor position in world coordinates ignoring the cursorUp position force mode.
VECTOR2D m_scrollScale
Current scrollbar position.
bool handleAutoPanning(const wxMouseEvent &aEvent)
Compute new viewport settings while in autopanning mode.
wxPoint getMouseScreenPosition() const
Get the cursor position in the screen coordinates.
void onTimer(wxTimerEvent &WXUNUSED(aEvent))
std::unique_ptr< ZOOM_CONTROLLER > m_zoomController
STATE
< Possible states for WX_VIEW_CONTROLS.
@ DRAG_PANNING
Panning with mouse button pressed.
@ AUTO_PANNING
Panning on approaching borders of the frame.
@ DRAG_ZOOMING
Zooming with mouse button pressed.
@ IDLE
Nothing is happening.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
void CenterOnCursor() override
Adjusts the scrollbars position to match the current viewport.
VECTOR2D m_cursorPos
Flag deciding whether the cursor position should be calculated using the mouse position.
void onCaptureLost(wxMouseEvent &WXUNUSED(aEvent))
void onMotion(wxMouseEvent &aEvent)
std::unique_ptr< PROF_COUNTER > m_MotionEventCounter
EDA_DRAW_PANEL_GAL * m_parentPanel
Store information about point where dragging has started.
void UpdateScrollbars()
End any mouse drag action still in progress.
void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0)) override
Applies VIEW_CONTROLS settings from the program COMMON_SETTINGS.
void handleCursorCapture(int x, int y)
Limit the cursor position to within the canvas by warping it.
void onLeave(wxMouseEvent &WXUNUSED(aEvent))
VECTOR2D m_zoomStartPoint
Current cursor position (world coordinates).
static const wxEventType EVT_REFRESH_MOUSE
VECTOR2D m_panDirection
Timer responsible for handling autopanning.
VECTOR2D m_dragStartPoint
Current direction of panning (only autopanning mode).
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
Definition: kiway_holder.h:53
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
Definition: kiway_player.h:66
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:394
T EuclideanNorm() const
Compute the Euclidean norm of the vector, which is defined as sqrt(x ** 2 + y ** 2).
Definition: vector2d.h:265
VECTOR2< T > Resize(T aNewLength) const
Return a vector of the same direction, but length specified in aNewLength.
Definition: vector2d.h:350
@ FRAME_PCB_EDITOR
Definition: frame_type.h:40
@ FRAME_SCH
Definition: frame_type.h:34
a few functions useful in geometry calculations.
VECTOR2< ret_type > GetClampedCoords(const VECTOR2< in_type > &aCoords, pad_type aPadding=1u)
Clamps a vector to values that can be negated, respecting numeric limits of coordinates data type wit...
const wxChar *const traceZoomScroll
Flag to enable debug output of zoom-scrolling calculations in KIGFX::ZOOM_CONTROLLER and derivatives.
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:246
void WarpPointer(wxWindow *aWindow, int aX, int aY)
Move the mouse cursor to a specific position relative to the window.
Definition: gtk/ui.cpp:157
bool IsWindowActive(wxWindow *aWindow)
Check to see if the given window is the currently active window (e.g.
Definition: gtk/ui.cpp:50
bool IsInputControlFocused(wxWindow *aFocus=nullptr)
Check if a input control has focus.
Definition: ui_common.cpp:265
see class PGM_BASE
void Format(OUTPUTFORMATTER *out, int aNestLevel, int aCtl, const CPTREE &aTree)
Output a PTREE into s-expression format via an OUTPUTFORMATTER derivative.
Definition: ptree.cpp:200
KIWAY Kiway & Pgm(), KFCTL_STANDALONE
The global Program "get" accessor.
Definition: single_top.cpp:111
const int scale
MOUSE_DRAG_ACTION drag_right
MOUSE_DRAG_ACTION drag_middle
MOUSE_DRAG_ACTION drag_left
float m_autoPanMargin
How fast is panning when in auto mode.
Definition: view_controls.h:79
VECTOR2D m_forcedPosition
Is the forced cursor position enabled.
Definition: view_controls.h:55
MOUSE_DRAG_ACTION m_dragLeft
bool m_horizontalPan
Enable the accelerating zoom controller.
Definition: view_controls.h:91
bool m_autoPanSettingEnabled
Distance from cursor to VIEW edge when panning is active.
Definition: view_controls.h:76
bool m_focusFollowSchPcb
Flag for turning on autopanning.
Definition: view_controls.h:70
float m_autoPanAcceleration
If the cursor is allowed to be warped.
Definition: view_controls.h:85
MOUSE_DRAG_ACTION m_dragMiddle
bool m_cursorCaptured
Should the cursor snap to grid or move freely.
Definition: view_controls.h:61
int m_zoomSpeed
When true, ignore zoom_speed and pick a platform-specific default.
Definition: view_controls.h:97
int m_scrollModifierZoom
What modifier key to enable horizontal pan with the (vertical) scroll wheel.
int m_scrollModifierPanH
What modifier key to enable vertical with the (vertical) scroll wheel.
VECTOR2D m_lastKeyboardCursorPosition
bool m_warpCursor
Enable horizontal panning with the horizontal scroll/trackpad input.
Definition: view_controls.h:88
MOUSE_DRAG_ACTION m_dragRight
Is last cursor motion event coming from keyboard arrow cursor motion action.
bool m_zoomAcceleration
Zoom speed for the non-accelerating zoom controller.
Definition: view_controls.h:94
bool m_lastKeyboardCursorPositionValid
ACTIONS::CURSOR_UP, ACTIONS::CURSOR_DOWN, etc.
bool m_zoomSpeedAuto
What modifier key to enable zoom with the (vertical) scroll wheel.
bool m_autoPanEnabled
Flag for turning on autopanning.
Definition: view_controls.h:73
long m_lastKeyboardCursorCommand
Position of the above event.
bool m_forceCursorPosition
Should the cursor be locked within the parent window area.
Definition: view_controls.h:58
constexpr int delta
wxLogTrace helper definitions.
Functions to provide common constants and other functions to assist in making a consistent UI.
VECTOR2< double > VECTOR2D
Definition: vector2d.h:589
VECTOR2< int > VECTOR2I
Definition: vector2d.h:590
static std::unique_ptr< ZOOM_CONTROLLER > GetZoomControllerForPlatform(bool aAcceleration)
WX_VIEW_CONTROLS class definition.