2014-04-04 13:43:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-09-10 20:00:18 +00:00
|
|
|
* Copyright (C) 1992-2015 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 <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <pcbnew.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2014-04-04 13:43:30 +00:00
|
|
|
#include <ratsnest_data.h>
|
2016-08-17 15:24:04 +00:00
|
|
|
#include <board_commit.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_zone.h>
|
|
|
|
|
2017-05-16 07:16:03 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/pcb_actions.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;
|
2012-01-21 15:02:49 +00:00
|
|
|
m_TrackFilterAR->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterLocked->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterNormal->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterVias->Enable( m_DelTracks->GetValue() );
|
2014-03-01 17:20:22 +00:00
|
|
|
m_ModuleFilterLocked->Enable( m_DelModules->GetValue() );
|
|
|
|
m_ModuleFilterNormal->Enable( m_DelModules->GetValue() );
|
2015-09-10 20:00:18 +00:00
|
|
|
m_sdbSizer1OK->SetDefault();
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::InstallPcbGlobalDeleteFrame( const wxPoint& pos )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
|
|
|
DIALOG_GLOBAL_DELETION dlg( this );
|
2014-03-21 10:17:47 +00:00
|
|
|
dlg.SetCurrentLayer( GetActiveLayer() );
|
2012-01-21 15:02:49 +00:00
|
|
|
|
2010-11-26 20:05:31 +00:00
|
|
|
dlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::SetCurrentLayer( LAYER_NUM 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
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::OnCheckDeleteTracks( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
m_TrackFilterAR->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterLocked->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterNormal->Enable( m_DelTracks->GetValue() );
|
|
|
|
m_TrackFilterVias->Enable( m_DelTracks->GetValue() );
|
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2014-03-01 17:20:22 +00:00
|
|
|
|
|
|
|
void DIALOG_GLOBAL_DELETION::OnCheckDeleteModules( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
m_ModuleFilterLocked->Enable( m_DelModules->GetValue() );
|
|
|
|
m_ModuleFilterNormal->Enable( m_DelModules->GetValue() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-15 17:05:59 +00:00
|
|
|
void DIALOG_GLOBAL_DELETION::AcceptPcbDelete()
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
|
|
|
bool gen_rastnest = false;
|
|
|
|
|
2017-05-16 07:16:03 +00:00
|
|
|
// Clear selection before removing any items
|
|
|
|
m_Parent->GetToolManager()->RunAction( PCB_ACTIONS::selectionClear, true );
|
|
|
|
|
2010-11-26 20:05:31 +00:00
|
|
|
m_Parent->SetCurItem( NULL );
|
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
bool delAll = false;
|
|
|
|
|
2010-11-26 20:05:31 +00:00
|
|
|
if( m_DelAlls->GetValue() )
|
|
|
|
{
|
2015-09-01 09:13:22 +00:00
|
|
|
if( !IsOK( this, _( "Are you sure you want to delete the entire board?" ) ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
delAll = true;
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
else if( !IsOK( this, _( "Are you sure you want to delete the selected items?" ) ) )
|
2010-11-26 20:05:31 +00:00
|
|
|
return;
|
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
BOARD* pcb = m_Parent->GetBoard();
|
2016-08-17 15:24:04 +00:00
|
|
|
BOARD_COMMIT commit( m_Parent );
|
2015-09-01 09:13:22 +00:00
|
|
|
BOARD_ITEM* item;
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
LSET layers_filter = LSET().set();
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( m_rbLayersOption->GetSelection() != 0 ) // Use current layer only
|
|
|
|
layers_filter = LSET( ToLAYER_ID( m_currentLayer ) );
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( delAll || m_DelZones->GetValue() )
|
|
|
|
{
|
|
|
|
int area_index = 0;
|
|
|
|
item = pcb->GetArea( area_index );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
while( item )
|
|
|
|
{
|
|
|
|
if( delAll || layers_filter[item->GetLayer()] )
|
|
|
|
{
|
2016-08-17 15:24:04 +00:00
|
|
|
commit.Remove( item );
|
2015-09-01 09:13:22 +00:00
|
|
|
gen_rastnest = true;
|
|
|
|
}
|
|
|
|
|
2016-10-20 15:15:27 +00:00
|
|
|
area_index++;
|
2015-09-01 09:13:22 +00:00
|
|
|
item = pcb->GetArea( area_index );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2016-10-20 15:15:27 +00:00
|
|
|
bool delDrawings = m_DelDrawings->GetValue() || m_DelBoardEdges->GetValue();
|
|
|
|
bool delTexts = m_DelTexts->GetValue();
|
|
|
|
|
|
|
|
if( delAll || delDrawings || delTexts )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2016-10-20 15:15:27 +00:00
|
|
|
// Layer mask for texts
|
|
|
|
LSET del_text_layers = layers_filter;
|
|
|
|
|
|
|
|
// Layer mask for drawings
|
2015-09-01 09:13:22 +00:00
|
|
|
LSET masque_layer;
|
2012-01-21 15:02:49 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( m_DelDrawings->GetValue() )
|
2016-10-20 15:15:27 +00:00
|
|
|
masque_layer = LSET::AllNonCuMask().set( Edge_Cuts, false );
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( m_DelBoardEdges->GetValue() )
|
2016-10-20 15:15:27 +00:00
|
|
|
masque_layer.set( Edge_Cuts );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
masque_layer &= layers_filter;
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2017-06-23 09:36:05 +00:00
|
|
|
for( auto dwg : pcb->Drawings() )
|
2015-09-01 09:13:22 +00:00
|
|
|
{
|
2017-06-23 09:36:05 +00:00
|
|
|
KICAD_T type = dwg->Type();
|
|
|
|
LAYER_NUM layer = dwg->GetLayer();
|
2015-09-01 09:13:22 +00:00
|
|
|
|
2016-10-20 15:15:27 +00:00
|
|
|
if( delAll
|
|
|
|
|| ( type == PCB_LINE_T && delDrawings && masque_layer[layer] )
|
|
|
|
|| ( type == PCB_TEXT_T && delTexts && del_text_layers[layer] ) )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2017-06-23 09:36:05 +00:00
|
|
|
commit.Remove( dwg );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( delAll || m_DelModules->GetValue() )
|
|
|
|
{
|
2016-10-20 15:15:27 +00:00
|
|
|
for( item = pcb->m_Modules; item; item = item->Next() )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2015-09-01 09:13:22 +00:00
|
|
|
bool del_fp = delAll;
|
|
|
|
|
|
|
|
if( layers_filter[item->GetLayer()] &&
|
|
|
|
( ( m_ModuleFilterNormal->GetValue() && !item->IsLocked() ) ||
|
|
|
|
( m_ModuleFilterLocked->GetValue() && item->IsLocked() ) ) )
|
|
|
|
del_fp = true;
|
|
|
|
|
|
|
|
if( del_fp )
|
2010-11-26 20:05:31 +00:00
|
|
|
{
|
2016-08-17 15:24:04 +00:00
|
|
|
commit.Remove( item );
|
2015-09-01 09:13:22 +00:00
|
|
|
gen_rastnest = true;
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-01 09:13:22 +00:00
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( delAll || m_DelTracks->GetValue() )
|
|
|
|
{
|
|
|
|
STATUS_FLAGS track_mask_filter = 0;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( !m_TrackFilterLocked->GetValue() )
|
|
|
|
track_mask_filter |= TRACK_LOCKED;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( !m_TrackFilterAR->GetValue() )
|
|
|
|
track_mask_filter |= TRACK_AR;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
TRACK* nexttrack;
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
for( TRACK *track = pcb->m_Track; track; track = nexttrack )
|
|
|
|
{
|
|
|
|
nexttrack = track->Next();
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( !delAll )
|
|
|
|
{
|
2014-04-04 13:43:30 +00:00
|
|
|
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) & track_mask_filter ) != 0 )
|
2010-11-26 20:05:31 +00:00
|
|
|
continue;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2014-04-04 13:43:30 +00:00
|
|
|
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) == 0 ) &&
|
2012-01-21 15:02:49 +00:00
|
|
|
!m_TrackFilterNormal->GetValue() )
|
|
|
|
continue;
|
|
|
|
|
2014-04-04 13:43:30 +00:00
|
|
|
if( ( track->Type() == PCB_VIA_T ) && !m_TrackFilterVias->GetValue() )
|
2012-01-21 15:02:49 +00:00
|
|
|
continue;
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( ( track->GetLayerSet() & layers_filter ) == 0 )
|
2012-01-21 15:02:49 +00:00
|
|
|
continue;
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 15:24:04 +00:00
|
|
|
commit.Remove( track );
|
2015-09-01 09:13:22 +00:00
|
|
|
gen_rastnest = true;
|
|
|
|
}
|
|
|
|
}
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2017-03-21 10:22:03 +00:00
|
|
|
commit.Push( "Global delete" );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( m_DelMarkers->GetValue() )
|
|
|
|
pcb->DeleteMARKERs();
|
2014-03-01 17:20:22 +00:00
|
|
|
|
2015-09-01 09:13:22 +00:00
|
|
|
if( gen_rastnest )
|
|
|
|
m_Parent->Compile_Ratsnest( NULL, true );
|
2014-07-09 13:10:32 +00:00
|
|
|
|
2017-06-23 09:36:05 +00:00
|
|
|
// There is a chance that some of tracks have changed their nets, so rebuild ratsnest from scratch
|
2017-03-22 13:51:07 +00:00
|
|
|
m_Parent->GetCanvas()->Refresh();
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|