2007-08-10 19:14:51 +00:00
|
|
|
|
/****************************/
|
|
|
|
|
/* affichage des empreintes */
|
|
|
|
|
/****************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
#include "gr_basic.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
#include "class_drawpanel.h"
|
|
|
|
|
#include "confirm.h"
|
|
|
|
|
#include "kicad_string.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
#include "pcbnew.h"
|
2009-07-30 11:04:07 +00:00
|
|
|
|
#include "wxPcbStruct.h"
|
2007-12-13 06:24:09 +00:00
|
|
|
|
#include "collectors.h"
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
#define Pad_fill (Pad_Fill_Item.State == RUN)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
2009-05-28 08:42:24 +00:00
|
|
|
|
void WinEDA_PcbFrame::ListNetsAndSelect( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*********************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
/** Function ListNetsAndSelect
|
|
|
|
|
* called by a command event
|
|
|
|
|
* displays the sorted list of nets in a dialog frame
|
|
|
|
|
* If a net is selected, it is hightlighted
|
2007-08-10 19:14:51 +00:00
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
|
NETINFO_ITEM* net;
|
|
|
|
|
wxString netFilter;
|
|
|
|
|
int selection;
|
|
|
|
|
|
|
|
|
|
netFilter = wxT( "*" );
|
|
|
|
|
Get_Message( _( "Filter for net names:" ), _( "Net Filter" ), netFilter, this );
|
|
|
|
|
if( netFilter.IsEmpty() )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
WinEDA_TextFrame List( this, _( "List Nets" ) );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
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 );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
wxString Line;
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( !WildCompareString( netFilter, net->GetNetname(), false ) )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
continue;
|
|
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
|
Line.Printf( wxT( "net_code = %3.3d [%.16s] " ), net->GetNet(),
|
2009-10-14 18:14:58 +00:00
|
|
|
|
GetChars( net->GetNetname() ) );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
List.Append( Line );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
selection = List.ShowModal();
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( selection < 0 )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
bool found = false;
|
|
|
|
|
unsigned netcode = (unsigned) selection;
|
|
|
|
|
|
|
|
|
|
// 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 );
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( !WildCompareString( netFilter, net->GetNetname(), false ) )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
continue;
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( ii == netcode )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
|
netcode = net->GetNet();
|
|
|
|
|
found = true;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( found )
|
|
|
|
|
{
|
|
|
|
|
wxClientDC dc( DrawPanel );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
DrawPanel->PrepareGraphicContext( &dc );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
if( g_HightLigt_Status )
|
|
|
|
|
Hight_Light( &dc );
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
|
g_HightLigth_NetCode = netcode;
|
|
|
|
|
Hight_Light( &dc );
|
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
int WinEDA_PcbFrame::Select_High_Light( wxDC* DC )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/**************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Localise track ou pad et met en surbrillance le net correspondant
|
2007-08-10 19:14:51 +00:00
|
|
|
|
* Retourne le netcode, ou -1 si pas de net localis<EFBFBD>*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( g_HightLigt_Status )
|
|
|
|
|
Hight_Light( DC );
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2009-02-25 16:35:47 +00:00
|
|
|
|
// use this scheme because a pad is a higher priority than a track in the
|
2007-12-13 06:24:09 +00:00
|
|
|
|
// 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.
|
2007-12-13 06:24:09 +00:00
|
|
|
|
|
|
|
|
|
GENERAL_COLLECTORS_GUIDE guide = GetCollectorsGuide();
|
|
|
|
|
|
2007-12-13 14:23:50 +00:00
|
|
|
|
// optionally, modify the "guide" here as needed using its member functions
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
|
m_Collector->Collect( GetBoard(), GENERAL_COLLECTOR::PadsTracksOrZones,
|
2009-05-28 08:42:24 +00:00
|
|
|
|
GetScreen()->RefPos( true ), guide );
|
2007-12-13 06:24:09 +00:00
|
|
|
|
|
|
|
|
|
BOARD_ITEM* item = (*m_Collector)[0];
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2007-12-13 06:24:09 +00:00
|
|
|
|
if( item )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2007-12-13 06:24:09 +00:00
|
|
|
|
switch( item->Type() )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
|
case TYPE_PAD:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
g_HightLigth_NetCode = ( (D_PAD*) item )->GetNet();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
Hight_Light( DC );
|
2007-12-13 06:24:09 +00:00
|
|
|
|
SendMessageToEESCHEMA( item );
|
|
|
|
|
return g_HightLigth_NetCode;
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
|
case TYPE_TRACK:
|
|
|
|
|
case TYPE_VIA:
|
|
|
|
|
case TYPE_ZONE:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
|
2007-12-13 14:21:50 +00:00
|
|
|
|
// since these classes are all derived from TRACK, use a common
|
|
|
|
|
// GetNet() function:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
g_HightLigth_NetCode = ( (TRACK*) item )->GetNet();
|
2007-12-13 06:24:09 +00:00
|
|
|
|
Hight_Light( DC );
|
|
|
|
|
return g_HightLigth_NetCode;
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
|
case TYPE_ZONE_CONTAINER:
|
2009-05-28 08:42:24 +00:00
|
|
|
|
g_HightLigth_NetCode = ( (ZONE_CONTAINER*) item )->GetNet();
|
2008-02-19 16:54:57 +00:00
|
|
|
|
Hight_Light( DC );
|
|
|
|
|
return g_HightLigth_NetCode;
|
|
|
|
|
|
2007-12-13 14:21:50 +00:00
|
|
|
|
default:
|
|
|
|
|
; // until somebody changes GENERAL_COLLECTOR::PadsOrTracks,
|
|
|
|
|
// this should not happen.
|
2007-08-10 19:14:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
2007-12-13 06:24:09 +00:00
|
|
|
|
return -1; // HitTest() failed.
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
void WinEDA_PcbFrame::Hight_Light( wxDC* DC )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*******************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*
|
2007-08-10 19:14:51 +00:00
|
|
|
|
* fonction d'appel de Surbrillance a partir du menu
|
|
|
|
|
* Met ou supprime la surbrillance d'un net pointe par la souris
|
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
g_HightLigt_Status = !g_HightLigt_Status;
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2009-02-25 16:35:47 +00:00
|
|
|
|
GetBoard()->DrawHighLight( DrawPanel, DC, g_HightLigth_NetCode );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|