KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcbnew/cross-probing.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-3.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24
33
34#include <board.h>
36#include <fmt.h>
37#include <footprint.h>
38#include <pad.h>
39#include <pcb_track.h>
40#include <pcb_group.h>
41#include <zone.h>
42#include <collectors.h>
43#include <eda_dde.h>
44#include <kiface_base.h>
45#include <kiway_express.h>
46#include <string_utils.h>
49#include <gal/painter.h>
50#include <pcb_edit_frame.h>
51#include <pcbnew_settings.h>
52#include <render_settings.h>
53#include <richio.h>
54#include <tool/tool_manager.h>
55#include <tools/pcb_actions.h>
57#include <trace_helpers.h>
60#include <wx/log.h>
61
62/* Execute a remote command sent via a socket on port KICAD_PCB_PORT_SERVICE_NUMBER
63 *
64 * Commands are:
65 *
66 * $NET: "net name" Highlight the given net
67 * $NETS: "net name 1,net name 2" Highlight all given nets
68 * $CLEAR Clear existing highlight
69 *
70 * $CONFIG Show the Manage Footprint Libraries dialog
71 * $CUSTOM_RULES Show the "Custom Rules" page of the Board Setup dialog
72 * $DRC Show the DRC dialog
73 */
74void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
75{
76 char line[1024];
77 char* idcmd;
78 char* text;
79 int netcode = -1;
80 bool multiHighlight = false;
81 BOARD* pcb = GetBoard();
82
84
85 KIGFX::VIEW* view = m_toolManager->GetView();
86 KIGFX::RENDER_SETTINGS* renderSettings = view->GetPainter()->GetSettings();
87
88 strncpy( line, cmdline, sizeof(line) - 1 );
89 line[sizeof(line) - 1] = 0;
90
91 idcmd = strtok( line, " \n\r" );
92 text = strtok( nullptr, "\"\n\r" );
93
94 if( idcmd == nullptr )
95 return;
96
97 if( strcmp( idcmd, "$CONFIG" ) == 0 )
98 {
100 return;
101 }
102 else if( strcmp( idcmd, "$CUSTOM_RULES" ) == 0 )
103 {
104 ShowBoardSetupDialog( _( "Custom Rules" ) );
105 return;
106 }
107 else if( strcmp( idcmd, "$DRC" ) == 0 )
108 {
110 return;
111 }
112 else if( strcmp( idcmd, "$CLEAR" ) == 0 )
113 {
114 if( renderSettings->IsHighlightEnabled() )
115 {
116 renderSettings->SetHighlight( false );
117 view->UpdateAllLayersColor();
118 }
119
120 if( pcb->IsHighLightNetON() )
121 {
122 pcb->ResetNetHighLight();
123 SetMsgPanel( pcb );
124 }
125
126 GetCanvas()->Refresh();
127 return;
128 }
129 else if( strcmp( idcmd, "$NET:" ) == 0 )
130 {
131 if( !crossProbingSettings.auto_highlight )
132 return;
133
134 wxString net_name = From_UTF8( text );
135
136 NETINFO_ITEM* netinfo = pcb->FindNet( net_name );
137
138 if( netinfo )
139 {
140 netcode = netinfo->GetNetCode();
141
142 std::vector<MSG_PANEL_ITEM> items;
143 netinfo->GetMsgPanelInfo( this, items );
144 SetMsgPanel( items );
145 }
146
147 // fall through to highlighting section
148 }
149 else if( strcmp( idcmd, "$NETS:" ) == 0 )
150 {
151 if( !crossProbingSettings.auto_highlight )
152 return;
153
154 wxStringTokenizer netsTok = wxStringTokenizer( From_UTF8( text ), ",", wxTOKEN_STRTOK );
155 bool first = true;
156
157 while( netsTok.HasMoreTokens() )
158 {
159 NETINFO_ITEM* netinfo = pcb->FindNet( netsTok.GetNextToken().Trim( true ).Trim( false ) );
160
161 if( netinfo )
162 {
163 if( first )
164 {
165 // TODO: Once buses are included in netlist, show bus name
166 std::vector<MSG_PANEL_ITEM> items;
167 netinfo->GetMsgPanelInfo( this, items );
168 SetMsgPanel( items );
169 first = false;
170
171 pcb->SetHighLightNet( netinfo->GetNetCode() );
172 renderSettings->SetHighlight( true, netinfo->GetNetCode() );
173 multiHighlight = true;
174 }
175 else
176 {
177 pcb->SetHighLightNet( netinfo->GetNetCode(), true );
178 renderSettings->SetHighlight( true, netinfo->GetNetCode(), true );
179 }
180 }
181 }
182
183 netcode = -1;
184
185 // fall through to highlighting section
186 }
187
188 BOX2I bbox;
189
190 if( netcode > 0 || multiHighlight )
191 {
192 if( !multiHighlight )
193 {
194 renderSettings->SetHighlight( ( netcode >= 0 ), netcode );
195 pcb->SetHighLightNet( netcode );
196 }
197 else
198 {
199 // Just pick the first one for area calculation
200 netcode = *pcb->GetHighLightNetCodes().begin();
201 }
202
203 pcb->HighLightON();
204
205 auto merge_area =
206 [netcode, &bbox]( BOARD_CONNECTED_ITEM* aItem )
207 {
208 if( aItem->GetNetCode() == netcode )
209 bbox.Merge( aItem->GetBoundingBox() );
210 };
211
212 if( crossProbingSettings.center_on_items )
213 {
214 for( ZONE* zone : pcb->Zones() )
215 merge_area( zone );
216
217 for( PCB_TRACK* track : pcb->Tracks() )
218 merge_area( track );
219
220 for( FOOTPRINT* fp : pcb->Footprints() )
221 {
222 for( PAD* p : fp->Pads() )
223 merge_area( p );
224 }
225 }
226 }
227 else
228 {
229 renderSettings->SetHighlight( false );
230 }
231
232 if( crossProbingSettings.center_on_items && bbox.GetWidth() != 0 && bbox.GetHeight() != 0 )
233 {
234 if( crossProbingSettings.zoom_to_fit )
235 GetToolManager()->GetTool<PCB_SELECTION_TOOL>()->ZoomFitCrossProbeBBox( bbox );
236
237 FocusOnLocation( bbox.Centre() );
238 }
239
240 view->UpdateAllLayersColor();
241
242 // Ensure the display is refreshed, because in some installs the refresh is done only
243 // when the gal canvas has the focus, and that is not the case when crossprobing from
244 // Eeschema:
245 GetCanvas()->Refresh();
246}
247
248
249std::string FormatProbeItem( BOARD_ITEM* aItem )
250{
251 if( !aItem )
252 return "$CLEAR: \"HIGHLIGHTED\""; // message to clear highlight state
253
254 switch( aItem->Type() )
255 {
256 case PCB_FOOTPRINT_T:
257 {
258 FOOTPRINT* footprint = static_cast<FOOTPRINT*>( aItem );
259 return fmt::format( "$PART: \"{}\"", TO_UTF8( footprint->GetReference() ) );
260 }
261
262 case PCB_PAD_T:
263 {
264 PAD* pad = static_cast<PAD*>( aItem );
265 FOOTPRINT* footprint = pad->GetParentFootprint();
266
267 return fmt::format( "$PART: \"{}\" $PAD: \"{}\"",
268 TO_UTF8( footprint->GetReference() ),
269 TO_UTF8( pad->GetNumber() ) );
270 }
271
272 case PCB_FIELD_T:
273 {
274 PCB_FIELD* field = static_cast<PCB_FIELD*>( aItem );
275 FOOTPRINT* footprint = field->GetParentFootprint();
276 const char* text_key;
277
278 /* This can't be a switch since the break need to pull out
279 * from the outer switch! */
280 if( field->IsReference() )
281 text_key = "$REF:";
282 else if( field->IsValue() )
283 text_key = "$VAL:";
284 else
285 break;
286
287 return fmt::format( "$PART: \"{}\" {} \"{}\"",
288 TO_UTF8( footprint->GetReference() ),
289 text_key,
290 TO_UTF8( field->GetText() ) );
291 }
292
293 default:
294 break;
295 }
296
297 return "";
298}
299
300
301template <typename ItemContainer>
302void collectItemsForSyncParts( ItemContainer& aItems, std::set<wxString>& parts )
303{
304 for( EDA_ITEM* item : aItems )
305 {
306 switch( item->Type() )
307 {
308 case PCB_GROUP_T:
309 {
310 PCB_GROUP* group = static_cast<PCB_GROUP*>( item );
311
312 collectItemsForSyncParts( group->GetItems(), parts );
313 break;
314 }
315 case PCB_FOOTPRINT_T:
316 {
317 FOOTPRINT* footprint = static_cast<FOOTPRINT*>( item );
318 wxString ref = footprint->GetReference();
319
320 parts.emplace( wxT( "F" ) + EscapeString( ref, CTX_IPC ) );
321 break;
322 }
323
324 case PCB_PAD_T:
325 {
326 PAD* pad = static_cast<PAD*>( item );
327 wxString ref = pad->GetParentFootprint()->GetReference();
328
329 parts.emplace( wxT( "P" ) + EscapeString( ref, CTX_IPC ) + wxT( "/" )
330 + EscapeString( pad->GetNumber(), CTX_IPC ) );
331 break;
332 }
333
334 default: break;
335 }
336 }
337}
338
339
340void PCB_EDIT_FRAME::SendSelectItemsToSch( const std::deque<EDA_ITEM*>& aItems,
341 EDA_ITEM* aFocusItem, bool aForce )
342{
343 std::string command = "$SELECT: ";
344
345 if( aFocusItem )
346 {
347 std::deque<EDA_ITEM*> focusItems = { aFocusItem };
348 std::set<wxString> focusParts;
349 collectItemsForSyncParts( focusItems, focusParts );
350
351 if( focusParts.size() > 0 )
352 {
353 command += "1,";
354 command += *focusParts.begin();
355 command += ",";
356 }
357 else
358 {
359 command += "0,";
360 }
361 }
362 else
363 {
364 command += "0,";
365 }
366
367 std::set<wxString> parts;
368 collectItemsForSyncParts( aItems, parts );
369
370 if( parts.empty() )
371 return;
372
373 for( wxString part : parts )
374 {
375 command += part;
376 command += ",";
377 }
378
379 command.pop_back();
380
381 if( Kiface().IsSingle() )
382 {
383 SendCommand( MSG_TO_SCH, command );
384 }
385 else
386 {
387 // Typically ExpressMail is going to be s-expression packets, but since
388 // we have existing interpreter of the selection packet on the other
389 // side in place, we use that here.
391 this );
392 }
393}
394
395
396void PCB_EDIT_FRAME::SendCrossProbeNetName( const wxString& aNetName )
397{
398 std::string packet = fmt::format( "$NET: \"{}\"", TO_UTF8( aNetName ) );
399
400 if( !packet.empty() )
401 {
402 if( Kiface().IsSingle() )
403 {
404 SendCommand( MSG_TO_SCH, packet );
405 }
406 else
407 {
408 // Typically ExpressMail is going to be s-expression packets, but since
409 // we have existing interpreter of the cross probe packet on the other
410 // side in place, we use that here.
411 Kiway().ExpressMail( FRAME_SCH, MAIL_CROSS_PROBE, packet, this );
412 }
413 }
414}
415
416
418{
419 std::string packet = FormatProbeItem( aSyncItem );
420
421 if( !packet.empty() )
422 {
423 if( Kiface().IsSingle() )
424 {
425 SendCommand( MSG_TO_SCH, packet );
426 }
427 else
428 {
429 // Typically ExpressMail is going to be s-expression packets, but since
430 // we have existing interpreter of the cross probe packet on the other
431 // side in place, we use that here.
432 Kiway().ExpressMail( FRAME_SCH, MAIL_CROSS_PROBE, packet, this );
433 }
434 }
435}
436
437
438std::vector<BOARD_ITEM*> PCB_EDIT_FRAME::FindItemsFromSyncSelection( std::string syncStr )
439{
440 wxArrayString syncArray = wxStringTokenize( syncStr, "," );
441
442 std::vector<std::pair<int, BOARD_ITEM*>> orderPairs;
443
444 for( FOOTPRINT* footprint : GetBoard()->Footprints() )
445 {
446 if( footprint == nullptr )
447 continue;
448
449 wxString fpSheetPath = footprint->GetPath().AsString().BeforeLast( '/' );
450 wxString fpUUID = footprint->m_Uuid.AsString();
451
452 if( fpSheetPath.IsEmpty() )
453 fpSheetPath += '/';
454
455 if( fpUUID.empty() )
456 continue;
457
458 wxString fpRefEscaped = EscapeString( footprint->GetReference(), CTX_IPC );
459
460 for( unsigned index = 0; index < syncArray.size(); ++index )
461 {
462 wxString syncEntry = syncArray[index];
463
464 if( syncEntry.empty() )
465 continue;
466
467 wxString syncData = syncEntry.substr( 1 );
468
469 switch( syncEntry.GetChar( 0 ).GetValue() )
470 {
471 case 'S': // Select sheet with subsheets: S<Sheet path>
472 if( fpSheetPath.StartsWith( syncData ) )
473 {
474 orderPairs.emplace_back( index, footprint );
475 }
476 break;
477 case 'F': // Select footprint: F<Reference>
478 if( syncData == fpRefEscaped )
479 {
480 orderPairs.emplace_back( index, footprint );
481 }
482 break;
483 case 'P': // Select pad: P<Footprint reference>/<Pad number>
484 {
485 if( syncData.StartsWith( fpRefEscaped ) )
486 {
487 wxString selectPadNumberEscaped =
488 syncData.substr( fpRefEscaped.size() + 1 ); // Skips the slash
489
490 wxString selectPadNumber = UnescapeString( selectPadNumberEscaped );
491
492 for( PAD* pad : footprint->Pads() )
493 {
494 if( selectPadNumber == pad->GetNumber() )
495 {
496 orderPairs.emplace_back( index, pad );
497 }
498 }
499 }
500 break;
501 }
502 default: break;
503 }
504 }
505 }
506
507 std::sort(
508 orderPairs.begin(), orderPairs.end(),
509 []( const std::pair<int, BOARD_ITEM*>& a, const std::pair<int, BOARD_ITEM*>& b ) -> bool
510 {
511 return a.first < b.first;
512 } );
513
514 std::vector<BOARD_ITEM*> items;
515 items.reserve( orderPairs.size() );
516
517 for( const std::pair<int, BOARD_ITEM*>& pair : orderPairs )
518 items.push_back( pair.second );
519
520 return items;
521}
522
523
525{
526 std::string& payload = mail.GetPayload();
527
528 switch( mail.Command() )
529 {
531 {
534
535 for( FOOTPRINT* footprint : GetBoard()->Footprints() )
536 {
537 if( footprint->GetAttributes() & FP_BOARD_ONLY )
538 continue; // Don't add board-only footprints to the netlist
539
540 COMPONENT* component = new COMPONENT( footprint->GetFPID(), footprint->GetReference(),
541 footprint->GetValue(), footprint->GetPath(), {} );
542
543 for( PAD* pad : footprint->Pads() )
544 {
545 const wxString& netname = pad->GetShortNetname();
546
547 if( !netname.IsEmpty() )
548 {
549 component->AddNet( pad->GetNumber(), netname, pad->GetPinFunction(),
550 pad->GetPinType() );
551 }
552 }
553
554 nlohmann::ordered_map<wxString, wxString> fields;
555 for( PCB_FIELD* field : footprint->GetFields() )
556 fields[field->GetCanonicalName()] = field->GetText();
557
558 component->SetFields( fields );
559
560 // Add DNP and Exclude from BOM properties
561 std::map<wxString, wxString> properties;
562
563 if( footprint->GetAttributes() & FP_DNP )
564 properties.emplace( "dnp", "" );
565
566 if( footprint->GetAttributes() & FP_EXCLUDE_FROM_BOM )
567 properties.emplace( "exclude_from_bom", "" );
568
569 component->SetProperties( properties );
570
571 netlist.AddComponent( component );
572 }
573
574 netlist.Format( "pcb_netlist", &sf, 0, CTL_OMIT_FILTERS );
575 payload = sf.GetString();
576 break;
577 }
578
580 try
581 {
583 FetchNetlistFromSchematic( netlist, wxEmptyString );
584
585 BOARD_NETLIST_UPDATER updater( this, GetBoard() );
586 updater.SetLookupByTimestamp( false );
587 updater.SetDeleteUnusedFootprints( false );
588 updater.SetReplaceFootprints( false );
589 updater.SetTransferGroups( false );
590 updater.UpdateNetlist( netlist );
591
592 bool dummy;
593 OnNetlistChanged( updater, &dummy );
594 }
595 catch( const IO_ERROR& )
596 {
597 assert( false ); // should never happen
598 return;
599 }
600
601 break;
602
603 case MAIL_CROSS_PROBE:
604 ExecuteRemoteCommand( payload.c_str() );
605 break;
606
607
608 case MAIL_SELECTION:
609 if( !GetPcbNewSettings()->m_CrossProbing.on_selection )
610 break;
611
613
615 {
616 // $SELECT: <mode 0 - only footprints, 1 - with connections>,<spec1>,<spec2>,<spec3>
617 std::string prefix = "$SELECT: ";
618
619 if( !payload.compare( 0, prefix.size(), prefix ) )
620 {
621 std::string del = ",";
622 std::string paramStr = payload.substr( prefix.size() );
623 size_t modeEnd = paramStr.find( del );
624 bool selectConnections = false;
625
626 try
627 {
628 if( std::stoi( paramStr.substr( 0, modeEnd ) ) == 1 )
629 selectConnections = true;
630 }
631 catch( std::invalid_argument& )
632 {
633 wxFAIL;
634 }
635
636 std::vector<BOARD_ITEM*> items =
637 FindItemsFromSyncSelection( paramStr.substr( modeEnd + 1 ) );
638
639 m_probingSchToPcb = true; // recursion guard
640
641 if( selectConnections )
643 else
645
646 // Update 3D viewer highlighting
647 Update3DView( false, GetPcbNewSettings()->m_Display.m_Live3DRefresh );
648
649 m_probingSchToPcb = false;
650
651 if( GetPcbNewSettings()->m_CrossProbing.flash_selection )
652 {
653 wxLogTrace( traceCrossProbeFlash, "MAIL_SELECTION(_FORCE) PCB: flash enabled, items=%zu", items.size() );
654 if( items.empty() )
655 {
656 wxLogTrace( traceCrossProbeFlash, "MAIL_SELECTION(_FORCE) PCB: nothing to flash" );
657 }
658 else
659 {
660 std::vector<BOARD_ITEM*> boardItems;
661 std::copy( items.begin(), items.end(), std::back_inserter( boardItems ) );
662 StartCrossProbeFlash( boardItems );
663 }
664 }
665 else
666 {
667 wxLogTrace( traceCrossProbeFlash, "MAIL_SELECTION(_FORCE) PCB: flash disabled" );
668 }
669 }
670
671 break;
672 }
673
674 case MAIL_PCB_UPDATE:
676 break;
677
678 case MAIL_IMPORT_FILE:
679 {
680 // Extract file format type and path (plugin type, path and properties keys, values separated with \n)
681 std::stringstream ss( payload );
682 char delim = '\n';
683
684 std::string formatStr;
685 wxCHECK( std::getline( ss, formatStr, delim ), /* void */ );
686
687 std::string fnameStr;
688 wxCHECK( std::getline( ss, fnameStr, delim ), /* void */ );
689 wxASSERT( !fnameStr.empty() );
690
691 int importFormat;
692
693 try
694 {
695 importFormat = std::stoi( formatStr );
696 }
697 catch( std::invalid_argument& )
698 {
699 wxFAIL;
700 importFormat = -1;
701 }
702
703 std::map<std::string, UTF8> props;
704
705 std::string key, value;
706 do
707 {
708 if( !std::getline( ss, key, delim ) )
709 break;
710
711 if( !std::getline( ss, value, delim ) )
712 break;
713
714 props.emplace( key, value );
715
716 } while( true );
717
718 if( importFormat >= 0 )
719 importFile( fnameStr, importFormat, props.empty() ? nullptr : &props );
720
721 break;
722 }
723
726 break;
727
728 case MAIL_RELOAD_LIB:
729 m_designBlocksPane->RefreshLibs();
730 break;
731
732 // many many others.
733 default:
734 ;
735 }
736}
737
int index
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
static TOOL_ACTION updatePcbFromSchematic
Definition actions.h:264
static TOOL_ACTION pluginsReload
Definition actions.h:294
static TOOL_ACTION showFootprintLibTable
Definition actions.h:283
CROSS_PROBING_SETTINGS m_CrossProbing
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:83
FOOTPRINT * GetParentFootprint() const
Update the BOARD with a new netlist.
bool UpdateNetlist(NETLIST &aNetlist)
Update the board's components according to the new netlist.
void SetDeleteUnusedFootprints(bool aEnabled)
void SetReplaceFootprints(bool aEnabled)
void SetLookupByTimestamp(bool aEnabled)
void SetTransferGroups(bool aEnabled)
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
const std::set< int > & GetHighLightNetCodes() const
Definition board.h:595
void SetHighLightNet(int aNetCode, bool aMulti=false)
Select the netcode to be highlighted.
Definition board.cpp:3065
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
Definition board.cpp:2331
const ZONES & Zones() const
Definition board.h:367
void ResetNetHighLight()
Reset all high light data to the init state.
Definition board.cpp:3056
const FOOTPRINTS & Footprints() const
Definition board.h:363
const TRACKS & Tracks() const
Definition board.h:361
bool IsHighLightNetON() const
Definition board.h:611
void HighLightON(bool aValue=true)
Enable or disable net highlighting.
Definition board.cpp:3078
constexpr size_type GetWidth() const
Definition box2.h:214
constexpr Vec Centre() const
Definition box2.h:97
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition box2.h:658
constexpr size_type GetHeight() const
Definition box2.h:215
Store all of the related component information found in a netlist.
void SetProperties(std::map< wxString, wxString > aProps)
void AddNet(const wxString &aPinName, const wxString &aNetName, const wxString &aPinFunction, const wxString &aPinType)
void SetFields(nlohmann::ordered_map< wxString, wxString > aFields)
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
void FocusOnLocation(const VECTOR2I &aPos, bool aAllowScroll=true)
Useful to focus on a particular location, in find functions.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition eda_text.h:98
const wxString & GetReference() const
Definition footprint.h:661
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
bool IsHighlightEnabled() const
Return current highlight setting.
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:66
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
Definition view.cpp:775
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition view.h:220
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
std::string & GetPayload()
Return the payload, which can be any text but it typically self identifying s-expression.
MAIL_T Command()
Returns the MAIL_T associated with this mail.
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr, bool aFromOtherThread=false)
Send aPayload to aDestination from aSource.
Definition kiway.cpp:507
Handle the data for a net.
Definition netinfo.h:54
int GetNetCode() const
Definition netinfo.h:106
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Return the information about the NETINFO_ITEM in aList to display in the message panel.
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
Definition pad.h:55
static TOOL_ACTION runDRC
static TOOL_ACTION syncSelection
Sets selection to specified items, zooms to fit, if enabled.
Definition pcb_actions.h:63
static TOOL_ACTION syncSelectionWithNets
Sets selection to specified items with connected nets, zooms to fit, if enabled.
Definition pcb_actions.h:66
PCBNEW_SETTINGS * GetPcbNewSettings() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
BOARD * GetBoard() const
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
void StartCrossProbeFlash(const std::vector< BOARD_ITEM * > &aItems)
void ShowBoardSetupDialog(const wxString &aInitialPage=wxEmptyString, wxWindow *aParent=nullptr)
void KiwayMailIn(KIWAY_EXPRESS &aEvent) override
Receive KIWAY_EXPRESS messages from other players.
void OnNetlistChanged(BOARD_NETLIST_UPDATER &aUpdater, bool *aRunDragCommand)
Called after netlist is updated.
void ExecuteRemoteCommand(const char *cmdline) override
Execute a remote command send by Eeschema via a socket, port KICAD_PCB_PORT_SERVICE_NUMBER (currently...
void SendCrossProbeItem(BOARD_ITEM *aSyncItem)
Send a message to the schematic editor so that it may move its cursor to an item with the same refere...
bool FetchNetlistFromSchematic(NETLIST &aNetlist, const wxString &aAnnotateMessage)
void SendSelectItemsToSch(const std::deque< EDA_ITEM * > &aItems, EDA_ITEM *aFocusItem, bool aForce)
Send a message to the schematic editor to try to find schematic counterparts of specified PCB items a...
std::vector< BOARD_ITEM * > FindItemsFromSyncSelection(std::string syncStr)
Used to find items by selection synchronization spec string.
PCB_DESIGN_BLOCK_PANE * m_designBlocksPane
bool importFile(const wxString &aFileName, int aFileType, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load the given filename but sets the path to the current project path.
void SendCrossProbeNetName(const wxString &aNetName)
Send a net name to Eeschema for highlighting.
bool IsReference() const
Definition pcb_field.h:68
bool IsValue() const
Definition pcb_field.h:69
A set of BOARD_ITEMs (i.e., without duplicates).
Definition pcb_group.h:53
The selection tool: currently supports:
Implement an OUTPUTFORMATTER to a memory buffer.
Definition richio.h:422
const std::string & GetString()
Definition richio.h:445
TOOL_MANAGER * m_toolManager
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Handle a list of polygons defining a copper zone.
Definition zone.h:74
#define CTL_OMIT_FILTERS
Omit the ki_fp_filters attribute in .kicad_xxx files.
Definition ctl_flags.h:41
#define _(s)
bool SendCommand(int aService, const std::string &aMessage)
Used by a client to sent (by a socket connection) a data to a server.
Definition eda_dde.cpp:310
DDE server & client.
#define MSG_TO_SCH
Definition eda_dde.h:50
@ FP_DNP
Definition footprint.h:87
@ FP_BOARD_ONLY
Definition footprint.h:85
@ FP_EXCLUDE_FROM_BOM
Definition footprint.h:84
@ FRAME_SCH
Definition frame_type.h:34
const wxChar *const traceCrossProbeFlash
Flag to enable debug output for cross-probe flash operations.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
Definition macros.h:83
@ MAIL_PCB_UPDATE_LINKS
Definition mail_type.h:52
@ MAIL_IMPORT_FILE
Definition mail_type.h:48
@ MAIL_CROSS_PROBE
Definition mail_type.h:39
@ MAIL_PCB_UPDATE
Definition mail_type.h:46
@ MAIL_SELECTION_FORCE
Definition mail_type.h:41
@ MAIL_RELOAD_PLUGINS
Definition mail_type.h:58
@ MAIL_SELECTION
Definition mail_type.h:40
@ MAIL_RELOAD_LIB
Definition mail_type.h:57
@ MAIL_PCB_GET_NETLIST
Definition mail_type.h:51
Class to handle a set of BOARD_ITEMs.
void collectItemsForSyncParts(ItemContainer &aItems, std::set< wxString > &parts)
std::string FormatProbeItem(BOARD_ITEM *aItem)
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
wxString From_UTF8(const char *cstring)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
@ CTX_IPC
Cross-probing behavior.
bool zoom_to_fit
Zoom to fit items (ignored if center_on_items is off).
bool center_on_items
Automatically pan to cross-probed items.
bool auto_highlight
Automatically turn on highlight mode in the target frame.
wxLogTrace helper definitions.
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition typeinfo.h:111
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
Definition typeinfo.h:90
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
Definition typeinfo.h:86
@ PCB_PAD_T
class PAD, a pad in a footprint
Definition typeinfo.h:87