kicad/pcbnew/surbrill.cpp

219 lines
6.0 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 "common.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
static void Pad_Surbrillance( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module, int NetCode );
/* variables locales : */
2007-08-10 19:14:51 +00:00
static int draw_mode;
/*********************************************************/
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:" ), msg, this );
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 );
}
ii = List->ShowModal(); List->Destroy();
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;
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 );
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 of pad is higher priority than tracks in the
// search, and finding a pad, instead of a track on a pad,
// allows us to fire a message to eescema.
GENERAL_COLLECTORS_GUIDE guide = GetCollectorsGuide();
2008-02-19 16:54:57 +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,
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 TYPEPAD:
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 TYPETRACK:
case TYPEVIA:
case TYPEZONE:
// 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 TYPEZONE_CONTAINER:
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;
DrawHightLight( DC, g_HightLigth_NetCode );
}
/****************************************************************/
2007-08-10 19:14:51 +00:00
void WinEDA_PcbFrame::DrawHightLight( wxDC* DC, int NetCode )
/****************************************************************/
2007-08-10 19:14: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-08-10 19:14:51 +00:00
if( g_HightLigt_Status )
draw_mode = GR_SURBRILL | GR_OR;
else
draw_mode = GR_AND | GR_SURBRILL;
/* Redraw pads */
2008-02-19 16:54:57 +00:00
for( MODULE* module = m_Pcb->m_Modules; module; module = module->Next() )
2007-08-10 19:14:51 +00:00
{
2008-02-19 16:54:57 +00:00
Pad_Surbrillance( DrawPanel, DC, module, NetCode );
2007-08-10 19:14:51 +00:00
}
/* Redraw track and vias: */
2008-02-19 16:54:57 +00:00
for( TRACK* pts = m_Pcb->m_Track; pts; pts = pts->Next() )
2007-08-10 19:14:51 +00:00
{
2007-10-13 06:18:44 +00:00
if( pts->GetNet() == NetCode )
2007-08-10 19:14:51 +00:00
{
pts->Draw( DrawPanel, DC, draw_mode );
}
}
2008-02-19 16:54:57 +00:00
wxPoint zero(0,0); // construct outside loop for speed
// 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 )
{
(*zc)->Draw( DrawPanel, DC, zero, draw_mode );
}
}
}
/*******************************************************/
2007-08-10 19:14:51 +00:00
static void Pad_Surbrillance( WinEDA_DrawPanel* panel,
wxDC* DC, MODULE* Module, int NetCode )
/*******************************************************/
/* Mise en Surbrillance des Pads */
{
2007-08-10 19:14:51 +00:00
D_PAD* pt_pad;
2008-02-19 16:54:57 +00:00
wxPoint zero(0,0); // construct outside loop for speed
2007-08-10 19:14:51 +00:00
/* 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-02-19 16:54:57 +00:00
pt_pad->Draw( panel, DC, zero, draw_mode );
2007-08-10 19:14:51 +00:00
}
}
}