kicad/pcbnew/surbrill.cpp

158 lines
4.3 KiB
C++
Raw Normal View History

2007-08-10 19:14:51 +00:00
/****************************/
/* affichage des empreintes */
/****************************/
#include "fctsys.h"
#include "gr_basic.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "kicad_string.h"
#include "pcbnew.h"
#include "protos.h"
#include "collectors.h"
#define Pad_fill (Pad_Fill_Item.State == RUN)
/*********************************************************/
2007-08-10 19:14:51 +00:00
void WinEDA_PcbFrame::Liste_Equipot( wxCommandEvent& event )
/*********************************************************/
2007-08-10 19:14: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-08-10 19:14:51 +00:00
EQUIPOT* Equipot;
wxString msg;
WinEDA_TextFrame* List;
int ii, jj;
msg = wxT( "*" );
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*) GetBoard()->m_Equipots;
for( ; Equipot != NULL; Equipot = (EQUIPOT*) Equipot->Next() )
2007-08-10 19:14:51 +00:00
{
wxString Line;
/* calcul adr relative du nom de la pastille reference de la piste */
if( !WildCompareString( msg, Equipot->GetNetname(), FALSE ) )
2007-08-10 19:14:51 +00:00
continue;
2007-10-13 06:18:44 +00:00
Line.Printf( wxT( "net_code = %3.3d [%.16s] " ), Equipot->GetNet(),
Equipot->GetNetname().GetData() );
2007-08-10 19:14:51 +00:00
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*) GetBoard()->m_Equipots;
for( jj = 0; Equipot != NULL; Equipot = (EQUIPOT*) Equipot->Next() )
2007-08-10 19:14:51 +00:00
{
/* calcul adr relative du nom de la pastille reference de la piste */
if( !WildCompareString( msg, Equipot->GetNetname(), FALSE ) )
2007-08-10 19:14:51 +00:00
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-08-10 19:14:51 +00:00
int WinEDA_PcbFrame::Select_High_Light( wxDC* DC )
/**************************************************/
2007-08-10 19:14: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-08-10 19:14:51 +00:00
if( g_HightLigt_Status )
Hight_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:
g_HightLigth_NetCode = ((D_PAD*)item)->GetNet();
2007-08-10 19:14:51 +00:00
Hight_Light( DC );
SendMessageToEESCHEMA( item );
return g_HightLigth_NetCode;
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:
g_HightLigth_NetCode = ((TRACK*)item)->GetNet();
Hight_Light( DC );
return g_HightLigth_NetCode;
2008-02-19 16:54:57 +00:00
case TYPE_ZONE_CONTAINER:
2008-02-19 16:54:57 +00:00
g_HightLigth_NetCode = ((ZONE_CONTAINER*)item)->GetNet();
Hight_Light( DC );
return g_HightLigth_NetCode;
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
return -1; // HitTest() failed.
}
/*******************************************/
2007-08-10 19:14:51 +00:00
void WinEDA_PcbFrame::Hight_Light( wxDC* DC )
/*******************************************/
2007-08-10 19:14: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-08-10 19:14:51 +00:00
g_HightLigt_Status = !g_HightLigt_Status;
2008-02-23 04:53:44 +00:00
GetBoard()->DrawHighLight( DrawPanel, DC, g_HightLigth_NetCode );
}