KiCad PCB EDA Suite
Loading...
Searching...
No Matches
tool_manager.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-2023 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Tomasz Wlostowski <[email protected]>
7 * @author Maciej Suminski <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <core/kicad_algo.h>
24#include <scoped_set_reset.h>
25#include <optional>
26#include <map>
27#include <stack>
28#include <trace_helpers.h>
29#include <kiplatform/ui.h>
30#include <app_monitor.h>
31
32#include <wx/event.h>
33#include <wx/evtloop.h>
34#include <wx/clipbrd.h>
35#include <wx/app.h>
36
37#include <math/vector2wx.h>
38
39#include <view/view.h>
40#include <view/view_controls.h>
41#include <eda_base_frame.h>
42#include <tool/tool_base.h>
44#include <tool/tool_manager.h>
45#include <tool/action_menu.h>
46#include <tool/coroutine.h>
47#include <tool/action_manager.h>
48
50
53{
55 theTool( aTool )
56 {
57 clear();
58 }
59
60 TOOL_STATE( const TOOL_STATE& aState )
61 {
62 theTool = aState.theTool;
63 idle = aState.idle;
64 shutdown = aState.shutdown;
65 pendingWait = aState.pendingWait;
67 contextMenu = aState.contextMenu;
69 cofunc = aState.cofunc;
71 wakeupEvent = aState.wakeupEvent;
72 waitEvents = aState.waitEvents;
73 transitions = aState.transitions;
74 vcSettings = aState.vcSettings;
75 // do not copy stateStack
76 }
77
79 {
80 wxASSERT_MSG( stateStack.empty(), wxT( "StateStack not empty!" ) );
81 }
82
85
87 bool idle;
88
91
95
98
101
104
107
110
113
116
119 std::vector<TRANSITION> transitions;
120
123
125 {
126 theTool = aState.theTool;
127 idle = aState.idle;
128 shutdown = aState.shutdown;
129 pendingWait = aState.pendingWait;
131 contextMenu = aState.contextMenu;
133 cofunc = aState.cofunc;
134 initialEvent = aState.initialEvent;
135 wakeupEvent = aState.wakeupEvent;
136 waitEvents = aState.waitEvents;
137 transitions = aState.transitions;
138 vcSettings = aState.vcSettings;
139
140 // do not copy stateStack
141 return *this;
142 }
143
144 bool operator==( const TOOL_MANAGER::TOOL_STATE& aRhs ) const
145 {
146 return aRhs.theTool == theTool;
147 }
148
149 bool operator!=( const TOOL_MANAGER::TOOL_STATE& aRhs ) const
150 {
151 return aRhs.theTool != theTool;
152 }
153
158 void Push()
159 {
160 auto state = std::make_unique<TOOL_STATE>( *this );
161 stateStack.push( std::move( state ) );
162 clear();
163 }
164
171 bool Pop()
172 {
173 delete cofunc;
174
175 if( !stateStack.empty() )
176 {
177 *this = *stateStack.top().get();
178 stateStack.pop();
179 return true;
180 }
181
183 return false;
184 }
185
186private:
188 std::stack<std::unique_ptr<TOOL_STATE>> stateStack;
189
192 {
193 cofunc = nullptr;
194 shutdown = false;
195 pendingWait = false;
196 pendingContextMenu = false;
197 contextMenu = nullptr;
199 }
200
202 void clear()
203 {
204 idle = true;
206 vcSettings.Reset();
207 transitions.clear();
208 }
209};
210
211
213 m_model( nullptr ),
214 m_view( nullptr ),
215 m_viewControls( nullptr ),
216 m_frame( nullptr ),
217 m_settings( nullptr ),
219 m_menuActive( false ),
220 m_menuOwner( -1 ),
221 m_activeState( nullptr ),
222 m_shuttingDown( false )
223{
224 m_actionMgr = new ACTION_MANAGER( this );
225}
226
227
229{
230 std::map<TOOL_BASE*, TOOL_STATE*>::iterator it, it_end;
231
232 for( it = m_toolState.begin(), it_end = m_toolState.end(); it != it_end; ++it )
233 {
234 delete it->second->cofunc; // delete cofunction
235 delete it->second; // delete TOOL_STATE
236 delete it->first; // delete the tool itself
237 }
238
239 delete m_actionMgr;
240}
241
242
244{
245 wxASSERT_MSG( m_toolNameIndex.find( aTool->GetName() ) == m_toolNameIndex.end(),
246 wxT( "Adding two tools with the same name may result in unexpected behavior.") );
247 wxASSERT_MSG( m_toolIdIndex.find( aTool->GetId() ) == m_toolIdIndex.end(),
248 wxT( "Adding two tools with the same ID may result in unexpected behavior.") );
249 wxASSERT_MSG( m_toolTypes.find( typeid( *aTool ).name() ) == m_toolTypes.end(),
250 wxT( "Adding two tools of the same type may result in unexpected behavior.") );
251
252 wxLogTrace( kicadTraceToolStack,
253 wxS( "TOOL_MANAGER::RegisterTool: Registering tool %s with ID %d" ),
254 aTool->GetName(), aTool->GetId() );
255
256 m_toolOrder.push_back( aTool );
257
258 TOOL_STATE* st = new TOOL_STATE( aTool );
259
260 m_toolState[aTool] = st;
261 m_toolNameIndex[aTool->GetName()] = st;
262 m_toolIdIndex[aTool->GetId()] = st;
263 m_toolTypes[typeid( *aTool ).name()] = st->theTool;
264
265 aTool->attachManager( this );
266}
267
268
270{
271 TOOL_BASE* tool = FindTool( aToolId );
272
273 if( tool && tool->GetType() == INTERACTIVE )
274 return invokeTool( tool );
275
276 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::InvokeTool - no tool with ID %d" ),
277 aToolId );
278
279 return false; // there is no tool with the given id
280}
281
282
283bool TOOL_MANAGER::InvokeTool( const std::string& aToolName )
284{
285 TOOL_BASE* tool = FindTool( aToolName );
286
287 if( tool && tool->GetType() == INTERACTIVE )
288 return invokeTool( tool );
289
290 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::InvokeTool - no tool with name %s" ),
291 aToolName );
292
293 return false; // there is no tool with the given name
294}
295
296
297bool TOOL_MANAGER::doRunAction( const std::string& aActionName, bool aNow, const ki::any& aParam,
298 COMMIT* aCommit )
299{
300 TOOL_ACTION* action = m_actionMgr->FindAction( aActionName );
301
302 if( !action )
303 {
304 wxASSERT_MSG( false, wxString::Format( "Could not find action %s.", aActionName ) );
305 return false;
306 }
307
308 doRunAction( *action, aNow, aParam, aCommit );
309
310 return true;
311}
312
313
315{
316 if( m_viewControls )
317 return m_viewControls->GetMousePosition();
318 else
320}
321
322
324{
325 if( m_viewControls )
326 return m_viewControls->GetCursorPosition();
327 else
329}
330
331
332bool TOOL_MANAGER::doRunAction( const TOOL_ACTION& aAction, bool aNow, const ki::any& aParam,
333 COMMIT* aCommit, bool aFromAPI )
334{
335 if( m_shuttingDown )
336 return true;
337
338 bool retVal = false;
339 TOOL_EVENT event = aAction.MakeEvent();
340
341 if( event.Category() == TC_COMMAND )
342 event.SetMousePosition( m_hotKeyPos.value_or( GetCursorPosition() ) );
343
344 // Allow to override the action parameter
345 if( aParam.has_value() )
346 event.SetParameter( aParam );
347
348 if( aNow )
349 {
350 TOOL_STATE* current = m_activeState;
351
352 // An event with a commit must be run synchronously
353 if( aCommit )
354 {
355 // We initialize the SYNCHRONOUS state to finished so that tools that don't have an
356 // event loop won't hang if someone forgets to set the state.
357 std::atomic<SYNCRONOUS_TOOL_STATE> synchronousControl = STS_FINISHED;
358
359 event.SetSynchronous( &synchronousControl );
360 event.SetCommit( aCommit );
361
362 processEvent( event );
363
364 while( synchronousControl == STS_RUNNING )
365 {
366 wxYield(); // Needed to honor mouse (and other) events during editing
367 wxMilliSleep( 1 ); // Needed to avoid 100% use of one cpu core.
368 // The sleeping time must be must be small to avoid
369 // noticeable lag in mouse and editing events
370 // (1 to 5 ms is a good value)
371 }
372
373 retVal = synchronousControl != STS_CANCELLED;
374 }
375 else
376 {
377 retVal = processEvent( event );
378 }
379
380 setActiveState( current );
381 UpdateUI( event );
382 }
383 else
384 {
385 // It is really dangerous to pass a commit (whose lifetime we can't guarantee) to
386 // deferred event processing. There is a possibility that user actions will get run
387 // in between, which might either affect the lifetime of the commit or push or pop
388 // other commits. However, we don't currently have a better solution for the API.
389 if( aCommit )
390 {
391 wxASSERT_MSG( aFromAPI, wxT( "Deferred actions have no way of guaranteeing the "
392 "lifetime of the COMMIT object" ) );
393 event.SetCommit( aCommit );
394 }
395
396 PostEvent( event );
397 }
398
399 return retVal;
400}
401
402
404{
406
407 processEvent( evt );
408}
409
410
411void TOOL_MANAGER::PrimeTool( const VECTOR2D& aPosition )
412{
413 int modifiers = 0;
414
415 /*
416 * Don't include any modifiers. They're part of the hotkey, not part of the resulting
417 * click.
418 *
419 * modifiers |= wxGetKeyState( WXK_SHIFT ) ? MD_SHIFT : 0;
420 * modifiers |= wxGetKeyState( WXK_CONTROL ) ? MD_CTRL : 0;
421 * modifiers |= wxGetKeyState( WXK_ALT ) ? MD_ALT : 0;
422 */
423
424 TOOL_EVENT evt( TC_MOUSE, TA_PRIME, BUT_LEFT | modifiers );
425 evt.SetMousePosition( aPosition );
426
427 PostEvent( evt );
428}
429
430
432{
433 // Horrific hack, but it's a crash bug. Don't let inter-frame commands stack up
434 // waiting to be processed.
435 if( aEvent.IsSimulator() && m_eventQueue.size() > 0 && m_eventQueue.back().IsSimulator() )
436 m_eventQueue.pop_back();
437
438 m_eventQueue.push_back( aEvent );
439}
440
441
442int TOOL_MANAGER::GetHotKey( const TOOL_ACTION& aAction ) const
443{
444 return m_actionMgr->GetHotKey( aAction );
445}
446
447
449{
450 wxASSERT( aTool != nullptr );
451
452 TOOL_EVENT evt( TC_COMMAND, TA_ACTIVATE, aTool->GetName() );
454 processEvent( evt );
455
456 if( TOOL_STATE* active = GetCurrentToolState() )
457 setActiveState( active );
458
459 return true;
460}
461
462
464{
465 wxASSERT( aTool != nullptr );
466
467 wxString msg = wxString::Format( wxS( "TOOL_MANAGER::runTool - running tool %s" ), aTool->GetName() );
468 APP_MONITOR::AddTransactionBreadcrumb( msg, "tool.run" );
469
470 if( !isRegistered( aTool ) )
471 {
472 wxASSERT_MSG( false, wxT( "You cannot run unregistered tools" ) );
473 return false;
474 }
475
476 TOOL_ID id = aTool->GetId();
477
478 wxLogTrace( kicadTraceToolStack, msg,
479 aTool->GetName() );
480
481 if( aTool->GetType() == INTERACTIVE )
482 static_cast<TOOL_INTERACTIVE*>( aTool )->resetTransitions();
483
484 // If the tool is already active, bring it to the top of the active tools stack
485 if( isActive( aTool ) && m_activeTools.size() > 1 )
486 {
487 auto it = std::find( m_activeTools.begin(), m_activeTools.end(), id );
488
489 if( it != m_activeTools.end() )
490 {
491 if( it != m_activeTools.begin() )
492 {
493 m_activeTools.erase( it );
494 m_activeTools.push_front( id );
495 }
496
497 return false;
498 }
499 }
500
503
504 // Add the tool on the front of the processing queue (it gets events first)
505 m_activeTools.push_front( id );
506
507 return true;
508}
509
510
512{
513 m_shuttingDown = true;
514
515 // Create a temporary list of tools to iterate over since when the tools shutdown
516 // they remove themselves from the list automatically (invalidating the iterator)
517 ID_LIST tmpList = m_activeTools;
518
519 // Make sure each tool knows that it is shutting down, so that loops get shut down
520 // at the dispatcher
521 for( auto id : tmpList )
522 {
523 if( m_toolIdIndex.count( id ) == 0 )
524 continue;
525
526 m_toolIdIndex[id]->shutdown = true;
527 }
528
529 for( auto id : tmpList )
530 {
531 ShutdownTool( id );
532 }
533}
534
535
537{
538 TOOL_BASE* tool = FindTool( aToolId );
539
540 if( tool && tool->GetType() == INTERACTIVE )
541 ShutdownTool( tool );
542
543 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::ShutdownTool - no tool with ID %d" ),
544 aToolId );
545}
546
547
548void TOOL_MANAGER::ShutdownTool( const std::string& aToolName )
549{
550 TOOL_BASE* tool = FindTool( aToolName );
551
552 if( tool && tool->GetType() == INTERACTIVE )
553 ShutdownTool( tool );
554
555 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::ShutdownTool - no tool with name %s" ),
556 aToolName );
557}
558
559
561{
562 wxASSERT( aTool != nullptr );
563
564 TOOL_ID id = aTool->GetId();
565
566 if( isActive( aTool ) )
567 {
568 TOOL_MANAGER::ID_LIST::iterator it = std::find( m_activeTools.begin(),
569 m_activeTools.end(), id );
570
571 TOOL_STATE* st = m_toolIdIndex[*it];
572
573 // the tool state handler is waiting for events (i.e. called Wait() method)
574 if( st && st->pendingWait )
575 {
576 // Wake up the tool and tell it to shutdown
577 st->shutdown = true;
578 st->pendingWait = false;
579 st->waitEvents.clear();
580
581 if( st->cofunc )
582 {
583 wxLogTrace( kicadTraceToolStack,
584 wxS( "TOOL_MANAGER::ShutdownTool - Shutting down tool %s" ),
585 st->theTool->GetName() );
586
587 setActiveState( st );
588 bool end = !st->cofunc->Resume();
589
590 if( end )
591 finishTool( st );
592 }
593 }
594 }
595}
596
597
599{
600 std::map<TOOL_ID, TOOL_STATE*>::const_iterator it = m_toolIdIndex.find( aId );
601
602 if( it != m_toolIdIndex.end() )
603 return it->second->theTool;
604
605 return nullptr;
606}
607
608
609TOOL_BASE* TOOL_MANAGER::FindTool( const std::string& aName ) const
610{
611 std::map<std::string, TOOL_STATE*>::const_iterator it = m_toolNameIndex.find( aName );
612
613 if( it != m_toolNameIndex.end() )
614 return it->second->theTool;
615
616 return nullptr;
617}
618
619
621{
622 // Deactivate the active tool, but do not run anything new
624 processEvent( evt );
625}
626
627
629{
630 if( aReason != TOOL_BASE::REDRAW )
632
633 for( auto& state : m_toolState )
634 {
635 TOOL_BASE* tool = state.first;
636
637 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::ResetTools: Resetting tool '%s'" ),
638 tool->GetName() );
639
640 setActiveState( state.second );
641 tool->Reset( aReason );
642
643 if( tool->GetType() == INTERACTIVE )
644 static_cast<TOOL_INTERACTIVE*>( tool )->resetTransitions();
645 }
646}
647
648
650{
651 for( auto it = m_toolOrder.begin(); it != m_toolOrder.end(); /* iter inside */ )
652 {
653 TOOL_BASE* tool = *it;
654 wxASSERT( m_toolState.count( tool ) );
655 TOOL_STATE* state = m_toolState[tool];
656 setActiveState( state );
657 ++it; // keep the iterator valid if the element is going to be erased
658
659 if( !tool->Init() )
660 {
661 wxLogTrace( kicadTraceToolStack,
662 wxS( "TOOL_MANAGER initialization of tool '%s' failed" ),
663 tool->GetName() );
664
665 // Unregister the tool
666 setActiveState( nullptr );
667 m_toolState.erase( tool );
668 m_toolNameIndex.erase( tool->GetName() );
669 m_toolIdIndex.erase( tool->GetId() );
670 m_toolTypes.erase( typeid( *tool ).name() );
671
672 delete state;
673 delete tool;
674 }
675 }
676
677 m_actionMgr->UpdateHotKeys( true );
678
680}
681
682
683int TOOL_MANAGER::GetPriority( int aToolId ) const
684{
685 int priority = 0;
686
687 for( TOOL_ID tool : m_activeTools )
688 {
689 if( tool == aToolId )
690 return priority;
691
692 ++priority;
693 }
694
695 return -1;
696}
697
698
700 const TOOL_EVENT_LIST& aConditions )
701{
702 TOOL_STATE* st = m_toolState[aTool];
703
704 st->transitions.emplace_back( TRANSITION( aConditions, aHandler ) );
705}
706
707
709{
710 m_toolState[aTool]->transitions.clear();
711}
712
713
714void TOOL_MANAGER::RunMainStack( TOOL_BASE* aTool, std::function<void()> aFunc )
715{
716 TOOL_STATE* st = m_toolState[aTool];
717 setActiveState( st );
718 wxCHECK( st->cofunc, /* void */ );
719 st->cofunc->RunMainStack( std::move( aFunc ) );
720}
721
722
724{
725 TOOL_STATE* st = m_toolState[aTool];
726
727 wxCHECK( !st->pendingWait, nullptr ); // everything collapses on two KiYield() in a row
728
729 // indicate to the manager that we are going to sleep and we shall be
730 // woken up when an event matching aConditions arrive
731 st->pendingWait = true;
732 st->waitEvents = aConditions;
733
734 wxCHECK( st->cofunc, nullptr );
735
736 // switch context back to event dispatcher loop
737 st->cofunc->KiYield();
738
739 // If the tool should shutdown, it gets a null event to break the loop
740 if( st->shutdown )
741 return nullptr;
742 else
743 return &st->wakeupEvent;
744}
745
746
748{
749 bool handled = false;
750
751 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::dispatchInternal - received event: %s" ),
752 aEvent.Format() );
753
754 auto it = m_activeTools.begin();
755
756 // iterate over active tool stack
757 while( it != m_activeTools.end() )
758 {
759 TOOL_STATE* st = m_toolIdIndex[*it];
760 bool increment = true;
761
762 // forward context menu events to the tool that created the menu
763 if( aEvent.IsChoiceMenu() )
764 {
765 if( *it != m_menuOwner )
766 {
767 ++it;
768 continue;
769 }
770 }
771
772 // If we're pendingWait then we had better have a cofunc to process the wait.
773 wxASSERT( !st || !st->pendingWait || st->cofunc );
774
775 // the tool state handler is waiting for events (i.e. called Wait() method)
776 if( st && st->cofunc && st->pendingWait && st->waitEvents.Matches( aEvent ) )
777 {
778 if( !aEvent.FirstResponder() )
779 aEvent.SetFirstResponder( st->theTool );
780
781 // got matching event? clear wait list and wake up the coroutine
782 st->wakeupEvent = aEvent;
783 st->pendingWait = false;
784 st->waitEvents.clear();
785
786 wxLogTrace( kicadTraceToolStack,
787 wxS( "TOOL_MANAGER::dispatchInternal - Waking tool %s for event: %s" ),
788 st->theTool->GetName(), aEvent.Format() );
789
790 setActiveState( st );
791 bool end = !st->cofunc->Resume();
792
793 if( end )
794 {
795 it = finishTool( st );
796 increment = false;
797 }
798
799 // If the tool did not request the event be passed to other tools, we're done
800 if( !st->wakeupEvent.PassEvent() )
801 {
802 wxLogTrace( kicadTraceToolStack,
803 wxS( "TOOL_MANAGER::dispatchInternal - tool %s stopped passing "
804 "event: %s" ),
805 st->theTool->GetName(), aEvent.Format() );
806
807 return true;
808 }
809 }
810
811 if( increment )
812 ++it;
813 }
814
815 for( const auto& state : m_toolState )
816 {
817 TOOL_STATE* st = state.second;
818 bool finished = false;
819
820 // no state handler in progress - check if there are any transitions (defined by
821 // Go() method that match the event.
822 if( !st->transitions.empty() )
823 {
824 for( const TRANSITION& tr : st->transitions )
825 {
826 if( tr.first.Matches( aEvent ) )
827 {
828 auto func_copy = tr.second;
829
830 if( !aEvent.FirstResponder() )
831 aEvent.SetFirstResponder( st->theTool );
832
833 // if there is already a context, then push it on the stack
834 // and transfer the previous view control settings to the new context
835 if( st->cofunc )
836 {
837 KIGFX::VC_SETTINGS viewControlSettings = st->vcSettings;
838 st->Push();
839 st->vcSettings = std::move( viewControlSettings );
840 }
841
842 st->cofunc = new COROUTINE<int, const TOOL_EVENT&>( std::move( func_copy ) );
843
844 wxLogTrace( kicadTraceToolStack,
845 wxS( "TOOL_MANAGER::dispatchInternal - Running tool %s for "
846 "event: %s" ),
847 st->theTool->GetName(), aEvent.Format() );
848
849 // got match? Run the handler.
850 setActiveState( st );
851 st->idle = false;
852 st->initialEvent = aEvent;
853 st->cofunc->Call( st->initialEvent );
854 handled = true;
855
856 if( !st->cofunc->Running() )
857 finishTool( st ); // The coroutine has finished immediately?
858
859 // if it is a message, continue processing
860 finished = !( aEvent.Category() == TC_MESSAGE );
861
862 // there is no point in further checking, as transitions got cleared
863 break;
864 }
865 }
866 }
867
868 if( finished )
869 break; // only the first tool gets the event
870 }
871
872 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::dispatchInternal - %s handle event: %s" ),
873 ( handled ? wxS( "Did" ) : wxS( "Did not" ) ), aEvent.Format() );
874
875 return handled;
876}
877
878
880{
881 if( aEvent.Action() == TA_KEY_PRESSED )
882 return m_actionMgr->RunHotKey( aEvent.Modifier() | aEvent.KeyCode() );
883
884 return false;
885}
886
887
889{
890 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::dispatchActivation - Received event: %s" ),
891 aEvent.Format() );
892
893 if( aEvent.IsActivate() )
894 {
895 auto tool = m_toolNameIndex.find( aEvent.getCommandStr() );
896
897 if( tool != m_toolNameIndex.end() )
898 {
899 wxLogTrace( kicadTraceToolStack,
900 wxS( "TOOL_MANAGER::dispatchActivation - Running tool %s for event: %s" ),
901 tool->second->theTool->GetName(), aEvent.Format() );
902
903 runTool( tool->second->theTool );
904 return true;
905 }
906 }
907
908 return false;
909}
910
911
913{
914 // Don't open context menus if we're inside a yielding event loop such as a progress dialog.
915 // Opening a popup menu during YieldFor creates a nested modal situation that can leave the
916 // menu stuck and unresponsive, potentially locking up the entire UI on some platforms.
917 if( wxEventLoopBase* loop = wxEventLoopBase::GetActive() )
918 {
919 if( loop->IsYielding() )
920 return;
921 }
922
923 for( TOOL_ID toolId : m_activeTools )
924 {
925 TOOL_STATE* st = m_toolIdIndex[toolId];
926
927 // the tool requested a context menu. The menu is activated on RMB click (CMENU_BUTTON mode)
928 // or immediately (CMENU_NOW) mode. The latter is used for clarification lists.
929 if( st->contextMenuTrigger == CMENU_OFF )
930 continue;
931
932 if( st->contextMenuTrigger == CMENU_BUTTON && !aEvent.IsClick( BUT_RIGHT ) )
933 break;
934
935 if( st->cofunc )
936 {
937 st->pendingWait = true;
939 }
940
941 // Store the menu pointer in case it is changed by the TOOL when handling menu events
942 ACTION_MENU* m = st->contextMenu;
943
944 if( st->contextMenuTrigger == CMENU_NOW )
946
947 // Store the cursor position, so the tools could execute actions
948 // using the point where the user has invoked a context menu
949 if( m_viewControls )
950 m_menuCursor = m_viewControls->GetCursorPosition();
951
952 // Save all tools cursor settings, as they will be overridden
953 for( const std::pair<const TOOL_ID, TOOL_STATE*>& idState : m_toolIdIndex )
954 {
955 TOOL_STATE* s = idState.second;
956 const auto& vc = s->vcSettings;
957
958 if( vc.m_forceCursorPosition )
959 m_cursorSettings[idState.first] = vc.m_forcedPosition;
960 else
961 m_cursorSettings[idState.first] = std::nullopt;
962 }
963
964 if( m_viewControls )
965 m_viewControls->ForceCursorPosition( true, m_menuCursor );
966
967 // Display a copy of menu
968 std::unique_ptr<ACTION_MENU> menu( m->Clone() );
969
970 m_menuOwner = toolId;
971 m_menuActive = true;
972
973 if( wxWindow* frame = dynamic_cast<wxWindow*>( m_frame ) )
974 frame->PopupMenu( menu.get() );
975
976 // Warp the cursor if a menu item was selected
977 if( menu->GetSelected() >= 0 )
978 {
980 m_viewControls->WarpMouseCursor( m_menuCursor, true, false );
981 }
982 // Otherwise notify the tool of a canceled menu
983 else
984 {
986 evt.SetHasPosition( false );
987 evt.SetParameter( m );
988 dispatchInternal( evt );
989 }
990
991 // Restore setting in case it was vetoed
993
994 // Notify the tools that menu has been closed
996 evt.SetHasPosition( false );
997 evt.SetParameter( m );
998 dispatchInternal( evt );
999
1000 m_menuActive = false;
1001 m_menuOwner = -1;
1002
1003 // Restore cursor settings
1004 for( const std::pair<const TOOL_ID,
1005 std::optional<VECTOR2D>>& cursorSetting : m_cursorSettings )
1006 {
1007 auto it = m_toolIdIndex.find( cursorSetting.first );
1008 wxASSERT( it != m_toolIdIndex.end() );
1009
1010 if( it == m_toolIdIndex.end() )
1011 continue;
1012
1013 KIGFX::VC_SETTINGS& vc = it->second->vcSettings;
1014 vc.m_forceCursorPosition = (bool) cursorSetting.second;
1015 vc.m_forcedPosition = cursorSetting.second ? *cursorSetting.second : VECTOR2D( 0, 0 );
1016 }
1017
1018 m_cursorSettings.clear();
1019 break;
1020 }
1021}
1022
1023
1025{
1027 m_viewControls->WarpMouseCursor( m_menuCursor, true, false );
1028
1029 // Don't warp again when the menu is closed
1031}
1032
1033
1034TOOL_MANAGER::ID_LIST::iterator TOOL_MANAGER::finishTool( TOOL_STATE* aState )
1035{
1036 auto it = std::find( m_activeTools.begin(), m_activeTools.end(), aState->theTool->GetId() );
1037
1038 if( !aState->Pop() )
1039 {
1040 // Deactivate the tool if there are no other contexts saved on the stack
1041 if( it != m_activeTools.end() )
1042 it = m_activeTools.erase( it );
1043
1044 aState->idle = true;
1045 }
1046
1047 if( aState == m_activeState )
1048 setActiveState( nullptr );
1049
1050 return it;
1051}
1052
1053
1055{
1056 // Once the tool manager is shutting down, don't start
1057 // activating more tools
1058 if( m_shuttingDown )
1059 return true;
1060
1061 bool handled = processEvent( aEvent );
1062
1063 TOOL_STATE* activeTool = GetCurrentToolState();
1064
1065 if( activeTool )
1066 setActiveState( activeTool );
1067
1068 if( m_view && m_view->IsDirty() )
1069 {
1070#if defined( __WXMAC__ )
1071 wxTheApp->ProcessPendingEvents(); // required for updating brightening behind a popup menu
1072#endif
1073 }
1074
1075 UpdateUI( aEvent );
1076
1077 return handled;
1078}
1079
1080
1082 CONTEXT_MENU_TRIGGER aTrigger )
1083{
1084 TOOL_STATE* st = m_toolState[aTool];
1085
1086 st->contextMenu = aMenu;
1087 st->contextMenuTrigger = aTrigger;
1088}
1089
1090
1092{
1093 if( TOOL_STATE* active = GetCurrentToolState() )
1094 return active->vcSettings;
1095
1096 return m_viewControls->GetSettings();
1097}
1098
1099
1100TOOL_ID TOOL_MANAGER::MakeToolId( const std::string& aToolName )
1101{
1102 static int currentId;
1103
1104 return currentId++;
1105}
1106
1107
1109 KIGFX::VIEW_CONTROLS* aViewControls,
1110 APP_SETTINGS_BASE* aSettings, TOOLS_HOLDER* aFrame )
1111{
1112 m_model = aModel;
1113 m_view = aView;
1114 m_viewControls = aViewControls;
1115 m_frame = aFrame;
1116 m_settings = aSettings;
1117}
1118
1119
1121{
1122 if( !isRegistered( aTool ) )
1123 return false;
1124
1125 // Just check if the tool is on the active tools stack
1126 return alg::contains( m_activeTools, aTool->GetId() );
1127}
1128
1129
1131{
1132 aState->vcSettings = m_viewControls->GetSettings();
1133
1134 if( m_menuActive )
1135 {
1136 // Context menu is active, so the cursor settings are overridden (see DispatchContextMenu())
1137 auto it = m_cursorSettings.find( aState->theTool->GetId() );
1138
1139 if( it != m_cursorSettings.end() )
1140 {
1141 const KIGFX::VC_SETTINGS& curr = m_viewControls->GetSettings();
1142
1143 // Tool has overridden the cursor position, so store the new settings
1145 {
1146 if( !curr.m_forceCursorPosition )
1147 it->second = std::nullopt;
1148 else
1149 it->second = curr.m_forcedPosition;
1150 }
1151 else
1152 {
1153 std::optional<VECTOR2D> cursor = it->second;
1154
1155 if( cursor )
1156 {
1157 aState->vcSettings.m_forceCursorPosition = true;
1159 }
1160 else
1161 {
1162 aState->vcSettings.m_forceCursorPosition = false;
1163 }
1164 }
1165 }
1166 }
1167}
1168
1169
1171{
1172 m_viewControls->ApplySettings( aState->vcSettings );
1173}
1174
1175
1177{
1178 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::processEvent - %s" ), aEvent.Format() );
1179
1180 // Capture the cursor position from the keyboard event so that hotkey-triggered actions use
1181 // the position at keypress time rather than polling a potentially stale position later in the
1182 // dispatch chain. The scoped guard restores any prior value so a nested hotkey dispatch does
1183 // not clobber the outer position.
1184 std::optional<VECTOR2D> hotKeyPos = aEvent.HasPosition() && aEvent.Action() == TA_KEY_PRESSED
1185 ? std::make_optional( aEvent.Position() )
1186 : m_hotKeyPos;
1187
1188 SCOPED_SET_RESET<std::optional<VECTOR2D>> scopedHotKeyPos( m_hotKeyPos, hotKeyPos );
1189
1190 // First try to dispatch the action associated with the event if it is a key press event
1191 bool handled = DispatchHotKey( aEvent );
1192
1193 if( !handled )
1194 {
1195 TOOL_EVENT mod_event( aEvent );
1196
1197 // Only immediate actions get the position. Otherwise clear for tool activation
1198 if( GetToolHolder() && !GetToolHolder()->GetDoImmediateActions() )
1199 {
1200 // An tool-selection-event has no position
1201 if( !mod_event.getCommandStr().empty()
1202 && mod_event.getCommandStr() != GetToolHolder()->CurrentToolName()
1203 && !mod_event.ForceImmediate() )
1204 {
1205 mod_event.SetHasPosition( false );
1206 }
1207 }
1208
1209 // If the event is not handled through a hotkey activation, pass it to the currently
1210 // running tool loops
1211 handled |= dispatchInternal( mod_event );
1212 handled |= dispatchActivation( mod_event );
1213
1214 // Open the context menu if requested by a tool
1215 DispatchContextMenu( mod_event );
1216
1217 // Dispatch any remaining events in the event queue
1218 while( !m_eventQueue.empty() )
1219 {
1220 TOOL_EVENT event = m_eventQueue.front();
1221 m_eventQueue.pop_front();
1222 processEvent( event );
1223 }
1224 }
1225
1226 wxLogTrace( kicadTraceToolStack, wxS( "TOOL_MANAGER::processEvent - %s handle event: %s" ),
1227 ( handled ? "Did" : "Did not" ), aEvent.Format() );
1228
1229 return handled;
1230}
1231
1232
1234{
1237
1238 m_activeState = aState;
1239
1241 applyViewControls( aState );
1242}
1243
1244
1246{
1247 auto it = m_toolIdIndex.find( aId );
1248
1249 if( it == m_toolIdIndex.end() )
1250 return false;
1251
1252 return !it->second->idle;
1253}
1254
1255
1257{
1258 EDA_BASE_FRAME* frame = dynamic_cast<EDA_BASE_FRAME*>( GetToolHolder() );
1259
1260 if( frame )
1261 frame->UpdateStatusBar();
1262}
Manage TOOL_ACTION objects.
Define the structure of a menu based on ACTIONs.
Definition action_menu.h:43
ACTION_MENU * Clone() const
Create a deep, recursive copy of this ACTION_MENU.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition commit.h:68
Implement a coroutine.
Definition coroutine.h:80
bool Call(ArgType aArg)
Start execution of a coroutine, passing args as its arguments.
Definition coroutine.h:282
void KiYield()
Stop execution of the coroutine and returns control to the caller.
Definition coroutine.h:245
bool Resume()
Resume execution of a previously yielded coroutine.
Definition coroutine.h:328
bool Running() const
Definition coroutine.h:377
void RunMainStack(std::function< void()> func)
Run a functor inside the application main stack context.
Definition coroutine.h:268
The base frame for deriving all KiCad main window classes.
virtual void UpdateStatusBar()
Update the status bar information.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
An interface for classes handling user events controlling the view behavior such as zooming,...
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:63
RAII class that sets an value at construction and resets it to the original value at destruction.
Represent a single user action.
TOOL_EVENT MakeEvent() const
Return the event associated with the action (i.e.
Base abstract interface for all kinds of tools.
Definition tool_base.h:62
virtual void Reset(RESET_REASON aReason)=0
Bring the tool to a known, initial state.
virtual bool Init()
Init() is called once upon a registration of the tool.
Definition tool_base.h:88
const std::string & GetName() const
Return the name of the tool.
Definition tool_base.h:132
TOOL_TYPE GetType() const
Return the type of the tool.
Definition tool_base.h:107
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:74
@ REDRAW
Full drawing refresh.
Definition tool_base.h:79
@ RUN
Tool is invoked after being inactive.
Definition tool_base.h:75
TOOL_ID GetId() const
Return the unique identifier of the tool.
Definition tool_base.h:119
void attachManager(TOOL_MANAGER *aManager)
Set the TOOL_MANAGER the tool will belong to.
Definition tool_base.cpp:58
A list of TOOL_EVENTs, with overloaded || operators allowing for concatenating TOOL_EVENTs with littl...
Definition tool_event.h:644
OPT_TOOL_EVENT Matches(const TOOL_EVENT &aEvent) const
Definition tool_event.h:683
Generic, UI-independent tool event.
Definition tool_event.h:167
bool HasPosition() const
Returns if it this event has a valid position (true for mouse events and context-menu or hotkey-based...
Definition tool_event.h:256
bool PassEvent() const
These give a tool a method of informing the TOOL_MANAGER that a particular event should be passed on ...
Definition tool_event.h:251
TOOL_ACTIONS Action() const
Returns more specific information about the type of an event.
Definition tool_event.h:246
void SetMousePosition(const VECTOR2D &aP)
Definition tool_event.h:534
int KeyCode() const
Definition tool_event.h:372
TOOL_BASE * FirstResponder() const
Definition tool_event.h:264
bool IsActivate() const
Definition tool_event.h:341
void SetFirstResponder(TOOL_BASE *aTool)
Definition tool_event.h:265
bool IsSimulator() const
Indicate if the event is from the simulator.
const VECTOR2D Position() const
Return mouse cursor position in world coordinates.
Definition tool_event.h:289
void SetParameter(T aParam)
Set a non-standard parameter assigned to the event.
Definition tool_event.h:524
bool ForceImmediate() const
Returns if the action associated with this event should be treated as immediate regardless of the cur...
Definition tool_event.h:261
bool IsClick(int aButtonMask=BUT_ANY) const
TOOL_EVENT_CATEGORY Category() const
Return the category (eg. mouse/keyboard/action) of an event.
Definition tool_event.h:243
int Modifier(int aMask=MD_MODIFIER_MASK) const
Return information about key modifiers state (Ctrl, Alt, etc.).
Definition tool_event.h:362
void SetHasPosition(bool aHasPosition)
Definition tool_event.h:257
const std::string & getCommandStr() const
Definition tool_event.h:554
bool IsChoiceMenu() const
Definition tool_event.h:351
const std::string Format() const
Return information about event in form of a human-readable string.
void applyViewControls(const TOOL_STATE *aState)
Apply #VIEW_CONTROLS settings stored in a TOOL_STATE object.
int GetPriority(int aToolId) const
Return priority of a given tool.
bool ProcessEvent(const TOOL_EVENT &aEvent)
Propagate an event to tools that requested events of matching type(s).
TOOL_STATE * m_activeState
Pointer to the state object corresponding to the currently executed tool.
void UpdateUI(const TOOL_EVENT &aEvent)
Update the status bar and synchronizes toolbars.
std::map< TOOL_ID, std::optional< VECTOR2D > > m_cursorSettings
Original cursor position, if overridden by the context menu handler.
void PostEvent(const TOOL_EVENT &aEvent)
Put an event to the event queue to be processed at the end of event processing cycle.
void ScheduleNextState(TOOL_BASE *aTool, TOOL_STATE_FUNC &aHandler, const TOOL_EVENT_LIST &aConditions)
Define a state transition.
std::map< const char *, TOOL_BASE * > m_toolTypes
Index of the registered tools to easily lookup by their type.
bool isRegistered(TOOL_BASE *aTool) const
Return information about a tool registration status.
APP_SETTINGS_BASE * m_settings
TOOL_STATE * GetCurrentToolState() const
Return the TOOL_STATE object representing the state of the active tool.
VECTOR2D GetCursorPosition() const
std::list< TOOL_EVENT > m_eventQueue
Queue that stores events to be processed at the end of the event processing cycle.
std::pair< TOOL_EVENT_LIST, TOOL_STATE_FUNC > TRANSITION
void setActiveState(TOOL_STATE *aState)
Save the previous active state and sets a new one.
void DeactivateTool()
Deactivate the currently active tool.
std::optional< VECTOR2D > m_hotKeyPos
Mouse position captured at hotkey time, used to avoid the delay between keypress and action dispatch ...
bool dispatchInternal(TOOL_EVENT &aEvent)
Pass an event at first to the active tools, then to all others.
void PrimeTool(const VECTOR2D &aPosition)
"Prime" a tool by sending a cursor left-click event with the mouse position set to the passed in posi...
bool runTool(TOOL_BASE *aTool)
Make a tool active, so it can receive events and react to them.
bool InvokeTool(TOOL_ID aToolId)
Call a tool by sending a tool activation event to tool of given ID.
NAME_STATE_MAP m_toolNameIndex
Index of the registered tools current states, associated by tools' names.
TOOLS_HOLDER * m_frame
void CancelTool()
Send a cancel event to the tool currently at the top of the tool stack.
bool m_warpMouseAfterContextMenu
KIGFX::VIEW_CONTROLS * m_viewControls
void WarpAfterContextMenu()
Normally we warp the mouse after the context menu action runs.
ACTION_MANAGER * m_actionMgr
Instance of ACTION_MANAGER that handles TOOL_ACTIONs.
const KIGFX::VC_SETTINGS & GetCurrentToolVC() const
Return the view controls settings for the current tool or the general settings if there is no active ...
void RunMainStack(TOOL_BASE *aTool, std::function< void()> aFunc)
TOOLS_HOLDER * GetToolHolder() const
VECTOR2D GetMousePosition() const
bool processEvent(const TOOL_EVENT &aEvent)
Main function for event processing.
std::list< TOOL_ID > ID_LIST
ID_LIST::iterator finishTool(TOOL_STATE *aState)
Deactivate a tool and does the necessary clean up.
bool doRunAction(const TOOL_ACTION &aAction, bool aNow, const ki::any &aParam, COMMIT *aCommit, bool aFromAPI=false)
Helper function to actually run an action.
bool dispatchActivation(const TOOL_EVENT &aEvent)
Check if it is a valid activation event and invokes a proper tool.
ID_STATE_MAP m_toolIdIndex
Index of the registered tools current states, associated by tools' ID numbers.
TOOL_ID m_menuOwner
Tool currently displaying a popup menu. It is negative when there is no menu displayed.
KIGFX::VIEW * m_view
void ClearTransitions(TOOL_BASE *aTool)
Clear the state transition map for a tool.
bool m_shuttingDown
True if the tool manager is shutting down (don't process additional events)
void saveViewControls(TOOL_STATE *aState)
Save the #VIEW_CONTROLS settings to the tool state object.
int GetHotKey(const TOOL_ACTION &aAction) const
Return the hot key associated with a given action or 0 if there is none.
bool m_menuActive
Flag indicating whether a context menu is currently displayed.
TOOL_STATE_MAP m_toolState
Index of registered tools current states, associated by tools' objects.
void ShutdownTool(TOOL_BASE *aTool)
Shutdown the specified tool by waking it up with a null event to terminate the processing loop.
ID_LIST m_activeTools
Stack of the active tools.
void ResetTools(TOOL_BASE::RESET_REASON aReason)
Reset all tools (i.e.
EDA_ITEM * m_model
bool DispatchHotKey(const TOOL_EVENT &aEvent)
Handle specific events, that are intended for TOOL_MANAGER rather than tools.
static TOOL_ID MakeToolId(const std::string &aToolName)
Generate a unique ID from for a tool with given name.
bool invokeTool(TOOL_BASE *aTool)
Invoke a tool by sending a proper event (in contrary to runTool, which makes the tool run for real).
void DispatchContextMenu(const TOOL_EVENT &aEvent)
Handle context menu related events.
std::vector< TOOL_BASE * > m_toolOrder
List of tools in the order they were registered.
TOOL_BASE * FindTool(int aId) const
Search for a tool with given ID.
void ScheduleContextMenu(TOOL_BASE *aTool, ACTION_MENU *aMenu, CONTEXT_MENU_TRIGGER aTrigger)
Set behavior of the tool's context popup menu.
TOOL_EVENT * ScheduleWait(TOOL_BASE *aTool, const TOOL_EVENT_LIST &aConditions)
Pause execution of a given tool until one or more events matching aConditions arrives.
bool IsToolActive(TOOL_ID aId) const
Return true if a tool with given id is active (executing)
bool isActive(TOOL_BASE *aTool) const
Return information about a tool activation status.
void RegisterTool(TOOL_BASE *aTool)
Add a tool to the manager set and sets it up.
void SetEnvironment(EDA_ITEM *aModel, KIGFX::VIEW *aView, KIGFX::VIEW_CONTROLS *aViewControls, APP_SETTINGS_BASE *aSettings, TOOLS_HOLDER *aFrame)
Set the work environment (model, view, view controls and the parent window).
void InitTools()
Initialize all registered tools.
VECTOR2D m_menuCursor
Right click context menu position.
void ShutdownAllTools()
Shutdown all tools with a currently registered event loop in this tool manager by waking them up with...
A type-safe container of any type.
Definition ki_any.h:92
bool has_value() const noexcept
Report whether there is a contained object or not.
Definition ki_any.h:311
Base window classes and related definitions.
const wxChar *const kicadTraceToolStack
Flag to enable tracing of the tool handling stack.
void AddTransactionBreadcrumb(const wxString &aMsg, const wxString &aCategory)
Add a transaction breadcrumb.
wxPoint GetMousePosition()
Returns the mouse position in screen coordinates.
Definition wxgtk/ui.cpp:766
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition kicad_algo.h:96
Structure to keep VIEW_CONTROLS settings for easy store/restore operations.
VECTOR2D m_forcedPosition
Forced cursor position (world coordinates).
bool m_forceCursorPosition
Is the forced cursor position enabled.
Struct describing the current execution state of a TOOL.
bool operator!=(const TOOL_MANAGER::TOOL_STATE &aRhs) const
bool Pop()
Restore state of the tool from stack.
bool pendingWait
Flag defining if the tool is waiting for any event (i.e.
bool pendingContextMenu
Is there a context menu being displayed.
void Push()
Store the current state of the tool on stack.
CONTEXT_MENU_TRIGGER contextMenuTrigger
Defines when the context menu is opened.
void resetRuntimeState()
Resets runtime-only state that must not leak across tool activations.
TOOL_EVENT initialEvent
The first event that triggered activation of the tool.
KIGFX::VC_SETTINGS vcSettings
VIEW_CONTROLS settings to preserve settings when the tools are switched.
TOOL_STATE(const TOOL_STATE &aState)
TOOL_STATE(TOOL_BASE *aTool)
ACTION_MENU * contextMenu
Context menu currently used by the tool.
bool idle
Is the tool active (pending execution) or disabled at the moment.
std::vector< TRANSITION > transitions
List of possible transitions (ie.
void clear()
Restores the initial state.
TOOL_EVENT_LIST waitEvents
List of events the tool is currently waiting for.
COROUTINE< int, const TOOL_EVENT & > * cofunc
Tool execution context.
bool shutdown
Should the tool shutdown during next execution.
std::stack< std::unique_ptr< TOOL_STATE > > stateStack
Stack preserving previous states of a TOOL.
TOOL_BASE * theTool
The tool itself.
TOOL_EVENT wakeupEvent
The event that triggered the execution/wakeup of the tool after Wait() call.
TOOL_STATE & operator=(const TOOL_STATE &aState)
bool operator==(const TOOL_MANAGER::TOOL_STATE &aRhs) const
VECTOR2I end
std::function< int(const TOOL_EVENT &)> TOOL_STATE_FUNC
Definition tool_base.h:54
int TOOL_ID
Unique identifier for tools.
Definition tool_base.h:52
@ INTERACTIVE
Tool that interacts with the user.
Definition tool_base.h:45
@ TA_ANY
Definition tool_event.h:122
@ TA_CHOICE_MENU_CHOICE
Context menu choice.
Definition tool_event.h:94
@ TA_ACTIVATE
Tool activation event.
Definition tool_event.h:111
@ TA_CHOICE_MENU_CLOSED
Context menu is closed, no matter whether anything has been chosen or not.
Definition tool_event.h:97
@ TA_PRIME
Tool priming event (a special mouse click).
Definition tool_event.h:120
@ TA_KEY_PRESSED
Definition tool_event.h:72
@ TA_CANCEL_TOOL
Tool cancel event.
Definition tool_event.h:86
CONTEXT_MENU_TRIGGER
Defines when a context menu is opened.
Definition tool_event.h:150
@ CMENU_NOW
Right now (after TOOL_INTERACTIVE::SetContextMenu).
Definition tool_event.h:152
@ CMENU_OFF
Never.
Definition tool_event.h:153
@ CMENU_BUTTON
On the right button.
Definition tool_event.h:151
@ STS_CANCELLED
Definition tool_event.h:160
@ STS_FINISHED
Definition tool_event.h:159
@ STS_RUNNING
Definition tool_event.h:158
@ TC_ANY
Definition tool_event.h:56
@ TC_COMMAND
Definition tool_event.h:53
@ TC_MOUSE
Definition tool_event.h:51
@ TC_MESSAGE
Definition tool_event.h:54
@ BUT_LEFT
Definition tool_event.h:128
@ BUT_RIGHT
Definition tool_event.h:129
wxLogTrace helper definitions.
VECTOR2< double > VECTOR2D
Definition vector2d.h:682
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)
Definition vector2wx.h:36