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"
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
|
|
#include "protos.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)
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
static void Pad_Surbrillance( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module, int NetCode );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
/* variables locales : */
|
2007-08-10 19:14:51 +00:00
|
|
|
|
static int draw_mode;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
void WinEDA_PcbFrame::Liste_Equipot( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*********************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Display a filtered list of equipot names
|
2007-08-10 19:14:51 +00:00
|
|
|
|
* if an equipot is selected the corresponding tracks and pads are highlighted
|
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
EQUIPOT* Equipot;
|
|
|
|
|
wxString msg;
|
|
|
|
|
WinEDA_TextFrame* List;
|
|
|
|
|
int ii, jj;
|
|
|
|
|
|
|
|
|
|
msg = wxT( "*" );
|
2008-09-22 16:03:12 +00:00
|
|
|
|
Get_Message( _( "Filter for net names:" ), _("Net Filter"), msg, this );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( msg.IsEmpty() )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
List = new WinEDA_TextFrame( this, _( "List Nets" ) );
|
|
|
|
|
|
|
|
|
|
Equipot = (EQUIPOT*) m_Pcb->m_Equipots;
|
|
|
|
|
for( ; Equipot != NULL; Equipot = (EQUIPOT*) Equipot->Pnext )
|
|
|
|
|
{
|
|
|
|
|
wxString Line;
|
|
|
|
|
/* calcul adr relative du nom de la pastille reference de la piste */
|
|
|
|
|
if( !WildCompareString( msg, Equipot->m_Netname, FALSE ) )
|
|
|
|
|
continue;
|
|
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
|
Line.Printf( wxT( "net_code = %3.3d [%.16s] " ), Equipot->GetNet(),
|
2007-08-10 19:14:51 +00:00
|
|
|
|
Equipot->m_Netname.GetData() );
|
|
|
|
|
List->Append( Line );
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-23 04:53:44 +00:00
|
|
|
|
ii = List->ShowModal();
|
|
|
|
|
|
|
|
|
|
List->Destroy();
|
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( ii < 0 )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Recherche du numero de net rellement selectionn<6E>*/
|
|
|
|
|
Equipot = (EQUIPOT*) m_Pcb->m_Equipots;
|
|
|
|
|
for( jj = 0; Equipot != NULL; Equipot = (EQUIPOT*) Equipot->Pnext )
|
|
|
|
|
{
|
|
|
|
|
/* calcul adr relative du nom de la pastille reference de la piste */
|
|
|
|
|
if( !WildCompareString( msg, Equipot->m_Netname, FALSE ) )
|
|
|
|
|
continue;
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( ii == jj )
|
|
|
|
|
{
|
2007-10-13 06:18:44 +00:00
|
|
|
|
ii = Equipot->GetNet();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
jj++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wxClientDC dc( DrawPanel );
|
|
|
|
|
|
|
|
|
|
DrawPanel->PrepareGraphicContext( &dc );
|
|
|
|
|
|
|
|
|
|
if( g_HightLigt_Status )
|
|
|
|
|
Hight_Light( &dc );
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
g_HightLigth_NetCode = ii;
|
|
|
|
|
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
|
|
|
|
|
2007-12-13 06:24:09 +00:00
|
|
|
|
// use this scheme because of pad is higher priority than tracks 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.
|
2007-12-13 06:24:09 +00:00
|
|
|
|
|
|
|
|
|
GENERAL_COLLECTORS_GUIDE guide = GetCollectorsGuide();
|
|
|
|
|
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m_Collector->Collect( m_Pcb, GENERAL_COLLECTOR::PadsTracksOrZones,
|
2007-12-13 06:24:09 +00:00
|
|
|
|
GetScreen()->RefPos( true ), guide );
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2007-12-13 06:24:09 +00:00
|
|
|
|
case TYPEPAD:
|
|
|
|
|
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
|
|
|
|
|
2007-12-13 14:21:50 +00:00
|
|
|
|
case TYPETRACK:
|
|
|
|
|
case TYPEVIA:
|
|
|
|
|
case TYPEZONE:
|
|
|
|
|
// since these classes are all derived from TRACK, use a common
|
|
|
|
|
// GetNet() function:
|
2007-12-13 06:24:09 +00:00
|
|
|
|
g_HightLigth_NetCode = ((TRACK*)item)->GetNet();
|
|
|
|
|
Hight_Light( DC );
|
|
|
|
|
return g_HightLigth_NetCode;
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
|
|
|
|
case TYPEZONE_CONTAINER:
|
|
|
|
|
g_HightLigth_NetCode = ((ZONE_CONTAINER*)item)->GetNet();
|
|
|
|
|
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;
|
|
|
|
|
DrawHightLight( DC, g_HightLigth_NetCode );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
void WinEDA_PcbFrame::DrawHightLight( wxDC* DC, int NetCode )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/****************************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Turn On or OFF the HightLight for trcak and pads with the netcode "NetCode'
|
2007-08-10 19:14:51 +00:00
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
if( g_HightLigt_Status )
|
|
|
|
|
draw_mode = GR_SURBRILL | GR_OR;
|
|
|
|
|
else
|
|
|
|
|
draw_mode = GR_AND | GR_SURBRILL;
|
|
|
|
|
|
2008-02-23 04:53:44 +00:00
|
|
|
|
#if 0 // does not unhighlight properly
|
|
|
|
|
// redraw the zones with the NetCode
|
|
|
|
|
for( SEGZONE* zone = m_Pcb->m_Zone; zone; zone = zone->Next() )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2008-02-23 04:53:44 +00:00
|
|
|
|
if( zone->GetNet() == NetCode )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2008-02-23 04:53:44 +00:00
|
|
|
|
zone->Draw( DrawPanel, DC, draw_mode );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-23 04:53:44 +00:00
|
|
|
|
#endif
|
2008-02-19 16:54:57 +00:00
|
|
|
|
|
|
|
|
|
// Redraw ZONE_CONTAINERS
|
|
|
|
|
BOARD::ZONE_CONTAINERS& zones = m_Pcb->m_ZoneDescriptorList;
|
|
|
|
|
for( BOARD::ZONE_CONTAINERS::iterator zc = zones.begin(); zc!=zones.end(); ++zc )
|
|
|
|
|
{
|
|
|
|
|
if( (*zc)->GetNet() == NetCode )
|
|
|
|
|
{
|
2008-04-01 05:21:50 +00:00
|
|
|
|
(*zc)->Draw( DrawPanel, DC, draw_mode );
|
2008-02-19 16:54:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-23 04:53:44 +00:00
|
|
|
|
|
|
|
|
|
/* Redraw pads */
|
|
|
|
|
for( MODULE* module = m_Pcb->m_Modules; module; module = module->Next() )
|
|
|
|
|
{
|
|
|
|
|
Pad_Surbrillance( DrawPanel, DC, module, NetCode );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Redraw track and vias: */
|
|
|
|
|
for( TRACK* pts = m_Pcb->m_Track; pts; pts = pts->Next() )
|
|
|
|
|
{
|
|
|
|
|
if( pts->GetNet() == NetCode )
|
|
|
|
|
{
|
|
|
|
|
pts->Draw( DrawPanel, DC, draw_mode );
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************/
|
2007-08-10 19:14:51 +00:00
|
|
|
|
static void Pad_Surbrillance( WinEDA_DrawPanel* panel,
|
|
|
|
|
wxDC* DC, MODULE* Module, int NetCode )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*******************************************************/
|
|
|
|
|
/* Mise en Surbrillance des Pads */
|
|
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
|
D_PAD* pt_pad;
|
|
|
|
|
|
|
|
|
|
/* trace des pastilles */
|
|
|
|
|
for( pt_pad = Module->m_Pads; pt_pad != NULL; pt_pad = (D_PAD*) pt_pad->Pnext )
|
|
|
|
|
{
|
2007-10-13 06:18:44 +00:00
|
|
|
|
if( pt_pad->GetNet() == NetCode )
|
2007-08-10 19:14:51 +00:00
|
|
|
|
{
|
2008-04-01 05:21:50 +00:00
|
|
|
|
pt_pad->Draw( panel, DC, draw_mode );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|