Edit->Global Deletions & Edit->Cleanup Tracks and Vias work in GAL, without toggling between canvases.
This commit is contained in:
parent
8b8e8d8f7f
commit
89da70fe94
|
@ -38,18 +38,19 @@
|
|||
#include <class_track.h>
|
||||
#include <connect.h>
|
||||
#include <dialog_cleaning_options.h>
|
||||
#include <ratsnest_data.h>
|
||||
|
||||
// Helper class used to clean tracks and vias
|
||||
class TRACKS_CLEANER: CONNECTIONS
|
||||
class TRACKS_CLEANER : CONNECTIONS
|
||||
{
|
||||
private:
|
||||
BOARD * m_Brd;
|
||||
BOARD* m_Brd;
|
||||
bool m_deleteUnconnectedTracks;
|
||||
bool m_mergeSegments;
|
||||
bool m_cleanVias;
|
||||
|
||||
public:
|
||||
TRACKS_CLEANER( BOARD * aPcb );
|
||||
TRACKS_CLEANER( BOARD* aPcb );
|
||||
|
||||
/**
|
||||
* the cleanup function.
|
||||
|
@ -102,8 +103,7 @@ private:
|
|||
* merge aTrackRef and aCandidate, when possible,
|
||||
* i.e. when they are colinear, same width, and obviously same layer
|
||||
*/
|
||||
TRACK* mergeCollinearSegmentIfPossible( TRACK* aTrackRef,
|
||||
TRACK* aCandidate, int aEndType );
|
||||
TRACK* mergeCollinearSegmentIfPossible( TRACK* aTrackRef, TRACK* aCandidate, int aEndType );
|
||||
};
|
||||
|
||||
/* Install the cleanup dialog frame to know what should be cleaned
|
||||
|
@ -161,7 +161,7 @@ bool TRACKS_CLEANER::CleanupBoard()
|
|||
return modified;
|
||||
}
|
||||
|
||||
TRACKS_CLEANER::TRACKS_CLEANER( BOARD * aPcb ): CONNECTIONS( aPcb )
|
||||
TRACKS_CLEANER::TRACKS_CLEANER( BOARD* aPcb ) : CONNECTIONS( aPcb )
|
||||
{
|
||||
m_Brd = aPcb;
|
||||
m_deleteUnconnectedTracks = false;
|
||||
|
@ -177,22 +177,22 @@ void TRACKS_CLEANER::buildTrackConnectionInfo()
|
|||
BuildTracksCandidatesList( m_Brd->m_Track, NULL);
|
||||
|
||||
// clear flags and variables used in cleanup
|
||||
for( TRACK * track = m_Brd->m_Track; track; track = track->Next() )
|
||||
for( TRACK* track = m_Brd->m_Track; track; track = track->Next() )
|
||||
{
|
||||
track->start = NULL;
|
||||
track->end = NULL;
|
||||
track->m_PadsConnected.clear();
|
||||
track->SetState( START_ON_PAD|END_ON_PAD|BUSY, false );
|
||||
track->SetState( START_ON_PAD | END_ON_PAD | BUSY, false );
|
||||
}
|
||||
|
||||
// Build connections info tracks to pads
|
||||
SearchTracksConnectedToPads();
|
||||
for( TRACK * track = m_Brd->m_Track; track; track = track->Next() )
|
||||
for( TRACK* track = m_Brd->m_Track; track; track = track->Next() )
|
||||
{
|
||||
// Mark track if connected to pads
|
||||
for( unsigned jj = 0; jj < track->m_PadsConnected.size(); jj++ )
|
||||
{
|
||||
D_PAD * pad = track->m_PadsConnected[jj];
|
||||
D_PAD* pad = track->m_PadsConnected[jj];
|
||||
|
||||
if( pad->HitTest( track->GetStart() ) )
|
||||
{
|
||||
|
@ -240,6 +240,8 @@ bool TRACKS_CLEANER::clean_vias()
|
|||
continue;
|
||||
|
||||
// delete via
|
||||
m_Brd->GetRatsnest()->Remove( alt_track );
|
||||
alt_track->ViewRelease();
|
||||
alt_track->UnLink();
|
||||
delete alt_track;
|
||||
modified = true;
|
||||
|
@ -258,11 +260,13 @@ bool TRACKS_CLEANER::clean_vias()
|
|||
// if one pad through is found, the via can be removed
|
||||
for( unsigned ii = 0; ii < track->m_PadsConnected.size(); ii++ )
|
||||
{
|
||||
D_PAD * pad = track->m_PadsConnected[ii];
|
||||
D_PAD* pad = track->m_PadsConnected[ii];
|
||||
|
||||
if( (pad->GetLayerMask() & ALL_CU_LAYERS) == ALL_CU_LAYERS )
|
||||
if( ( pad->GetLayerMask() & ALL_CU_LAYERS ) == ALL_CU_LAYERS )
|
||||
{
|
||||
// redundant: via delete it
|
||||
m_Brd->GetRatsnest()->Remove( track );
|
||||
track->ViewRelease();
|
||||
track->UnLink();
|
||||
delete track;
|
||||
modified = true;
|
||||
|
@ -291,7 +295,8 @@ bool TRACKS_CLEANER::deleteUnconnectedTracks()
|
|||
{
|
||||
item_erased = false;
|
||||
TRACK* next_track;
|
||||
for( TRACK * track = m_Brd->m_Track; track ; track = next_track )
|
||||
|
||||
for( TRACK* track = m_Brd->m_Track; track ; track = next_track )
|
||||
{
|
||||
next_track = track->Next();
|
||||
|
||||
|
@ -312,7 +317,7 @@ bool TRACKS_CLEANER::deleteUnconnectedTracks()
|
|||
LAYER_NUM top_layer, bottom_layer;
|
||||
ZONE_CONTAINER* zone;
|
||||
|
||||
if( (type_end & START_ON_PAD ) == 0 )
|
||||
if( ( type_end & START_ON_PAD ) == 0 )
|
||||
{
|
||||
TRACK* other = track->GetTrace( m_Brd->m_Track, NULL, FLG_START );
|
||||
|
||||
|
@ -334,7 +339,7 @@ bool TRACKS_CLEANER::deleteUnconnectedTracks()
|
|||
}
|
||||
}
|
||||
|
||||
if( (other == NULL) && (zone == NULL) )
|
||||
if( ( other == NULL ) && ( zone == NULL ) )
|
||||
{
|
||||
flag_erase |= 1;
|
||||
}
|
||||
|
@ -422,7 +427,7 @@ bool TRACKS_CLEANER::deleteUnconnectedTracks()
|
|||
via->GetNetCode() );
|
||||
}
|
||||
|
||||
if( (other == NULL) && (zone == NULL) )
|
||||
if( ( other == NULL ) && ( zone == NULL ) )
|
||||
flag_erase |= 0x20;
|
||||
|
||||
track->SetState( BUSY, false );
|
||||
|
@ -433,6 +438,8 @@ bool TRACKS_CLEANER::deleteUnconnectedTracks()
|
|||
if( flag_erase )
|
||||
{
|
||||
// remove segment from board
|
||||
m_Brd->GetRatsnest()->Remove( track );
|
||||
track->ViewRelease();
|
||||
track->DeleteStructure();
|
||||
// iterate, because a track connected to the deleted track
|
||||
// is now perhaps now not connected and should be deleted
|
||||
|
@ -461,7 +468,11 @@ bool TRACKS_CLEANER::clean_segments()
|
|||
nextsegment = segment->Next();
|
||||
|
||||
if( segment->IsNull() ) // Length segment = 0; delete it
|
||||
{
|
||||
m_Brd->GetRatsnest()->Remove( segment );
|
||||
segment->ViewRelease();
|
||||
segment->DeleteStructure();
|
||||
}
|
||||
}
|
||||
|
||||
// Delete redundant segments, i.e. segments having the same end points
|
||||
|
@ -493,6 +504,8 @@ bool TRACKS_CLEANER::clean_segments()
|
|||
// Delete redundant point
|
||||
if( erase )
|
||||
{
|
||||
m_Brd->GetRatsnest()->Remove( other );
|
||||
other->ViewRelease();
|
||||
other->DeleteStructure();
|
||||
modified = true;
|
||||
}
|
||||
|
@ -548,6 +561,8 @@ bool TRACKS_CLEANER::clean_segments()
|
|||
if( segDelete )
|
||||
{
|
||||
no_inc = 1;
|
||||
m_Brd->GetRatsnest()->Remove( segDelete );
|
||||
segDelete->ViewRelease();
|
||||
segDelete->DeleteStructure();
|
||||
modified = true;
|
||||
}
|
||||
|
@ -589,6 +604,8 @@ bool TRACKS_CLEANER::clean_segments()
|
|||
if( segDelete )
|
||||
{
|
||||
no_inc = 1;
|
||||
m_Brd->GetRatsnest()->Remove( segDelete );
|
||||
segDelete->ViewRelease();
|
||||
segDelete->DeleteStructure();
|
||||
modified = true;
|
||||
}
|
||||
|
@ -688,6 +705,7 @@ TRACK* TRACKS_CLEANER::mergeCollinearSegmentIfPossible( TRACK* aTrackRef, TRACK*
|
|||
aTrackRef->SetStart( aCandidate->GetEnd());
|
||||
aTrackRef->start = aCandidate->end;
|
||||
aTrackRef->SetState( START_ON_PAD, aCandidate->GetState( END_ON_PAD) );
|
||||
aTrackRef->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
|
||||
return aCandidate;
|
||||
}
|
||||
else
|
||||
|
@ -695,6 +713,7 @@ TRACK* TRACKS_CLEANER::mergeCollinearSegmentIfPossible( TRACK* aTrackRef, TRACK*
|
|||
aTrackRef->SetStart( aCandidate->GetStart() );
|
||||
aTrackRef->start = aCandidate->start;
|
||||
aTrackRef->SetState( START_ON_PAD, aCandidate->GetState( START_ON_PAD) );
|
||||
aTrackRef->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
|
||||
return aCandidate;
|
||||
}
|
||||
}
|
||||
|
@ -711,6 +730,7 @@ TRACK* TRACKS_CLEANER::mergeCollinearSegmentIfPossible( TRACK* aTrackRef, TRACK*
|
|||
aTrackRef->SetEnd( aCandidate->GetEnd() );
|
||||
aTrackRef->end = aCandidate->end;
|
||||
aTrackRef->SetState( END_ON_PAD, aCandidate->GetState( END_ON_PAD) );
|
||||
aTrackRef->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
|
||||
return aCandidate;
|
||||
}
|
||||
else
|
||||
|
@ -718,6 +738,7 @@ TRACK* TRACKS_CLEANER::mergeCollinearSegmentIfPossible( TRACK* aTrackRef, TRACK*
|
|||
aTrackRef->SetEnd( aCandidate->GetStart() );
|
||||
aTrackRef->end = aCandidate->start;
|
||||
aTrackRef->SetState( END_ON_PAD, aCandidate->GetState( START_ON_PAD) );
|
||||
aTrackRef->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
|
||||
return aCandidate;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include <wxPcbStruct.h>
|
||||
#include <macros.h>
|
||||
#include <pcbcommon.h>
|
||||
#include <ratsnest_data.h>
|
||||
|
||||
#include <class_board.h>
|
||||
#include <class_track.h>
|
||||
|
@ -124,6 +125,8 @@ TRACK* PCB_EDIT_FRAME::Delete_Segment( wxDC* DC, TRACK* aTrack )
|
|||
|
||||
DLIST<TRACK>* container = (DLIST<TRACK>*)aTrack->GetList();
|
||||
wxASSERT( container );
|
||||
GetBoard()->GetRatsnest()->Remove( aTrack );
|
||||
aTrack->ViewRelease();
|
||||
container->Remove( aTrack );
|
||||
|
||||
// redraw the area where the track was
|
||||
|
@ -174,6 +177,8 @@ void PCB_EDIT_FRAME::Delete_net( wxDC* DC, TRACK* aTrack )
|
|||
if( segm->GetNetCode() != net_code_delete )
|
||||
break;
|
||||
|
||||
GetBoard()->GetRatsnest()->Remove( segm );
|
||||
segm->ViewRelease();
|
||||
GetBoard()->m_Track.Remove( segm );
|
||||
|
||||
// redraw the area where the track was
|
||||
|
@ -219,6 +224,8 @@ void PCB_EDIT_FRAME::Remove_One_Track( wxDC* DC, TRACK* pt_segm )
|
|||
<< TO_UTF8( TRACK::ShowState( tracksegment->GetStatus() ) ) \
|
||||
<< std::endl; )
|
||||
|
||||
GetBoard()->GetRatsnest()->Remove( tracksegment );
|
||||
tracksegment->ViewRelease();
|
||||
GetBoard()->m_Track.Remove( tracksegment );
|
||||
|
||||
// redraw the area where the track was
|
||||
|
|
|
@ -1,7 +1,27 @@
|
|||
/**
|
||||
* @file dialog_global_deletion.cpp
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 1992-2014 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
|
||||
*/
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include <fctsys.h>
|
||||
#include <class_drawpanel.h>
|
||||
|
@ -9,6 +29,7 @@
|
|||
#include <pcbnew.h>
|
||||
#include <wxPcbStruct.h>
|
||||
#include <pcbcommon.h>
|
||||
#include <ratsnest_data.h>
|
||||
|
||||
#include <class_board.h>
|
||||
#include <class_module.h>
|
||||
|
@ -80,14 +101,15 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
}
|
||||
else
|
||||
{
|
||||
|
||||
if( !IsOK( this, _( "Are you sure you want to delete the selected items?" ) ) )
|
||||
return;
|
||||
|
||||
BOARD* pcb = m_Parent->GetBoard();
|
||||
PICKED_ITEMS_LIST pickersList;
|
||||
ITEM_PICKER itemPicker( NULL, UR_DELETED );
|
||||
BOARD_ITEM* item, * nextitem;
|
||||
BOARD_ITEM* item;
|
||||
BOARD_ITEM* nextitem;
|
||||
RN_DATA* ratsnest = pcb->GetRatsnest();
|
||||
|
||||
LAYER_MSK layers_filter = ALL_LAYERS;
|
||||
|
||||
|
@ -101,12 +123,13 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
|
||||
while( item != NULL )
|
||||
{
|
||||
|
||||
if( GetLayerMask( item->GetLayer() ) & layers_filter )
|
||||
{
|
||||
itemPicker.SetItem( item );
|
||||
pickersList.PushItem( itemPicker );
|
||||
pcb->Remove( item );
|
||||
item->ViewRelease();
|
||||
ratsnest->Remove( item );
|
||||
gen_rastnest = true;
|
||||
}
|
||||
else
|
||||
|
@ -138,6 +161,7 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
{
|
||||
itemPicker.SetItem( item );
|
||||
pickersList.PushItem( itemPicker );
|
||||
item->ViewRelease();
|
||||
item->UnLink();
|
||||
}
|
||||
}
|
||||
|
@ -155,6 +179,7 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
{
|
||||
itemPicker.SetItem( item );
|
||||
pickersList.PushItem( itemPicker );
|
||||
item->ViewRelease();
|
||||
item->UnLink();
|
||||
}
|
||||
}
|
||||
|
@ -162,7 +187,6 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
|
||||
if( m_DelModules->GetValue() )
|
||||
{
|
||||
|
||||
for( item = pcb->m_Modules; item; item = nextitem )
|
||||
{
|
||||
nextitem = item->Next();
|
||||
|
@ -173,6 +197,10 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
{
|
||||
itemPicker.SetItem( item );
|
||||
pickersList.PushItem( itemPicker );
|
||||
static_cast<MODULE*>( item )->RunOnChildren(
|
||||
boost::bind( &KIGFX::VIEW_ITEM::ViewRelease, _1 ) );
|
||||
ratsnest->Remove( item );
|
||||
item->ViewRelease();
|
||||
item->UnLink();
|
||||
gen_rastnest = true;
|
||||
}
|
||||
|
@ -189,27 +217,29 @@ void DIALOG_GLOBAL_DELETION::AcceptPcbDelete( )
|
|||
if( !m_TrackFilterAR->GetValue() )
|
||||
track_mask_filter |= TRACK_AR;
|
||||
|
||||
TRACK * nexttrack;
|
||||
TRACK* nexttrack;
|
||||
|
||||
for( TRACK *track = pcb->m_Track; track != NULL; track = nexttrack )
|
||||
{
|
||||
nexttrack = track->Next();
|
||||
|
||||
if( (track->GetState( TRACK_LOCKED | TRACK_AR ) & track_mask_filter) != 0 )
|
||||
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) & track_mask_filter ) != 0 )
|
||||
continue;
|
||||
|
||||
if( (track->GetState( TRACK_LOCKED | TRACK_AR ) == 0) &&
|
||||
if( ( track->GetState( TRACK_LOCKED | TRACK_AR ) == 0 ) &&
|
||||
!m_TrackFilterNormal->GetValue() )
|
||||
continue;
|
||||
|
||||
if( (track->Type() == PCB_VIA_T) && !m_TrackFilterVias->GetValue() )
|
||||
if( ( track->Type() == PCB_VIA_T ) && !m_TrackFilterVias->GetValue() )
|
||||
continue;
|
||||
|
||||
if( (track->GetLayerMask() & layers_filter) == 0 )
|
||||
if( ( track->GetLayerMask() & layers_filter ) == 0 )
|
||||
continue;
|
||||
|
||||
itemPicker.SetItem( track );
|
||||
pickersList.PushItem( itemPicker );
|
||||
track->ViewRelease();
|
||||
ratsnest->Remove( track );
|
||||
track->UnLink();
|
||||
gen_rastnest = true;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,25 @@
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: dialog_global_deletion.h
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 1992-2014 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
|
||||
*/
|
||||
|
||||
#ifndef _DIALOG_GLOBAL_DELETION_H_
|
||||
#define _DIALOG_GLOBAL_DELETION_H_
|
||||
|
@ -9,20 +28,20 @@
|
|||
|
||||
class DIALOG_GLOBAL_DELETION: public DIALOG_GLOBAL_DELETION_BASE
|
||||
{
|
||||
private:
|
||||
PCB_EDIT_FRAME * m_Parent;
|
||||
LAYER_NUM m_currentLayer;
|
||||
|
||||
public:
|
||||
DIALOG_GLOBAL_DELETION( PCB_EDIT_FRAME* parent );
|
||||
void SetCurrentLayer( LAYER_NUM aLayer );
|
||||
|
||||
private:
|
||||
PCB_EDIT_FRAME* m_Parent;
|
||||
LAYER_NUM m_currentLayer;
|
||||
|
||||
void OnOkClick( wxCommandEvent& event )
|
||||
{
|
||||
AcceptPcbDelete();
|
||||
EndModal(wxID_OK);
|
||||
}
|
||||
|
||||
void OnCancelClick( wxCommandEvent& event )
|
||||
{
|
||||
EndModal(wxID_CANCEL);
|
||||
|
|
Loading…
Reference in New Issue