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
|
2022-11-14 23:39:08 +00:00
|
|
|
* Copyright (C) 2019-2022 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"
|
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"
|
2015-06-18 17:51:51 +02:00
|
|
|
#include <view/view_controls.h>
|
2022-11-14 23:39:08 +00:00
|
|
|
#include <tools/zone_filler_tool.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" ),
|
|
|
|
PICKER_TOOL_BASE()
|
2015-06-18 17:51:51 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2022-11-07 19:10:24 +00:00
|
|
|
if( aEvent.IsAction( &ACTIONS::pickerTool ) )
|
|
|
|
frame->PushTool( aEvent );
|
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() );
|
2020-12-28 17:26:39 -05:00
|
|
|
cursorPos = grid.BestSnapAnchor( cursorPos, nullptr );
|
|
|
|
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;
|
2019-05-19 22:04:04 +01:00
|
|
|
m_menu.ShowContextMenu( dummy );
|
|
|
|
}
|
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 ) )
|
|
|
|
frame->PopTool( aEvent );
|
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
|
|
|
|
|
|
|
|
|
|
|
void PCB_PICKER_TOOL::setTransitions()
|
|
|
|
{
|
|
|
|
Go( &PCB_PICKER_TOOL::Main, ACTIONS::pickerTool.MakeEvent() );
|
|
|
|
Go( &PCB_PICKER_TOOL::Main, ACTIONS::pickerSubTool.MakeEvent() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|