kicad/pcbnew/dialogs/dialog_global_deletion.cpp

234 lines
6.5 KiB
C++
Raw Normal View History

2010-11-26 20:05:31 +00:00
/**
* @file dialog_global_deletion.cpp
*/
#include <fctsys.h>
#include <class_drawpanel.h>
#include <confirm.h>
#include <pcbnew.h>
#include <wxPcbStruct.h>
#include <pcbcommon.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 )
2010-11-26 20:05:31 +00:00
: DIALOG_GLOBAL_DELETION_BASE( parent )
{
m_Parent = parent;
m_currentLayer = FIRST_LAYER;
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() );
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;
m_textCtrlCurrLayer->SetValue( m_Parent->GetBoard()->GetLayerName( 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() );
}
2010-11-26 20:05:31 +00:00
void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
{
bool gen_rastnest = false;
m_Parent->SetCurItem( NULL );
if( m_DelAlls->GetValue() )
{
m_Parent->Clear_Pcb( true );
}
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();
2010-11-26 20:05:31 +00:00
PICKED_ITEMS_LIST pickersList;
ITEM_PICKER itemPicker( NULL, UR_DELETED );
BOARD_ITEM* item, * nextitem;
LAYER_MSK layers_filter = ALL_LAYERS;
if( m_rbLayersOption->GetSelection() != 0 ) // Use current layer only
layers_filter = GetLayerMask( m_currentLayer );
2010-11-26 20:05:31 +00:00
if( m_DelZones->GetValue() )
{
int area_index = 0;
item = pcb->GetArea( area_index );
2010-11-26 20:05:31 +00:00
while( item != NULL )
2010-11-26 20:05:31 +00:00
{
if( GetLayerMask( item->GetLayer() ) & layers_filter )
{
itemPicker.SetItem( item );
pickersList.PushItem( itemPicker );
pcb->Remove( item );
gen_rastnest = true;
}
else
{
area_index++;
}
item = pcb->GetArea( area_index );
2010-11-26 20:05:31 +00:00
}
}
if( m_DelDrawings->GetValue() || m_DelBoardEdges->GetValue() )
{
LAYER_MSK masque_layer = NO_LAYERS;
if( m_DelDrawings->GetValue() )
masque_layer = (~EDGE_LAYER) & ALL_NO_CU_LAYERS;
if( m_DelBoardEdges->GetValue() )
masque_layer |= EDGE_LAYER;
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 != NULL; item = nextitem )
{
nextitem = item->Next();
if( ( item->Type() == PCB_LINE_T ) && ( GetLayerMask( item->GetLayer() ) & masque_layer) )
{
itemPicker.SetItem( item );
pickersList.PushItem( itemPicker );
item->UnLink();
}
}
}
if( m_DelTexts->GetValue() )
{
LAYER_MSK del_text_layers = ALL_LAYERS & layers_filter;
for( item = pcb->m_Drawings; item != NULL; item = nextitem )
2010-11-26 20:05:31 +00:00
{
nextitem = item->Next();
if( ( item->Type() == PCB_TEXT_T ) && ( GetLayerMask( item->GetLayer() ) & del_text_layers ) )
{
itemPicker.SetItem( item );
pickersList.PushItem( itemPicker );
item->UnLink();
}
2010-11-26 20:05:31 +00:00
}
}
if( m_DelModules->GetValue() )
{
2010-11-26 20:05:31 +00:00
for( item = pcb->m_Modules; item; item = nextitem )
{
nextitem = item->Next();
if( ( GetLayerMask( item->GetLayer() ) & layers_filter ) &&
( ( m_ModuleFilterNormal->GetValue() && !item->IsLocked() ) ||
( m_ModuleFilterLocked->GetValue() && item->IsLocked() ) ) )
{
itemPicker.SetItem( item );
pickersList.PushItem( itemPicker );
item->UnLink();
gen_rastnest = true;
}
2010-11-26 20:05:31 +00:00
}
}
if( m_DelTracks->GetValue() )
{
STATUS_FLAGS track_mask_filter = 0;
2010-11-26 20:05:31 +00:00
if( !m_TrackFilterLocked->GetValue() )
track_mask_filter |= TRACK_LOCKED;
2010-11-26 20:05:31 +00:00
if( !m_TrackFilterAR->GetValue() )
track_mask_filter |= TRACK_AR;
TRACK * nexttrack;
for( TRACK *track = pcb->m_Track; track != NULL; track = nexttrack )
2010-11-26 20:05:31 +00:00
{
nexttrack = track->Next();
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->GetLayerMask() & layers_filter) == 0 )
continue;
2012-02-05 13:02:46 +00:00
itemPicker.SetItem( track );
2010-11-26 20:05:31 +00:00
pickersList.PushItem( itemPicker );
track->UnLink();
2010-11-26 20:05:31 +00:00
gen_rastnest = true;
}
}
if( pickersList.GetCount() )
m_Parent->SaveCopyInUndoList( pickersList, UR_DELETED );
if( m_DelMarkers->GetValue() )
pcb->DeleteMARKERs();
if( gen_rastnest )
m_Parent->Compile_Ratsnest( NULL, true );
2010-11-26 20:05:31 +00:00
}
m_Parent->GetCanvas()->Refresh();
2010-11-26 20:05:31 +00:00
m_Parent->OnModify();
EndModal( 1 );
}