2015-06-18 17:51:51 +02:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2015-06-18 17:51:51 +02:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
#include "pcb_picker_tool.h"
|
2024-10-28 21:23:56 +08:00
|
|
|
|
2017-02-21 13:42:08 +01:00
|
|
|
#include "pcb_actions.h"
|
2021-01-16 23:17:32 +00:00
|
|
|
#include "pcb_grid_helper.h"
|
2023-09-18 19:52:27 -04:00
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
2024-10-28 21:23:56 +08:00
|
|
|
#include <kiplatform/ui.h>
|
|
|
|
#include <status_popup.h>
|
2025-08-05 16:10:17 -07:00
|
|
|
#include <tool/tool_manager.h>
|
2024-10-28 21:23:56 +08:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2022-11-14 23:39:08 +00:00
|
|
|
#include <tools/zone_filler_tool.h>
|
2024-10-28 21:23:56 +08:00
|
|
|
#include <view/view_controls.h>
|
2018-02-11 01:15:16 +00:00
|
|
|
|
2017-02-20 13:10:20 -05:00
|
|
|
|
2021-01-31 09:50:19 -05:00
|
|
|
PCB_PICKER_TOOL::PCB_PICKER_TOOL() :
|
|
|
|
PCB_TOOL_BASE( "pcbnew.InteractivePicker" ),
|
2024-09-11 17:40:06 +01:00
|
|
|
PICKER_TOOL_BASE() // calls reset()
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-09-11 21:40:43 +01:00
|
|
|
bool PCB_PICKER_TOOL::Init()
|
|
|
|
{
|
|
|
|
PCB_BASE_FRAME* frame = getEditFrame<PCB_BASE_FRAME>();
|
|
|
|
CONDITIONAL_MENU& menu = m_menu->GetMenu();
|
|
|
|
|
2025-06-08 12:01:06 +01:00
|
|
|
const auto snapIsSetToAllLayers =
|
2025-06-16 22:30:02 -04:00
|
|
|
[=]( const SELECTION& aSel )
|
2025-06-08 12:01:06 +01:00
|
|
|
{
|
2025-06-16 22:30:02 -04:00
|
|
|
if( frame )
|
|
|
|
return frame->GetMagneticItemsSettings()->allLayers;
|
|
|
|
else
|
|
|
|
return false;
|
2025-06-08 12:01:06 +01:00
|
|
|
};
|
2024-09-11 21:40:43 +01:00
|
|
|
|
|
|
|
// "Cancel" goes at the top of the context menu when a tool is active
|
|
|
|
menu.AddItem( ACTIONS::cancelInteractive, SELECTION_CONDITIONS::ShowAlways, 1 );
|
|
|
|
|
|
|
|
menu.AddSeparator( 1 );
|
|
|
|
|
|
|
|
menu.AddItem( PCB_ACTIONS::magneticSnapAllLayers, !snapIsSetToAllLayers, 1 );
|
|
|
|
menu.AddItem( PCB_ACTIONS::magneticSnapActiveLayer, snapIsSetToAllLayers, 1 );
|
|
|
|
|
|
|
|
menu.AddSeparator( 1 );
|
|
|
|
|
|
|
|
if( frame )
|
|
|
|
frame->AddStandardSubMenus( *m_menu.get() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
int PCB_PICKER_TOOL::Main( const TOOL_EVENT& aEvent )
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
|
|
|
KIGFX::VIEW_CONTROLS* controls = getViewControls();
|
2021-01-31 09:50:19 -05:00
|
|
|
PCB_BASE_FRAME* frame = getEditFrame<PCB_BASE_FRAME>();
|
|
|
|
PCB_GRID_HELPER grid( m_toolMgr, frame->GetMagneticItemsSettings() );
|
2020-06-13 13:33:29 +01:00
|
|
|
int finalize_state = WAIT_CANCEL;
|
2018-11-20 20:10:46 -08:00
|
|
|
|
2023-05-01 11:01:48 -04:00
|
|
|
TOOL_EVENT sourceEvent;
|
|
|
|
|
2022-11-07 19:10:24 +00:00
|
|
|
if( aEvent.IsAction( &ACTIONS::pickerTool ) )
|
2023-05-01 11:01:48 -04:00
|
|
|
{
|
|
|
|
wxCHECK_MSG( aEvent.Parameter<const TOOL_EVENT*>(), -1,
|
|
|
|
wxT( "PCB_PICKER_TOOL::Main() called without a source event" ) );
|
|
|
|
|
|
|
|
sourceEvent = *aEvent.Parameter<const TOOL_EVENT*>();
|
|
|
|
frame->PushTool( sourceEvent );
|
|
|
|
}
|
2020-08-24 22:44:34 +01:00
|
|
|
|
2019-07-16 00:44:01 +01:00
|
|
|
Activate();
|
2015-07-24 10:58:47 +02:00
|
|
|
setControls();
|
2015-06-18 17:51:51 +02:00
|
|
|
|
2022-09-14 13:31:56 -04:00
|
|
|
auto setCursor =
|
|
|
|
[&]()
|
2020-10-08 07:39:51 -04:00
|
|
|
{
|
|
|
|
frame->GetCanvas()->SetCurrentCursor( m_cursor );
|
2022-09-13 01:40:23 +01:00
|
|
|
controls->ShowCursor( true );
|
2020-10-08 07:39:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Set initial cursor
|
|
|
|
setCursor();
|
2020-12-28 17:26:39 -05:00
|
|
|
VECTOR2D cursorPos;
|
2020-10-08 07:39:51 -04:00
|
|
|
|
2019-06-17 14:43:22 +01:00
|
|
|
while( TOOL_EVENT* evt = Wait() )
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
2020-10-08 07:39:51 -04:00
|
|
|
setCursor();
|
2020-12-28 17:26:39 -05:00
|
|
|
cursorPos = controls->GetMousePosition();
|
2019-07-16 00:44:01 +01:00
|
|
|
|
2020-12-28 17:26:39 -05:00
|
|
|
if( m_snap )
|
|
|
|
{
|
|
|
|
grid.SetSnap( !evt->Modifier( MD_SHIFT ) );
|
2021-05-09 20:17:01 +01:00
|
|
|
grid.SetUseGrid( getView()->GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
|
2024-09-11 17:40:06 +01:00
|
|
|
cursorPos = grid.BestSnapAnchor( cursorPos, m_layerMask );
|
2020-12-28 17:26:39 -05:00
|
|
|
controls->ForceCursorPosition( true, cursorPos );
|
|
|
|
}
|
2017-09-25 00:18:51 +02:00
|
|
|
|
2019-08-30 10:32:43 +01:00
|
|
|
if( evt->IsCancelInteractive() || evt->IsActivate() )
|
|
|
|
{
|
|
|
|
if( m_cancelHandler )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
(*m_cancelHandler)();
|
|
|
|
}
|
2020-08-18 10:17:16 -04:00
|
|
|
catch( std::exception& )
|
2019-08-30 10:32:43 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Activating a new tool may have alternate finalization from canceling the current tool
|
|
|
|
if( evt->IsActivate() )
|
|
|
|
finalize_state = END_ACTIVATE;
|
|
|
|
else
|
|
|
|
finalize_state = EVT_CANCEL;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if( evt->IsClick( BUT_LEFT ) )
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
|
|
|
bool getNext = false;
|
|
|
|
|
2018-10-03 22:10:50 -07:00
|
|
|
m_picked = cursorPos;
|
2017-11-01 12:14:16 +01:00
|
|
|
|
2015-06-18 17:51:51 +02:00
|
|
|
if( m_clickHandler )
|
2015-07-30 13:49:35 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
getNext = (*m_clickHandler)( *m_picked );
|
|
|
|
}
|
2020-08-18 10:17:16 -04:00
|
|
|
catch( std::exception& )
|
2015-07-30 13:49:35 +02:00
|
|
|
{
|
2018-11-20 20:10:46 -08:00
|
|
|
finalize_state = EXCEPTION_CANCEL;
|
2015-07-30 13:49:35 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 17:51:51 +02:00
|
|
|
|
|
|
|
if( !getNext )
|
2018-11-20 20:10:46 -08:00
|
|
|
{
|
|
|
|
finalize_state = CLICK_CANCEL;
|
2015-06-18 17:51:51 +02:00
|
|
|
break;
|
2018-11-20 20:10:46 -08:00
|
|
|
}
|
2015-07-24 10:58:47 +02:00
|
|
|
else
|
2022-04-10 23:14:30 +01:00
|
|
|
{
|
2016-01-29 10:56:29 +01:00
|
|
|
setControls();
|
2022-04-10 23:14:30 +01:00
|
|
|
}
|
2015-06-18 17:51:51 +02:00
|
|
|
}
|
2019-06-25 14:01:22 +01:00
|
|
|
else if( evt->IsMotion() )
|
|
|
|
{
|
|
|
|
if( m_motionHandler )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
(*m_motionHandler)( cursorPos );
|
|
|
|
}
|
2020-08-18 10:17:16 -04:00
|
|
|
catch( std::exception& )
|
2019-06-25 14:01:22 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-30 10:32:43 +01:00
|
|
|
else if( evt->IsDblClick( BUT_LEFT ) || evt->IsDrag( BUT_LEFT ) )
|
2018-08-22 19:05:40 +01:00
|
|
|
{
|
2019-08-30 10:32:43 +01:00
|
|
|
// Not currently used, but we don't want to pass them either
|
2018-08-22 19:05:40 +01:00
|
|
|
}
|
|
|
|
else if( evt->IsClick( BUT_RIGHT ) )
|
2019-05-19 22:04:04 +01:00
|
|
|
{
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION dummy;
|
2024-07-30 17:57:33 +02:00
|
|
|
m_menu->ShowContextMenu( dummy );
|
2019-05-19 22:04:04 +01:00
|
|
|
}
|
2022-11-14 23:39:08 +00:00
|
|
|
// TODO: It'd be nice to be able to say "don't allow any non-trivial editing actions",
|
|
|
|
// but we don't at present have that, so we just knock out some of the egregious ones.
|
|
|
|
else if( ZONE_FILLER_TOOL::IsZoneFillAction( evt ) )
|
|
|
|
{
|
|
|
|
wxBell();
|
|
|
|
}
|
2016-01-25 16:16:05 +01:00
|
|
|
else
|
2022-04-10 23:14:30 +01:00
|
|
|
{
|
2019-06-16 12:06:49 +01:00
|
|
|
evt->SetPassEvent();
|
2022-04-10 23:14:30 +01:00
|
|
|
}
|
2015-06-18 17:51:51 +02:00
|
|
|
}
|
|
|
|
|
2018-11-20 20:10:46 -08:00
|
|
|
if( m_finalizeHandler )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
(*m_finalizeHandler)( finalize_state );
|
|
|
|
}
|
2020-08-18 10:17:16 -04:00
|
|
|
catch( std::exception& )
|
2018-11-20 20:10:46 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 17:51:51 +02:00
|
|
|
reset();
|
2017-09-25 00:18:51 +02:00
|
|
|
controls->ForceCursorPosition( false );
|
2022-09-13 01:40:23 +01:00
|
|
|
controls->ShowCursor( false );
|
2020-08-24 22:44:34 +01:00
|
|
|
|
2022-11-07 19:10:24 +00:00
|
|
|
if( aEvent.IsAction( &ACTIONS::pickerTool ) )
|
2023-05-01 11:01:48 -04:00
|
|
|
frame->PopTool( sourceEvent );
|
2020-08-24 22:44:34 +01:00
|
|
|
|
2015-06-18 17:51:51 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
void PCB_PICKER_TOOL::reset()
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
2018-10-03 22:10:50 -07:00
|
|
|
m_layerMask = LSET::AllLayersMask();
|
2021-01-31 09:50:19 -05:00
|
|
|
PICKER_TOOL_BASE::reset();
|
2015-07-24 10:58:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
void PCB_PICKER_TOOL::setControls()
|
2015-07-24 10:58:47 +02:00
|
|
|
{
|
|
|
|
KIGFX::VIEW_CONTROLS* controls = getViewControls();
|
|
|
|
|
2019-07-02 21:09:23 +01:00
|
|
|
controls->CaptureCursor( false );
|
|
|
|
controls->SetAutoPan( false );
|
2015-06-18 17:51:51 +02:00
|
|
|
}
|
2022-11-07 19:10:24 +00:00
|
|
|
|
|
|
|
|
2024-10-28 21:23:56 +08:00
|
|
|
int PCB_PICKER_TOOL::SelectPointInteractively( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
INTERACTIVE_PARAMS params = aEvent.Parameter<INTERACTIVE_PARAMS>();
|
|
|
|
STATUS_TEXT_POPUP statusPopup( frame() );
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
wxCHECK( params.m_Receiver, -1 );
|
|
|
|
|
|
|
|
PCB_GRID_HELPER grid_helper( m_toolMgr, frame()->GetMagneticItemsSettings() );
|
|
|
|
|
2025-04-22 00:26:18 +08:00
|
|
|
// By pushing this tool, we stop the Selection tool popping a disambiuation menu
|
|
|
|
// in cases like returning to the Position Relative dialog after the selection.
|
|
|
|
frame()->PushTool( aEvent );
|
2024-10-28 21:23:56 +08:00
|
|
|
Activate();
|
|
|
|
|
2025-01-09 08:38:32 -05:00
|
|
|
statusPopup.SetText( wxGetTranslation( params.m_Prompt ) );
|
2024-10-28 21:23:56 +08:00
|
|
|
|
|
|
|
const auto sendPoint = [&]( const std::optional<VECTOR2I>& aPoint )
|
|
|
|
{
|
|
|
|
statusPopup.Hide();
|
|
|
|
params.m_Receiver->UpdatePickedPoint( aPoint );
|
|
|
|
};
|
|
|
|
|
2025-07-04 12:10:59 -06:00
|
|
|
SetSnapping( true );
|
|
|
|
SetCursor( KICURSOR::PLACE );
|
|
|
|
ClearHandlers();
|
|
|
|
|
2024-10-28 21:23:56 +08:00
|
|
|
SetClickHandler(
|
|
|
|
[&]( const VECTOR2D& aPoint ) -> bool
|
|
|
|
{
|
|
|
|
std::optional<VECTOR2I> snapped = grid_helper.GetSnappedPoint();
|
|
|
|
|
|
|
|
sendPoint( snapped ? *snapped : VECTOR2I( aPoint ) );
|
|
|
|
|
|
|
|
return false; // got our item; don't need any more
|
|
|
|
} );
|
|
|
|
|
|
|
|
SetMotionHandler(
|
|
|
|
[&]( const VECTOR2D& aPos )
|
|
|
|
{
|
|
|
|
grid_helper.SetSnap( !( CurrentModifiers() & MD_SHIFT ) );
|
|
|
|
statusPopup.Move( KIPLATFORM::UI::GetMousePosition() + wxPoint( 20, -50 ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
SetCancelHandler(
|
|
|
|
[&]()
|
|
|
|
{
|
|
|
|
sendPoint( std::nullopt );
|
|
|
|
} );
|
|
|
|
|
|
|
|
SetFinalizeHandler(
|
|
|
|
[&]( const int& aFinalState )
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
} );
|
|
|
|
|
|
|
|
statusPopup.Move( KIPLATFORM::UI::GetMousePosition() + wxPoint( 20, -50 ) );
|
|
|
|
statusPopup.Popup();
|
|
|
|
canvas()->SetStatusPopup( statusPopup.GetPanel() );
|
|
|
|
|
|
|
|
// Drop into the main event loop
|
|
|
|
Main( aEvent );
|
|
|
|
|
|
|
|
canvas()->SetStatusPopup( nullptr );
|
2025-04-22 00:26:18 +08:00
|
|
|
frame()->PopTool( aEvent );
|
2024-10-28 21:23:56 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PCB_PICKER_TOOL::SelectItemInteractively( const TOOL_EVENT& aEvent )
|
2022-11-07 19:10:24 +00:00
|
|
|
{
|
2024-10-28 21:23:56 +08:00
|
|
|
INTERACTIVE_PARAMS params = aEvent.Parameter<INTERACTIVE_PARAMS>();
|
|
|
|
STATUS_TEXT_POPUP statusPopup( frame() );
|
|
|
|
bool done = false;
|
2024-11-24 12:00:20 -05:00
|
|
|
EDA_ITEM* anchor_item = nullptr;
|
2024-10-28 21:23:56 +08:00
|
|
|
|
|
|
|
PCB_SELECTION_TOOL* selectionTool = m_toolMgr->GetTool<PCB_SELECTION_TOOL>();
|
|
|
|
|
2025-04-22 00:26:18 +08:00
|
|
|
frame()->PushTool( aEvent );
|
2024-10-28 21:23:56 +08:00
|
|
|
Activate();
|
|
|
|
|
2025-01-09 08:38:32 -05:00
|
|
|
statusPopup.SetText( wxGetTranslation( params.m_Prompt ) );
|
2024-10-28 21:23:56 +08:00
|
|
|
|
|
|
|
const auto sendItem = [&]( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
statusPopup.Hide();
|
|
|
|
params.m_Receiver->UpdatePickedItem( aItem );
|
|
|
|
};
|
|
|
|
|
2025-07-04 12:10:59 -06:00
|
|
|
SetCursor( KICURSOR::BULLSEYE );
|
|
|
|
SetSnapping( false );
|
|
|
|
ClearHandlers();
|
|
|
|
|
2024-10-28 21:23:56 +08:00
|
|
|
SetClickHandler(
|
|
|
|
[&]( const VECTOR2D& aPoint ) -> bool
|
|
|
|
{
|
2025-04-02 11:01:22 -04:00
|
|
|
m_toolMgr->RunAction( ACTIONS::selectionClear );
|
2024-10-28 21:23:56 +08:00
|
|
|
const PCB_SELECTION& sel = selectionTool->RequestSelection(
|
|
|
|
[]( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector,
|
|
|
|
PCB_SELECTION_TOOL* sTool )
|
|
|
|
{
|
|
|
|
} );
|
|
|
|
|
|
|
|
if( sel.Empty() )
|
|
|
|
return true; // still looking for an item
|
|
|
|
|
|
|
|
anchor_item = sel.Front();
|
|
|
|
|
2024-11-24 12:00:20 -05:00
|
|
|
if( params.m_ItemFilter && !params.m_ItemFilter( anchor_item ) )
|
|
|
|
return true;
|
|
|
|
|
2024-10-28 21:23:56 +08:00
|
|
|
sendItem( sel.Front() );
|
|
|
|
return false; // got our item; don't need any more
|
|
|
|
} );
|
|
|
|
|
|
|
|
SetMotionHandler(
|
|
|
|
[&]( const VECTOR2D& aPos )
|
|
|
|
{
|
|
|
|
statusPopup.Move( KIPLATFORM::UI::GetMousePosition() + wxPoint( 20, -50 ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
SetCancelHandler(
|
|
|
|
[&]()
|
|
|
|
{
|
2024-11-24 12:00:20 -05:00
|
|
|
if( anchor_item && ( !params.m_ItemFilter || params.m_ItemFilter( anchor_item ) ) )
|
|
|
|
sendItem( anchor_item );
|
2024-10-28 21:23:56 +08:00
|
|
|
} );
|
|
|
|
|
|
|
|
SetFinalizeHandler(
|
|
|
|
[&]( const int& aFinalState )
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
} );
|
|
|
|
|
|
|
|
statusPopup.Move( KIPLATFORM::UI::GetMousePosition() + wxPoint( 20, -50 ) );
|
|
|
|
statusPopup.Popup();
|
|
|
|
canvas()->SetStatusPopup( statusPopup.GetPanel() );
|
|
|
|
|
|
|
|
// Drop into the main event loop
|
|
|
|
Main( aEvent );
|
|
|
|
|
|
|
|
canvas()->SetStatusPopup( nullptr );
|
2025-04-22 00:26:18 +08:00
|
|
|
frame()->PopTool( aEvent );
|
2024-10-28 21:23:56 +08:00
|
|
|
return 0;
|
2022-11-07 19:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-28 21:23:56 +08:00
|
|
|
void PCB_PICKER_TOOL::setTransitions()
|
|
|
|
{
|
|
|
|
// clang-format off
|
|
|
|
Go( &PCB_PICKER_TOOL::Main, ACTIONS::pickerTool.MakeEvent() );
|
|
|
|
Go( &PCB_PICKER_TOOL::Main, ACTIONS::pickerSubTool.MakeEvent() );
|
|
|
|
Go( &PCB_PICKER_TOOL::SelectItemInteractively, PCB_ACTIONS::selectItemInteractively.MakeEvent() );
|
|
|
|
Go( &PCB_PICKER_TOOL::SelectPointInteractively, PCB_ACTIONS::selectPointInteractively.MakeEvent() );
|
|
|
|
// clang-format on
|
|
|
|
}
|