2014-04-04 13:43:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-03-11 10:02:45 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-04-04 13:43:30 +00:00
|
|
|
*
|
|
|
|
* 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
|
2010-11-26 20:05:31 +00:00
|
|
|
*/
|
|
|
|
|
2016-06-29 10:23:11 +00:00
|
|
|
#include <functional>
|
|
|
|
using namespace std::placeholders;
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2020-06-16 18:15:14 +00:00
|
|
|
#include <ratsnest/ratsnest_data.h>
|
2016-08-17 15:24:04 +00:00
|
|
|
#include <board_commit.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2021-06-11 21:07:02 +00:00
|
|
|
#include <pcb_track.h>
|
2017-05-16 07:16:03 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/pcb_actions.h>
|
2019-06-03 20:06:58 +00:00
|
|
|
#include <tools/global_edit_tool.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_global_deletion.h>
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
DIALOG_GLOBAL_DELETION::DIALOG_GLOBAL_DELETION( PCB_EDIT_FRAME* parent ) :
|
|
|
|
DIALOG_GLOBAL_DELETION_BASE( parent )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
|
|
|
m_Parent = parent;
|
2014-06-24 16:17:18 +00:00
|
|
|
m_currentLayer = F_Cu;
|
2021-01-07 17:35:27 +00:00
|
|
|
m_trackFilterLocked->Enable( m_delTracks->GetValue() );
|
|
|
|
m_trackFilterUnlocked->Enable( m_delTracks->GetValue() );
|
|
|
|
m_trackFilterVias->Enable( m_delTracks->GetValue() );
|
|
|
|
m_footprintFilterLocked->Enable( m_delFootprints->GetValue() );
|
|
|
|
m_footprintFilterUnlocked->Enable( m_delFootprints->GetValue() );
|
|
|
|
m_drawingFilterLocked->Enable( m_delDrawings->GetValue() );
|
|
|
|
m_drawingFilterUnlocked->Enable( m_delDrawings->GetValue() );
|
2021-11-16 19:39:58 +00:00
|
|
|
|
|
|
|
SetupStandardButtons();
|
|
|
|
|
2010-11-26 20:05:31 +00:00
|
|
|
SetFocus();
|
2014-03-01 17:20:22 +00:00
|
|
|
GetSizer()->SetSizeHints( this );
|
2010-11-26 20:05:31 +00:00
|
|
|
Centre();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-03 20:06:58 +00:00
|
|
|
int GLOBAL_EDIT_TOOL::GlobalDeletions( const TOOL_EVENT& aEvent )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2019-06-09 23:21:50 +00:00
|
|
|
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
|
|
|
|
DIALOG_GLOBAL_DELETION dlg( editFrame );
|
2020-10-03 14:40:36 +00:00
|
|
|
|
2019-06-03 20:06:58 +00:00
|
|
|
dlg.SetCurrentLayer( frame()->GetActiveLayer() );
|
2021-07-21 21:37:49 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
|
|
|
dlg.DoGlobalDeletions();
|
|
|
|
|
2019-06-03 20:06:58 +00:00
|
|
|
return 0;
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2021-07-21 23:14:56 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::SetCurrentLayer( int aLayer )
|
2012-01-21 15:02:49 +00:00
|
|
|
{
|
|
|
|
m_currentLayer = aLayer;
|
2014-06-29 13:05:51 +00:00
|
|
|
m_textCtrlCurrLayer->SetValue( m_Parent->GetBoard()->GetLayerName( ToLAYER_ID( aLayer ) ) );
|
2012-01-21 15:02:49 +00:00
|
|
|
}
|
|
|
|
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::onCheckDeleteTracks( wxCommandEvent& event )
|
2012-01-21 15:02:49 +00:00
|
|
|
{
|
2021-01-07 17:35:27 +00:00
|
|
|
m_trackFilterLocked->Enable( m_delTracks->GetValue() );
|
|
|
|
m_trackFilterUnlocked->Enable( m_delTracks->GetValue() );
|
|
|
|
m_trackFilterVias->Enable( m_delTracks->GetValue() );
|
2012-01-21 15:02:49 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::onCheckDeleteFootprints( wxCommandEvent& event )
|
2014-03-01 17:20:22 +00:00
|
|
|
{
|
2021-01-07 17:35:27 +00:00
|
|
|
m_footprintFilterLocked->Enable( m_delFootprints->GetValue() );
|
|
|
|
m_footprintFilterUnlocked->Enable( m_delFootprints->GetValue() );
|
2014-03-01 17:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::onCheckDeleteDrawings( wxCommandEvent& event )
|
|
|
|
{
|
2021-10-19 13:35:34 +00:00
|
|
|
bool enable = m_delDrawings->GetValue() || m_delBoardEdges->GetValue();
|
|
|
|
|
|
|
|
m_drawingFilterLocked->Enable( enable );
|
|
|
|
m_drawingFilterUnlocked->Enable( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_GLOBAL_DELETION::onCheckDeleteBoardOutlines( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
bool enable = m_delDrawings->GetValue() || m_delBoardEdges->GetValue();
|
|
|
|
|
|
|
|
m_drawingFilterLocked->Enable( enable );
|
|
|
|
m_drawingFilterUnlocked->Enable( enable );
|
2021-01-07 17:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::DoGlobalDeletions()
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
|
|
|
bool gen_rastnest = false;
|
2022-07-20 13:48:53 +00:00
|
|
|
bool delete_all = m_delAll->GetValue();
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2022-07-20 13:48:53 +00:00
|
|
|
// Clear selection before removing any items
|
2023-06-26 22:16:51 +00:00
|
|
|
m_Parent->GetToolManager()->RunAction( PCB_ACTIONS::selectionClear );
|
2022-07-20 13:48:53 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
BOARD* board = m_Parent->GetBoard();
|
2021-04-04 09:26:12 +00:00
|
|
|
BOARD_COMMIT commit( m_Parent );
|
2022-07-20 13:48:53 +00:00
|
|
|
LSET all_layers = LSET().set();
|
|
|
|
LSET layers_filter;
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2022-07-20 13:48:53 +00:00
|
|
|
if( m_rbLayersOption->GetSelection() != 0 )
|
|
|
|
layers_filter.set( m_currentLayer );
|
|
|
|
else
|
|
|
|
layers_filter = all_layers;
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2022-07-20 13:48:53 +00:00
|
|
|
auto processItem =
|
|
|
|
[&]( BOARD_ITEM* item, const LSET& layers_mask )
|
|
|
|
{
|
|
|
|
if( ( item->GetLayerSet() & layers_mask ).any() )
|
|
|
|
commit.Remove( item );
|
|
|
|
};
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2022-07-20 13:48:53 +00:00
|
|
|
auto processConnectedItem =
|
|
|
|
[&]( BOARD_ITEM* item, const LSET& layers_mask )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( ( item->GetLayerSet() & layers_mask ).any() )
|
|
|
|
{
|
|
|
|
commit.Remove( item );
|
|
|
|
gen_rastnest = true;
|
|
|
|
}
|
|
|
|
};
|
2015-09-01 09:13:22 +00:00
|
|
|
|
2023-03-19 20:18:04 +00:00
|
|
|
for( ZONE* zone : board->Zones() )
|
2022-07-20 13:48:53 +00:00
|
|
|
{
|
2023-03-19 20:18:04 +00:00
|
|
|
if( delete_all )
|
|
|
|
{
|
|
|
|
processConnectedItem( zone, all_layers );
|
|
|
|
}
|
|
|
|
else if( zone->IsTeardropArea() )
|
|
|
|
{
|
|
|
|
if( m_delTeardrops->GetValue() )
|
|
|
|
processConnectedItem( zone, layers_filter );
|
|
|
|
}
|
|
|
|
else
|
2022-07-20 13:48:53 +00:00
|
|
|
{
|
2023-03-19 20:18:04 +00:00
|
|
|
if( m_delZones->GetValue() )
|
2022-07-20 13:48:53 +00:00
|
|
|
processConnectedItem( zone, layers_filter );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
bool delete_shapes = m_delDrawings->GetValue() || m_delBoardEdges->GetValue();
|
|
|
|
bool delete_texts = m_delTexts->GetValue();
|
2016-10-20 15:15:27 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
if( delete_all || delete_shapes || delete_texts )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2016-10-20 15:15:27 +00:00
|
|
|
// Layer mask for drawings
|
2022-07-20 13:48:53 +00:00
|
|
|
LSET drawing_layers_filter;
|
2012-01-21 15:02:49 +00:00
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
if( m_delDrawings->GetValue() )
|
2022-07-20 13:48:53 +00:00
|
|
|
drawing_layers_filter = LSET::AllNonCuMask().set( Edge_Cuts, false );
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
if( m_delBoardEdges->GetValue() )
|
2022-07-20 13:48:53 +00:00
|
|
|
drawing_layers_filter.set( Edge_Cuts );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2022-07-20 13:48:53 +00:00
|
|
|
drawing_layers_filter &= layers_filter;
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
for( BOARD_ITEM* item : board->Drawings() )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( delete_all )
|
|
|
|
{
|
|
|
|
processItem( item, all_layers );
|
|
|
|
}
|
|
|
|
else if( delete_shapes )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( item->Type() == PCB_SHAPE_T && item->IsLocked() )
|
2021-01-07 17:35:27 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( m_drawingFilterLocked->GetValue() )
|
|
|
|
processItem( item, drawing_layers_filter );
|
2021-01-07 17:35:27 +00:00
|
|
|
}
|
2022-07-20 13:48:53 +00:00
|
|
|
else if( item->Type() == PCB_SHAPE_T && !item->IsLocked() )
|
2021-01-07 17:35:27 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( m_drawingFilterUnlocked->GetValue() )
|
|
|
|
processItem( item, drawing_layers_filter );
|
2021-01-07 17:35:27 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2022-07-20 13:48:53 +00:00
|
|
|
else if( delete_texts )
|
|
|
|
{
|
|
|
|
if( item->Type() == PCB_TEXT_T || item->Type() == PCB_TEXTBOX_T )
|
|
|
|
processItem( item, layers_filter );
|
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
if( delete_all || m_delFootprints->GetValue() )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2021-04-04 09:32:24 +00:00
|
|
|
for( FOOTPRINT* footprint : board->Footprints() )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( delete_all )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
processConnectedItem( footprint, all_layers );
|
|
|
|
}
|
|
|
|
else if( footprint->IsLocked() )
|
|
|
|
{
|
|
|
|
if( m_footprintFilterLocked->GetValue() )
|
|
|
|
processConnectedItem( footprint, layers_filter );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( m_footprintFilterUnlocked->GetValue() )
|
|
|
|
processConnectedItem( footprint, layers_filter );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-04-04 09:32:24 +00:00
|
|
|
if( delete_all || m_delTracks->GetValue() )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2021-06-11 21:07:02 +00:00
|
|
|
for( PCB_TRACK* track : board->Tracks() )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
if( delete_all )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2022-07-20 13:48:53 +00:00
|
|
|
processConnectedItem( track, all_layers );
|
|
|
|
}
|
|
|
|
else if( track->Type() == PCB_VIA_T )
|
|
|
|
{
|
|
|
|
if( m_trackFilterVias->GetValue() )
|
|
|
|
processConnectedItem( track, layers_filter );
|
|
|
|
}
|
|
|
|
else if( track->IsLocked() )
|
|
|
|
{
|
|
|
|
if( m_trackFilterLocked->GetValue() )
|
|
|
|
processConnectedItem( track, layers_filter );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( m_trackFilterUnlocked->GetValue() )
|
|
|
|
processConnectedItem( track, layers_filter );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2022-02-04 22:44:59 +00:00
|
|
|
commit.Push( wxT( "Global delete" ) );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-01-07 17:35:27 +00:00
|
|
|
if( m_delMarkers->GetValue() )
|
2021-04-04 09:32:24 +00:00
|
|
|
board->DeleteMARKERs();
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( gen_rastnest )
|
2019-05-30 15:11:17 +00:00
|
|
|
m_Parent->Compile_Ratsnest( true );
|
2014-07-09 13:10:32 +00:00
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
// There is a chance that some of tracks have changed their nets, so rebuild ratsnest
|
|
|
|
// from scratch.
|
2019-06-13 17:28:55 +00:00
|
|
|
m_Parent->GetCanvas()->Refresh();
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|