kicad/pcbnew/dialogs/dialog_global_deletion.cpp

251 lines
7.1 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2015 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 <fctsys.h>
#include <class_drawpanel.h>
#include <confirm.h>
#include <pcbnew.h>
#include <wxPcbStruct.h>
#include <ratsnest_data.h>
#include <board_commit.h>
#include <class_board.h>
#include <class_module.h>
#include <class_track.h>
#include <class_zone.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_TrackFilterAR->Enable( m_DelTracks->GetValue() );
m_TrackFilterLocked->Enable( m_DelTracks->GetValue() );
m_TrackFilterNormal->Enable( m_DelTracks->GetValue() );
m_TrackFilterVias->Enable( m_DelTracks->GetValue() );
m_ModuleFilterLocked->Enable( m_DelModules->GetValue() );
m_ModuleFilterNormal->Enable( m_DelModules->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();
}
void PCB_EDIT_FRAME::InstallPcbGlobalDeleteFrame( const wxPoint& pos )
2010-11-26 20:05:31 +00:00
{
DIALOG_GLOBAL_DELETION dlg( this );
dlg.SetCurrentLayer( GetActiveLayer() );
2010-11-26 20:05:31 +00:00
dlg.ShowModal();
}
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_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
void DIALOG_GLOBAL_DELETION::OnCheckDeleteModules( wxCommandEvent& event )
{
m_ModuleFilterLocked->Enable( m_DelModules->GetValue() );
m_ModuleFilterNormal->Enable( m_DelModules->GetValue() );
}
void DIALOG_GLOBAL_DELETION::AcceptPcbDelete()
2010-11-26 20:05:31 +00:00
{
bool gen_rastnest = false;
m_Parent->SetCurItem( NULL );
bool delAll = false;
2010-11-26 20:05:31 +00:00
if( m_DelAlls->GetValue() )
{
if( !IsOK( this, _( "Are you sure you want to delete the entire board?" ) ) )
return;
delAll = true;
2010-11-26 20:05:31 +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;
BOARD* pcb = m_Parent->GetBoard();
BOARD_COMMIT commit( m_Parent );
BOARD_ITEM* item;
BOARD_ITEM* nextitem;
2010-11-26 20:05:31 +00:00
LSET layers_filter = LSET().set();
if( m_rbLayersOption->GetSelection() != 0 ) // Use current layer only
layers_filter = LSET( ToLAYER_ID( m_currentLayer ) );
if( delAll || m_DelZones->GetValue() )
{
int area_index = 0;
item = pcb->GetArea( area_index );
2010-11-26 20:05:31 +00:00
while( item )
{
if( delAll || layers_filter[item->GetLayer()] )
{
commit.Remove( item );
gen_rastnest = true;
}
else
2010-11-26 20:05:31 +00:00
{
area_index++;
2010-11-26 20:05:31 +00:00
}
item = pcb->GetArea( area_index );
2010-11-26 20:05:31 +00:00
}
}
2010-11-26 20:05:31 +00:00
if( delAll || m_DelDrawings->GetValue() || m_DelBoardEdges->GetValue() )
{
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
for( item = pcb->m_Drawings; item; item = nextitem )
{
nextitem = item->Next();
if( delAll || ( item->Type() == PCB_LINE_T && masque_layer[item->GetLayer()] ) )
{
commit.Remove( item );
}
}
}
if( delAll || m_DelTexts->GetValue() )
{
LSET del_text_layers = layers_filter;
for( item = pcb->m_Drawings; item; item = nextitem )
{
nextitem = item->Next();
if( delAll || ( item->Type() == PCB_TEXT_T && del_text_layers[item->GetLayer()] ) )
2010-11-26 20:05:31 +00:00
{
commit.Remove( item );
2010-11-26 20:05:31 +00:00
}
}
}
2010-11-26 20:05:31 +00:00
if( delAll || m_DelModules->GetValue() )
{
for( item = pcb->m_Modules; item; item = nextitem )
2010-11-26 20:05:31 +00:00
{
nextitem = item->Next();
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
{
commit.Remove( item );
gen_rastnest = true;
2010-11-26 20:05:31 +00:00
}
}
}
2010-11-26 20:05:31 +00:00
if( delAll || m_DelTracks->GetValue() )
{
STATUS_FLAGS track_mask_filter = 0;
if( !m_TrackFilterLocked->GetValue() )
track_mask_filter |= TRACK_LOCKED;
if( !m_TrackFilterAR->GetValue() )
track_mask_filter |= TRACK_AR;
TRACK* nexttrack;
for( TRACK *track = pcb->m_Track; track; track = nexttrack )
{
nexttrack = track->Next();
if( !delAll )
{
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) & track_mask_filter ) != 0 )
2010-11-26 20:05:31 +00:00
continue;
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) == 0 ) &&
!m_TrackFilterNormal->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( wxT( "Global delete" ) );
2010-11-26 20:05:31 +00:00
if( m_DelMarkers->GetValue() )
pcb->DeleteMARKERs();
if( gen_rastnest )
m_Parent->Compile_Ratsnest( NULL, true );
// There is a chance that some of tracks have changed their nets, so rebuild ratsnest from scratch
// TODO necessary? if not, remove rn_data.h header as well
//if( m_Parent->IsGalCanvasActive() )
//pcb->GetRatsnest()->ProcessBoard();
2010-11-26 20:05:31 +00:00
}