2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2011 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file editrack-part2.cpp
|
|
|
|
*/
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "gr_basic.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "wxPcbStruct.h"
|
|
|
|
#include "pcbcommon.h"
|
|
|
|
|
|
|
|
#include "class_board.h"
|
|
|
|
#include "class_module.h"
|
|
|
|
#include "class_track.h"
|
|
|
|
#include "class_marker_pcb.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "pcbnew.h"
|
2010-09-18 08:29:40 +00:00
|
|
|
#include "drc_stuff.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
bool PCB_EDIT_FRAME::Other_Layer_Route( TRACK* aTrack, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
unsigned itmp;
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
if( aTrack == NULL )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
if( getActiveLayer() != ((PCB_SCREEN*)GetScreen())->m_Route_Layer_TOP )
|
2010-01-24 02:05:07 +00:00
|
|
|
setActiveLayer( ((PCB_SCREEN*)GetScreen())->m_Route_Layer_TOP );
|
2007-08-04 04:40:07 +00:00
|
|
|
else
|
2010-01-24 02:05:07 +00:00
|
|
|
setActiveLayer(((PCB_SCREEN*)GetScreen())->m_Route_Layer_BOTTOM );
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2007-12-14 22:31:45 +00:00
|
|
|
return true;
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
|
2007-09-04 14:28:20 +00:00
|
|
|
/* Avoid more than one via on the current location: */
|
2011-09-14 20:04:58 +00:00
|
|
|
if( GetBoard()->GetViaByPosition( g_CurrentTrackSegment->m_End,
|
|
|
|
g_CurrentTrackSegment->GetLayer() ) )
|
2007-12-14 22:31:45 +00:00
|
|
|
return false;
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
for( TRACK* segm = g_FirstTrackSegment; segm; segm = segm->Next() )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segm->Type() == PCB_VIA_T && g_CurrentTrackSegment->m_End == segm->m_Start )
|
2007-12-14 22:31:45 +00:00
|
|
|
return false;
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
|
2007-09-20 06:45:17 +00:00
|
|
|
/* Is the current segment Ok (no DRC error) ? */
|
2007-08-04 04:40:07 +00:00
|
|
|
if( Drc_On )
|
2007-09-20 06:45:17 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
if( BAD_DRC==m_drc->Drc( g_CurrentTrackSegment, GetBoard()->m_Track ) )
|
2007-09-20 06:45:17 +00:00
|
|
|
/* DRC error, the change layer is not made */
|
2007-12-14 22:31:45 +00:00
|
|
|
return false;
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// Handle 2 segments.
|
|
|
|
if( g_TwoSegmentTrackBuild && g_CurrentTrackSegment->Back() )
|
2007-09-20 06:45:17 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
if( BAD_DRC == m_drc->Drc( g_CurrentTrackSegment->Back(), GetBoard()->m_Track ) )
|
2007-12-14 22:31:45 +00:00
|
|
|
return false;
|
2007-09-20 06:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
/* Save current state before placing a via.
|
2009-11-14 22:15:22 +00:00
|
|
|
* If the via cannot be placed this current state will be reused
|
2008-12-04 04:28:11 +00:00
|
|
|
*/
|
|
|
|
itmp = g_CurrentTrackList.GetCount();
|
2007-08-04 04:40:07 +00:00
|
|
|
Begin_Route( g_CurrentTrackSegment, DC );
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2007-10-16 20:52:49 +00:00
|
|
|
/* create the via */
|
2009-01-05 05:21:35 +00:00
|
|
|
SEGVIA* via = new SEGVIA( GetBoard() );
|
2011-12-21 13:42:02 +00:00
|
|
|
via->SetFlags( IS_NEW );
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
via->m_Shape = GetBoard()->GetDesignSettings().m_CurrentViaType;
|
2009-10-30 17:58:15 +00:00
|
|
|
via->m_Width = GetBoard()->GetCurrentViaSize();
|
2011-09-14 20:04:58 +00:00
|
|
|
via->SetNet( GetBoard()->GetHighLightNetCode() );
|
2008-12-04 04:28:11 +00:00
|
|
|
via->m_Start = via->m_End = g_CurrentTrackSegment->m_End;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
// Usual via is from copper to component.
|
|
|
|
// layer pair is LAYER_N_BACK and LAYER_N_FRONT.
|
|
|
|
via->SetLayerPair( LAYER_N_BACK, LAYER_N_FRONT );
|
2011-12-14 04:29:25 +00:00
|
|
|
via->SetDrill( GetBoard()->GetCurrentViaDrill() );
|
2010-01-25 20:06:56 +00:00
|
|
|
|
|
|
|
int first_layer = getActiveLayer();
|
|
|
|
int last_layer;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
// prepare switch to new active layer:
|
|
|
|
if( first_layer != GetScreen()->m_Route_Layer_TOP )
|
|
|
|
last_layer = GetScreen()->m_Route_Layer_TOP;
|
2007-08-04 04:40:07 +00:00
|
|
|
else
|
2010-01-25 20:06:56 +00:00
|
|
|
last_layer = GetScreen()->m_Route_Layer_BOTTOM;
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
/* Adjust the actual via layer pair */
|
2011-12-14 04:29:25 +00:00
|
|
|
switch ( via->GetShape() )
|
2008-04-01 05:21:50 +00:00
|
|
|
{
|
|
|
|
case VIA_BLIND_BURIED:
|
2010-01-25 20:06:56 +00:00
|
|
|
via->SetLayerPair( first_layer, last_layer );
|
2008-04-01 05:21:50 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
case VIA_MICROVIA: // from external to the near neighbor inner layer
|
2010-01-25 20:06:56 +00:00
|
|
|
{
|
2010-01-31 20:01:46 +00:00
|
|
|
int last_inner_layer = GetBoard()->GetCopperLayerCount() - 2;
|
2010-01-25 20:06:56 +00:00
|
|
|
if ( first_layer == LAYER_N_BACK )
|
|
|
|
last_layer = LAYER_N_2;
|
|
|
|
else if ( first_layer == LAYER_N_FRONT )
|
|
|
|
last_layer = last_inner_layer;
|
|
|
|
else if ( first_layer == LAYER_N_2 )
|
|
|
|
last_layer = LAYER_N_BACK;
|
|
|
|
else if ( first_layer == last_inner_layer )
|
|
|
|
last_layer = LAYER_N_FRONT;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
// else error: will be removed later
|
|
|
|
via->SetLayerPair( first_layer, last_layer );
|
2009-10-30 17:58:15 +00:00
|
|
|
{
|
|
|
|
NETINFO_ITEM* net = GetBoard()->FindNet( via->GetNet() );
|
2009-11-14 22:15:22 +00:00
|
|
|
via->m_Width = net->GetMicroViaSize();
|
2009-10-30 17:58:15 +00:00
|
|
|
}
|
2010-01-25 20:06:56 +00:00
|
|
|
}
|
2008-04-01 05:21:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2007-10-01 04:34:11 +00:00
|
|
|
}
|
2007-10-15 07:50:59 +00:00
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
if( Drc_On && BAD_DRC == m_drc->Drc( via, GetBoard()->m_Track ) )
|
2007-09-20 06:45:17 +00:00
|
|
|
{
|
2007-09-04 14:28:20 +00:00
|
|
|
/* DRC fault: the Via cannot be placed here ... */
|
2008-12-04 04:28:11 +00:00
|
|
|
delete via;
|
2007-12-18 00:04:08 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2007-12-18 02:34:54 +00:00
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
// delete the track(s) added in Begin_Route()
|
2008-12-04 04:28:11 +00:00
|
|
|
while( g_CurrentTrackList.GetCount() > itmp )
|
2007-12-18 00:04:08 +00:00
|
|
|
{
|
|
|
|
Delete_Segment( DC, g_CurrentTrackSegment );
|
|
|
|
}
|
2007-12-18 02:34:54 +00:00
|
|
|
|
2011-06-09 13:30:46 +00:00
|
|
|
SetCurItem( g_CurrentTrackSegment, false );
|
|
|
|
|
|
|
|
// Refresh DRC diag, erased by previous calls
|
|
|
|
if( m_drc->GetCurrentMarker() )
|
|
|
|
m_drc->GetCurrentMarker()->DisplayInfo( this );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-12-14 22:31:45 +00:00
|
|
|
return false;
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
|
2010-01-25 20:06:56 +00:00
|
|
|
setActiveLayer( last_layer );
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
TRACK* lastNonVia = g_CurrentTrackSegment;
|
|
|
|
|
2007-09-04 14:28:20 +00:00
|
|
|
/* A new via was created. It was Ok.
|
2007-09-20 06:45:17 +00:00
|
|
|
*/
|
2008-12-04 04:28:11 +00:00
|
|
|
g_CurrentTrackList.PushBack( via );
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
/* The via is now in linked list and we need a new track segment
|
|
|
|
* after the via, starting at via location.
|
|
|
|
* it will become the new current segment (from via to the mouse cursor)
|
|
|
|
*/
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
TRACK* track = (TRACK*)lastNonVia->Clone();
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
/* the above creates a new segment from the last entered segment, with the
|
|
|
|
* current width, flags, netcode, etc... values.
|
|
|
|
* layer, start and end point are not correct,
|
|
|
|
* and will be modified next
|
2007-09-20 06:45:17 +00:00
|
|
|
*/
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// set the layer to the new value
|
2010-01-24 02:05:07 +00:00
|
|
|
track->SetLayer( getActiveLayer() );
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* the start point is the via position and the end point is the cursor
|
|
|
|
* which also is on the via (will change when moving mouse)
|
2008-12-04 04:28:11 +00:00
|
|
|
*/
|
|
|
|
track->m_Start = track->m_End = via->m_Start;
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
g_CurrentTrackList.PushBack( track );
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2007-08-04 04:40:07 +00:00
|
|
|
if( g_TwoSegmentTrackBuild )
|
2007-09-20 06:45:17 +00:00
|
|
|
{
|
2007-08-30 22:20:52 +00:00
|
|
|
// Create a second segment (we must have 2 track segments to adjust)
|
2012-01-14 19:50:32 +00:00
|
|
|
g_CurrentTrackList.PushBack( (TRACK*)g_CurrentTrackSegment->Clone() );
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2009-04-17 08:51:02 +00:00
|
|
|
via->DisplayInfo( this );
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-12-14 22:31:45 +00:00
|
|
|
return true;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::Show_1_Ratsnest( EDA_ITEM* item, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-04 04:40:07 +00:00
|
|
|
D_PAD* pt_pad = NULL;
|
|
|
|
MODULE* Module = NULL;
|
|
|
|
|
2010-01-29 20:36:12 +00:00
|
|
|
if( GetBoard()->IsElementVisible(RATSNEST_VISIBLE) )
|
2009-05-28 08:42:24 +00:00
|
|
|
return;
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( GetBoard()->m_Status_Pcb & LISTE_RATSNEST_ITEM_OK ) == 0 )
|
2011-09-07 19:41:04 +00:00
|
|
|
Compile_Ratsnest( DC, true );
|
2007-08-04 04:40:07 +00:00
|
|
|
|
2007-08-04 05:08:19 +00:00
|
|
|
if( item )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( item->Type() == PCB_PAD_T )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2007-08-04 05:08:19 +00:00
|
|
|
pt_pad = (D_PAD*) item;
|
2008-11-24 06:53:43 +00:00
|
|
|
Module = (MODULE*) pt_pad->GetParent();
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( pt_pad ) /* Displaying the ratsnest of the corresponding net. */
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2009-04-17 08:51:02 +00:00
|
|
|
pt_pad->DisplayInfo( this );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
for( unsigned ii = 0; ii < GetBoard()->GetRatsnestsCount(); ii++ )
|
2007-08-04 05:08:19 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
RATSNEST_ITEM* net = &GetBoard()->m_FullRatsnest[ii];
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( net->GetNet() == pt_pad->GetNet() )
|
2007-08-04 05:08:19 +00:00
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( net->m_Status & CH_VISIBLE ) != 0 )
|
2007-08-04 05:08:19 +00:00
|
|
|
continue;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
net->m_Status |= CH_VISIBLE;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( net->m_Status & CH_ACTIF ) == 0 )
|
2007-08-04 05:08:19 +00:00
|
|
|
continue;
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
net->Draw( m_canvas, DC, GR_XOR, wxPoint( 0, 0 ) );
|
2007-08-04 05:08:19 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
2007-08-04 05:08:19 +00:00
|
|
|
else
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( item->Type() == PCB_MODULE_TEXT_T )
|
2007-08-04 05:08:19 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( item->GetParent() && ( item->GetParent()->Type() == PCB_MODULE_T ) )
|
2008-11-24 06:53:43 +00:00
|
|
|
Module = (MODULE*) item->GetParent();
|
2007-08-04 05:08:19 +00:00
|
|
|
}
|
2011-10-01 19:24:27 +00:00
|
|
|
else if( item->Type() == PCB_MODULE_T )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2007-08-04 05:08:19 +00:00
|
|
|
Module = (MODULE*) item;
|
|
|
|
}
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2007-08-04 05:08:19 +00:00
|
|
|
if( Module )
|
|
|
|
{
|
2009-04-17 08:51:02 +00:00
|
|
|
Module->DisplayInfo( this );
|
2007-08-04 05:08:19 +00:00
|
|
|
pt_pad = Module->m_Pads;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
for( ; pt_pad != NULL; pt_pad = (D_PAD*) pt_pad->Next() )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
for( unsigned ii = 0; ii < GetBoard()->GetRatsnestsCount(); ii++ )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
RATSNEST_ITEM* net = &GetBoard()->m_FullRatsnest[ii];
|
2011-09-07 19:41:04 +00:00
|
|
|
|
|
|
|
if( ( net->m_PadStart == pt_pad ) || ( net->m_PadEnd == pt_pad ) )
|
2007-08-04 05:08:19 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
if( net->m_Status & CH_VISIBLE )
|
2007-08-04 05:08:19 +00:00
|
|
|
continue;
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
net->m_Status |= CH_VISIBLE;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( (net->m_Status & CH_ACTIF) == 0 )
|
2007-08-04 05:08:19 +00:00
|
|
|
continue;
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
net->Draw( m_canvas, DC, GR_XOR, wxPoint( 0, 0 ) );
|
2007-08-04 05:08:19 +00:00
|
|
|
}
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2007-08-04 05:08:19 +00:00
|
|
|
pt_pad = NULL;
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Erase if no pad or module has been selected. */
|
|
|
|
if( ( pt_pad == NULL ) && ( Module == NULL ) )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
|
|
|
DrawGeneralRatsnest( DC );
|
2007-09-20 06:45:17 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
for( unsigned ii = 0; ii < GetBoard()->GetRatsnestsCount(); ii++ )
|
|
|
|
GetBoard()->m_FullRatsnest[ii].m_Status &= ~CH_VISIBLE;
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
void PCB_EDIT_FRAME::HighlightUnconnectedPads( wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
for( unsigned ii = 0; ii < GetBoard()->GetRatsnestsCount(); ii++ )
|
2007-08-04 04:40:07 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
RATSNEST_ITEM* net = &GetBoard()->m_FullRatsnest[ii];
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( (net->m_Status & CH_ACTIF) == 0 )
|
2007-08-04 04:40:07 +00:00
|
|
|
continue;
|
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
net->m_PadStart->Draw( m_canvas, DC, GR_OR | GR_HIGHLIGHT );
|
|
|
|
net->m_PadEnd->Draw( m_canvas, DC, GR_OR | GR_HIGHLIGHT );
|
2007-08-04 04:40:07 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|