kicad/pcbnew/dialogs/dialog_global_deletion.cpp

267 lines
7.9 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
*
* 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
*/
#include <functional>
using namespace std::placeholders;
2010-11-26 20:05:31 +00:00
#include <confirm.h>
2018-01-29 20:58:58 +00:00
#include <pcb_edit_frame.h>
#include <ratsnest/ratsnest_data.h>
#include <board_commit.h>
#include <board.h>
#include <footprint.h>
2021-06-11 21:07:02 +00:00
#include <pcb_track.h>
#include <tool/tool_manager.h>
#include <tools/pcb_actions.h>
#include <tools/global_edit_tool.h>
#include <dialog_global_deletion.h>
2010-11-26 20:05:31 +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;
m_currentLayer = F_Cu;
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() );
m_sdbSizer1OK->SetDefault();
2010-11-26 20:05:31 +00:00
SetFocus();
GetSizer()->SetSizeHints( this );
2010-11-26 20:05:31 +00:00
Centre();
}
int GLOBAL_EDIT_TOOL::GlobalDeletions( const TOOL_EVENT& aEvent )
2010-11-26 20:05:31 +00:00
{
PCB_EDIT_FRAME* editFrame = getEditFrame<PCB_EDIT_FRAME>();
DIALOG_GLOBAL_DELETION dlg( editFrame );
dlg.SetCurrentLayer( frame()->GetActiveLayer() );
if( dlg.ShowModal() == wxID_OK )
dlg.DoGlobalDeletions();
return 0;
2010-11-26 20:05:31 +00:00
}
void DIALOG_GLOBAL_DELETION::SetCurrentLayer( LAYER_NUM aLayer )
{
m_currentLayer = aLayer;
2014-06-29 13:05:51 +00:00
m_textCtrlCurrLayer->SetValue( m_Parent->GetBoard()->GetLayerName( ToLAYER_ID( aLayer ) ) );
}
void DIALOG_GLOBAL_DELETION::onCheckDeleteTracks( wxCommandEvent& event )
{
m_trackFilterLocked->Enable( m_delTracks->GetValue() );
m_trackFilterUnlocked->Enable( m_delTracks->GetValue() );
m_trackFilterVias->Enable( m_delTracks->GetValue() );
}
2010-11-26 20:05:31 +00:00
void DIALOG_GLOBAL_DELETION::onCheckDeleteFootprints( wxCommandEvent& event )
{
m_footprintFilterLocked->Enable( m_delFootprints->GetValue() );
m_footprintFilterUnlocked->Enable( m_delFootprints->GetValue() );
}
void DIALOG_GLOBAL_DELETION::onCheckDeleteDrawings( wxCommandEvent& event )
{
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 );
}
void DIALOG_GLOBAL_DELETION::DoGlobalDeletions()
2010-11-26 20:05:31 +00:00
{
bool gen_rastnest = false;
// Clear selection before removing any items
m_Parent->GetToolManager()->RunAction( PCB_ACTIONS::selectionClear, true );
2021-04-04 09:32:24 +00:00
bool delete_all = false;
if( m_delAll->GetValue() )
2010-11-26 20:05:31 +00:00
{
if( !IsOK( GetParent(), _( "Are you sure you want to delete the entire board?" ) ) )
return;
2021-04-04 09:32:24 +00:00
delete_all = true;
2010-11-26 20:05:31 +00:00
}
else if( !IsOK( GetParent(), _( "Are you sure you want to delete the selected items?" ) ) )
{
return;
}
2010-11-26 20:05:31 +00:00
2021-04-04 09:32:24 +00:00
BOARD* board = m_Parent->GetBoard();
BOARD_COMMIT commit( m_Parent );
LSET layers_filter = LSET().set();
if( m_rbLayersOption->GetSelection() != 0 ) // Use current layer only
layers_filter = LSET( ToLAYER_ID( m_currentLayer ) );
2021-04-04 09:32:24 +00:00
if( delete_all || m_delZones->GetValue() )
{
int area_index = 0;
2021-04-04 09:32:24 +00:00
auto item = board->GetArea( area_index );
2010-11-26 20:05:31 +00:00
while( item )
{
2021-04-04 09:32:24 +00:00
if( delete_all || layers_filter[item->GetLayer()] )
{
commit.Remove( item );
gen_rastnest = true;
}
area_index++;
2021-04-04 09:32:24 +00:00
item = board->GetArea( area_index );
2010-11-26 20:05:31 +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();
2021-04-04 09:32:24 +00:00
if( delete_all || delete_shapes || delete_texts )
{
// Layer mask for texts
LSET del_text_layers = layers_filter;
// Layer mask for drawings
LSET masque_layer;
if( m_delDrawings->GetValue() )
masque_layer = LSET::AllNonCuMask().set( Edge_Cuts, false );
if( m_delBoardEdges->GetValue() )
masque_layer.set( Edge_Cuts );
2010-11-26 20:05:31 +00:00
masque_layer &= layers_filter;
2010-11-26 20:05:31 +00:00
2021-04-04 09:32:24 +00:00
for( BOARD_ITEM* item : board->Drawings() )
{
2021-04-04 09:32:24 +00:00
KICAD_T type = item->Type();
LAYER_NUM layer = item->GetLayer();
2021-04-04 09:32:24 +00:00
if( !delete_all )
2010-11-26 20:05:31 +00:00
{
if( type == PCB_SHAPE_T )
{
2021-04-04 09:32:24 +00:00
if( !delete_shapes || !masque_layer[layer] )
continue;
2021-04-04 09:32:24 +00:00
if( item->IsLocked() && !m_drawingFilterLocked->GetValue() )
continue;
2021-04-04 09:32:24 +00:00
if( !item->IsLocked() && !m_drawingFilterUnlocked->GetValue() )
continue;
}
else if( type == PCB_TEXT_T )
{
2021-04-04 09:32:24 +00:00
if( !delete_texts || !del_text_layers[layer] )
continue;
}
2010-11-26 20:05:31 +00:00
}
2021-04-04 09:32:24 +00:00
commit.Remove( item );
2010-11-26 20:05:31 +00:00
}
}
2010-11-26 20:05:31 +00:00
2021-04-04 09:32:24 +00:00
if( delete_all || m_delFootprints->GetValue() )
{
2021-04-04 09:32:24 +00:00
for( FOOTPRINT* footprint : board->Footprints() )
2010-11-26 20:05:31 +00:00
{
2021-04-04 09:32:24 +00:00
if( !delete_all )
2010-11-26 20:05:31 +00:00
{
if( footprint->IsLocked() && !m_footprintFilterLocked->GetValue() )
continue;
if( !footprint->IsLocked() && !m_footprintFilterUnlocked->GetValue() )
continue;
if( !layers_filter[footprint->GetLayer()] )
continue;
2010-11-26 20:05:31 +00:00
}
commit.Remove( footprint );
gen_rastnest = true;
2010-11-26 20:05:31 +00:00
}
}
2010-11-26 20:05:31 +00:00
2021-04-04 09:32:24 +00:00
if( delete_all || m_delTracks->GetValue() )
{
2021-06-11 21:07:02 +00:00
for( PCB_TRACK* track : board->Tracks() )
{
2021-04-04 09:32:24 +00:00
if( !delete_all )
{
if( track->Type() == PCB_TRACE_T )
{
if( track->IsLocked() && !m_trackFilterLocked->GetValue() )
continue;
if( !track->IsLocked() && !m_trackFilterUnlocked->GetValue() )
continue;
}
if( ( track->Type() == PCB_VIA_T ) && !m_trackFilterVias->GetValue() )
continue;
if( ( track->GetLayerSet() & layers_filter ) == 0 )
continue;
2010-11-26 20:05:31 +00:00
}
commit.Remove( track );
gen_rastnest = true;
}
}
2010-11-26 20:05:31 +00:00
commit.Push( "Global delete" );
2010-11-26 20:05:31 +00:00
if( m_delMarkers->GetValue() )
2021-04-04 09:32:24 +00:00
board->DeleteMARKERs();
if( gen_rastnest )
2019-05-30 15:11:17 +00:00
m_Parent->Compile_Ratsnest( true );
// There is a chance that some of tracks have changed their nets, so rebuild ratsnest
// from scratch.
m_Parent->GetCanvas()->Refresh();
2010-11-26 20:05:31 +00:00
}