kicad/pcbnew/surbrill.cpp

166 lines
4.1 KiB
C++
Raw Normal View History

/*******************/
/* Highlight nets. */
/*******************/
#include "fctsys.h"
#include "class_drawpanel.h"
#include "kicad_string.h"
#include "pcbnew.h"
2009-07-30 11:04:07 +00:00
#include "wxPcbStruct.h"
#include "collectors.h"
2009-12-20 19:48:58 +00:00
#include "kicad_device_context.h"
#define Pad_fill (Pad_Fill_Item.State == RUN)
/**
* Function ListNetsAndSelect
* called by a command event
* displays the sorted list of nets in a dialog frame
* If a net is selected, it is highlighted
2007-08-10 19:14:51 +00:00
*/
void PCB_EDIT_FRAME::ListNetsAndSelect( wxCommandEvent& event )
{
NETINFO_ITEM* net;
wxString netFilter;
wxArrayString list;
netFilter = wxT( "*" );
wxTextEntryDialog dlg( this, _( "Filter Net Names" ), _( "Net Filter" ), netFilter );
if( dlg.ShowModal() != wxID_OK )
return; // cancelled by user
netFilter = dlg.GetValue( );
if( netFilter.IsEmpty() )
2007-08-10 19:14:51 +00:00
return;
wxString Line;
2009-08-17 02:59:38 +00:00
for( unsigned ii = 0; ii < GetBoard()->m_NetInfo->GetCount(); ii++ )
2007-08-10 19:14:51 +00:00
{
2009-06-06 18:08:49 +00:00
net = GetBoard()->m_NetInfo->GetNetItem( ii );
if( !WildCompareString( netFilter, net->GetNetname(), false ) )
2007-08-10 19:14:51 +00:00
continue;
Line.Printf( wxT( "net %3.3d: %s" ), net->GetNet(),
GetChars( net->GetNetname() ) );
list.Add( Line );
2007-08-10 19:14:51 +00:00
}
wxSingleChoiceDialog choiceDlg( this, wxEmptyString, _( "Select Net" ), list, NULL );
2008-02-23 04:53:44 +00:00
if( (choiceDlg.ShowModal() == wxID_CANCEL) || (choiceDlg.GetSelection() == wxNOT_FOUND) )
2007-08-10 19:14:51 +00:00
return;
bool found = false;
unsigned netcode = (unsigned) choiceDlg.GetSelection();
// Search for the net selected.
2009-08-17 02:59:38 +00:00
for( unsigned ii = 0; ii < GetBoard()->m_NetInfo->GetCount(); ii++ )
2007-08-10 19:14:51 +00:00
{
2009-06-06 18:08:49 +00:00
net = GetBoard()->m_NetInfo->GetNetItem( ii );
if( !WildCompareString( netFilter, net->GetNetname(), false ) )
2007-08-10 19:14:51 +00:00
continue;
2008-02-23 04:53:44 +00:00
if( ii == netcode )
2007-08-10 19:14:51 +00:00
{
netcode = net->GetNet();
found = true;
2007-08-10 19:14:51 +00:00
break;
}
}
if( found )
{
INSTALL_UNBUFFERED_DC( dc, DrawPanel );
2007-08-10 19:14:51 +00:00
if( GetBoard()->IsHighLightNetON() )
High_Light( &dc );
2008-02-23 04:53:44 +00:00
GetBoard()->SetHighLightNet( netcode );
High_Light( &dc );
}
}
/* Locate track or pad and highlight the corresponding net
* Returns the Netcode, or -1 if no net located.
*/
int PCB_EDIT_FRAME::Select_High_Light( wxDC* DC )
{
int netcode = -1;
if( GetBoard()->IsHighLightNetON() )
High_Light( DC );
2008-02-19 16:54:57 +00:00
// use this scheme because a pad is a higher priority than a track in the
// search, and finding a pad, instead of a track on a pad,
2008-02-23 04:53:44 +00:00
// allows us to fire a message to eeschema.
GENERAL_COLLECTORS_GUIDE guide = GetCollectorsGuide();
// optionally, modify the "guide" here as needed using its member functions
2008-02-19 16:54:57 +00:00
m_Collector->Collect( GetBoard(), GENERAL_COLLECTOR::PadsTracksOrZones,
GetScreen()->RefPos( true ), guide );
BOARD_ITEM* item = (*m_Collector)[0];
2008-02-19 16:54:57 +00:00
if( item )
2007-08-10 19:14:51 +00:00
{
switch( item->Type() )
2007-08-10 19:14:51 +00:00
{
case TYPE_PAD:
netcode = ( (D_PAD*) item )->GetNet();
SendMessageToEESCHEMA( item );
break;
2008-02-19 16:54:57 +00:00
case TYPE_TRACK:
case TYPE_VIA:
case TYPE_ZONE:
// since these classes are all derived from TRACK, use a common
// GetNet() function:
netcode = ( (TRACK*) item )->GetNet();
break;
2008-02-19 16:54:57 +00:00
case TYPE_ZONE_CONTAINER:
netcode = ( (ZONE_CONTAINER*) item )->GetNet();
break;
2008-02-19 16:54:57 +00:00
default:
; // until somebody changes GENERAL_COLLECTOR::PadsOrTracks,
// this should not happen.
2007-08-10 19:14:51 +00:00
}
}
if( netcode >= 0 )
{
GetBoard()->SetHighLightNet( netcode );
High_Light( DC );
}
2008-02-19 16:54:57 +00:00
return netcode; // HitTest() failed.
}
/*
* Highlight command.
*
* Show or removes the net at the current cursor position.
2007-08-10 19:14:51 +00:00
*/
void PCB_EDIT_FRAME::High_Light( wxDC* DC )
{
if( GetBoard()->IsHighLightNetON() )
GetBoard()->HighLightOFF();
else
GetBoard()->HighLightON();
2008-02-23 04:53:44 +00:00
GetBoard()->DrawHighLight( DrawPanel, DC, GetBoard()->GetHighLightNetCode() );
}