KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
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
34#include <board.h>
36#include <footprint.h>
37#include <pad.h>
38#include <pcb_track.h>
39#include <pcb_group.h>
40#include <zone.h>
41#include <collectors.h>
42#include <eda_dde.h>
43#include <kiface_base.h>
44#include <kiway_express.h>
45#include <string_utils.h>
48#include <gal/painter.h>
49#include <pcb_edit_frame.h>
50#include <pcbnew_settings.h>
51#include <render_settings.h>
52#include <richio.h>
53#include <tool/tool_manager.h>
54#include <tools/pcb_actions.h>
58#include <wx/log.h>
59
60/* Execute a remote command sent via a socket on port KICAD_PCB_PORT_SERVICE_NUMBER
61 *
62 * Commands are:
63 *
64 * $NET: "net name" Highlight the given net
65 * $NETS: "net name 1,net name 2" Highlight all given nets
66 * $CLEAR Clear existing highlight
67 *
68 * $CONFIG Show the Manage Footprint Libraries dialog
69 * $CUSTOM_RULES Show the "Custom Rules" page of the Board Setup dialog
70 * $DRC Show the DRC dialog
71 */
72void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
73{
74 char line[1024];
75 wxString msg;
76 wxString modName;
77 char* idcmd;
78 char* text;
79 int netcode = -1;
80 bool multiHighlight = false;
81 FOOTPRINT* footprint = nullptr;
82 PAD* pad = nullptr;
83 BOARD* pcb = GetBoard();
84
86
88 KIGFX::RENDER_SETTINGS* renderSettings = view->GetPainter()->GetSettings();
89
90 strncpy( line, cmdline, sizeof(line) - 1 );
91 line[sizeof(line) - 1] = 0;
92
93 idcmd = strtok( line, " \n\r" );
94 text = strtok( nullptr, "\"\n\r" );
95
96 if( idcmd == nullptr )
97 return;
98
99 if( strcmp( idcmd, "$CONFIG" ) == 0 )
100 {
102 return;
103 }
104 else if( strcmp( idcmd, "$CUSTOM_RULES" ) == 0 )
105 {
106 ShowBoardSetupDialog( _( "Custom Rules" ) );
107 return;
108 }
109 else if( strcmp( idcmd, "$DRC" ) == 0 )
110 {
112 return;
113 }
114 else if( strcmp( idcmd, "$CLEAR" ) == 0 )
115 {
116 if( renderSettings->IsHighlightEnabled() )
117 {
118 renderSettings->SetHighlight( false );
119 view->UpdateAllLayersColor();
120 }
121
122 if( pcb->IsHighLightNetON() )
123 {
124 pcb->ResetNetHighLight();
125 SetMsgPanel( pcb );
126 }
127
128 GetCanvas()->Refresh();
129 return;
130 }
131 else if( strcmp( idcmd, "$NET:" ) == 0 )
132 {
133 if( !crossProbingSettings.auto_highlight )
134 return;
135
136 wxString net_name = From_UTF8( text );
137
138 NETINFO_ITEM* netinfo = pcb->FindNet( net_name );
139
140 if( netinfo )
141 {
142 netcode = netinfo->GetNetCode();
143
144 std::vector<MSG_PANEL_ITEM> items;
145 netinfo->GetMsgPanelInfo( this, items );
146 SetMsgPanel( items );
147 }
148
149 // fall through to highlighting section
150 }
151 else if( strcmp( idcmd, "$NETS:" ) == 0 )
152 {
153 if( !crossProbingSettings.auto_highlight )
154 return;
155
156 wxStringTokenizer netsTok = wxStringTokenizer( From_UTF8( text ), wxT( "," ) );
157 bool first = true;
158
159 while( netsTok.HasMoreTokens() )
160 {
161 NETINFO_ITEM* netinfo = pcb->FindNet( netsTok.GetNextToken() );
162
163 if( netinfo )
164 {
165 if( first )
166 {
167 // TODO: Once buses are included in netlist, show bus name
168 std::vector<MSG_PANEL_ITEM> items;
169 netinfo->GetMsgPanelInfo( this, items );
170 SetMsgPanel( items );
171 first = false;
172
173 pcb->SetHighLightNet( netinfo->GetNetCode() );
174 renderSettings->SetHighlight( true, netinfo->GetNetCode() );
175 multiHighlight = true;
176 }
177 else
178 {
179 pcb->SetHighLightNet( netinfo->GetNetCode(), true );
180 renderSettings->SetHighlight( true, netinfo->GetNetCode(), true );
181 }
182 }
183 }
184
185 netcode = -1;
186
187 // fall through to highlighting section
188 }
189
190 BOX2I bbox;
191
192 if( footprint )
193 {
194 bbox = footprint->GetBoundingBox( true );
195
196 if( pad )
198 else
200 }
201 else if( netcode > 0 || multiHighlight )
202 {
203 if( !multiHighlight )
204 {
205 renderSettings->SetHighlight( ( netcode >= 0 ), netcode );
206 pcb->SetHighLightNet( netcode );
207 }
208 else
209 {
210 // Just pick the first one for area calculation
211 netcode = *pcb->GetHighLightNetCodes().begin();
212 }
213
214 pcb->HighLightON();
215
216 auto merge_area =
217 [netcode, &bbox]( BOARD_CONNECTED_ITEM* aItem )
218 {
219 if( aItem->GetNetCode() == netcode )
220 bbox.Merge( aItem->GetBoundingBox() );
221 };
222
223 if( crossProbingSettings.center_on_items )
224 {
225 for( ZONE* zone : pcb->Zones() )
226 merge_area( zone );
227
228 for( PCB_TRACK* track : pcb->Tracks() )
229 merge_area( track );
230
231 for( FOOTPRINT* fp : pcb->Footprints() )
232 {
233 for( PAD* p : fp->Pads() )
234 merge_area( p );
235 }
236 }
237 }
238 else
239 {
240 renderSettings->SetHighlight( false );
241 }
242
243 if( crossProbingSettings.center_on_items && bbox.GetWidth() != 0 && bbox.GetHeight() != 0 )
244 {
245 if( crossProbingSettings.zoom_to_fit )
246 GetToolManager()->GetTool<PCB_SELECTION_TOOL>()->ZoomFitCrossProbeBBox( bbox );
247
248 FocusOnLocation( bbox.Centre() );
249 }
250
251 view->UpdateAllLayersColor();
252
253 // Ensure the display is refreshed, because in some installs the refresh is done only
254 // when the gal canvas has the focus, and that is not the case when crossprobing from
255 // Eeschema:
256 GetCanvas()->Refresh();
257}
258
259
260std::string FormatProbeItem( BOARD_ITEM* aItem )
261{
262 if( !aItem )
263 return "$CLEAR: \"HIGHLIGHTED\""; // message to clear highlight state
264
265 switch( aItem->Type() )
266 {
267 case PCB_FOOTPRINT_T:
268 {
269 FOOTPRINT* footprint = static_cast<FOOTPRINT*>( aItem );
270 return StrPrintf( "$PART: \"%s\"", TO_UTF8( footprint->GetReference() ) );
271 }
272
273 case PCB_PAD_T:
274 {
275 PAD* pad = static_cast<PAD*>( aItem );
276 FOOTPRINT* footprint = pad->GetParentFootprint();
277
278 return StrPrintf( "$PART: \"%s\" $PAD: \"%s\"",
279 TO_UTF8( footprint->GetReference() ),
280 TO_UTF8( pad->GetNumber() ) );
281 }
282
283 case PCB_FIELD_T:
284 {
285 PCB_FIELD* field = static_cast<PCB_FIELD*>( aItem );
286 FOOTPRINT* footprint = field->GetParentFootprint();
287 const char* text_key;
288
289 /* This can't be a switch since the break need to pull out
290 * from the outer switch! */
291 if( field->IsReference() )
292 text_key = "$REF:";
293 else if( field->IsValue() )
294 text_key = "$VAL:";
295 else
296 break;
297
298 return StrPrintf( "$PART: \"%s\" %s \"%s\"",
299 TO_UTF8( footprint->GetReference() ),
300 text_key,
301 TO_UTF8( field->GetText() ) );
302 }
303
304 default:
305 break;
306 }
307
308 return "";
309}
310
311
312template <typename ItemContainer>
313void collectItemsForSyncParts( ItemContainer& aItems, std::set<wxString>& parts )
314{
315 for( EDA_ITEM* item : aItems )
316 {
317 switch( item->Type() )
318 {
319 case PCB_GROUP_T:
320 {
321 PCB_GROUP* group = static_cast<PCB_GROUP*>( item );
322
323 collectItemsForSyncParts( group->GetItems(), parts );
324
325 break;
326 }
327 case PCB_FOOTPRINT_T:
328 {
329 FOOTPRINT* footprint = static_cast<FOOTPRINT*>( item );
330 wxString ref = footprint->GetReference();
331
332 parts.emplace( wxT( "F" ) + EscapeString( ref, CTX_IPC ) );
333
334 break;
335 }
336
337 case PCB_PAD_T:
338 {
339 PAD* pad = static_cast<PAD*>( item );
340 wxString ref = pad->GetParentFootprint()->GetReference();
341
342 parts.emplace( wxT( "P" ) + EscapeString( ref, CTX_IPC ) + wxT( "/" )
343 + EscapeString( pad->GetNumber(), CTX_IPC ) );
344
345 break;
346 }
347
348 default: break;
349 }
350 }
351}
352
353
354void PCB_EDIT_FRAME::SendSelectItemsToSch( const std::deque<EDA_ITEM*>& aItems,
355 EDA_ITEM* aFocusItem, bool aForce )
356{
357 std::string command = "$SELECT: ";
358
359 if( aFocusItem )
360 {
361 std::deque<EDA_ITEM*> focusItems = { aFocusItem };
362 std::set<wxString> focusParts;
363 collectItemsForSyncParts( focusItems, focusParts );
364
365 if( focusParts.size() > 0 )
366 {
367 command += "1,";
368 command += *focusParts.begin();
369 command += ",";
370 }
371 else
372 {
373 command += "0,";
374 }
375 }
376 else
377 {
378 command += "0,";
379 }
380
381 std::set<wxString> parts;
382 collectItemsForSyncParts( aItems, parts );
383
384 if( parts.empty() )
385 return;
386
387 for( wxString part : parts )
388 {
389 command += part;
390 command += ",";
391 }
392
393 command.pop_back();
394
395 if( Kiface().IsSingle() )
396 {
397 SendCommand( MSG_TO_SCH, command );
398 }
399 else
400 {
401 // Typically ExpressMail is going to be s-expression packets, but since
402 // we have existing interpreter of the selection packet on the other
403 // side in place, we use that here.
405 this );
406 }
407}
408
409
410void PCB_EDIT_FRAME::SendCrossProbeNetName( const wxString& aNetName )
411{
412 std::string packet = StrPrintf( "$NET: \"%s\"", TO_UTF8( aNetName ) );
413
414 if( !packet.empty() )
415 {
416 if( Kiface().IsSingle() )
417 {
418 SendCommand( MSG_TO_SCH, packet );
419 }
420 else
421 {
422 // Typically ExpressMail is going to be s-expression packets, but since
423 // we have existing interpreter of the cross probe packet on the other
424 // side in place, we use that here.
425 Kiway().ExpressMail( FRAME_SCH, MAIL_CROSS_PROBE, packet, this );
426 }
427 }
428}
429
430
432{
433 std::string packet = FormatProbeItem( aSyncItem );
434
435 if( !packet.empty() )
436 {
437 if( Kiface().IsSingle() )
438 {
439 SendCommand( MSG_TO_SCH, packet );
440 }
441 else
442 {
443 // Typically ExpressMail is going to be s-expression packets, but since
444 // we have existing interpreter of the cross probe packet on the other
445 // side in place, we use that here.
446 Kiway().ExpressMail( FRAME_SCH, MAIL_CROSS_PROBE, packet, this );
447 }
448 }
449}
450
451
452std::vector<BOARD_ITEM*> PCB_EDIT_FRAME::FindItemsFromSyncSelection( std::string syncStr )
453{
454 wxArrayString syncArray = wxStringTokenize( syncStr, "," );
455
456 std::vector<std::pair<int, BOARD_ITEM*>> orderPairs;
457
458 for( FOOTPRINT* footprint : GetBoard()->Footprints() )
459 {
460 if( footprint == nullptr )
461 continue;
462
463 wxString fpSheetPath = footprint->GetPath().AsString().BeforeLast( '/' );
464 wxString fpUUID = footprint->m_Uuid.AsString();
465
466 if( fpSheetPath.IsEmpty() )
467 fpSheetPath += '/';
468
469 if( fpUUID.empty() )
470 continue;
471
472 wxString fpRefEscaped = EscapeString( footprint->GetReference(), CTX_IPC );
473
474 for( unsigned index = 0; index < syncArray.size(); ++index )
475 {
476 wxString syncEntry = syncArray[index];
477
478 if( syncEntry.empty() )
479 continue;
480
481 wxString syncData = syncEntry.substr( 1 );
482
483 switch( syncEntry.GetChar( 0 ).GetValue() )
484 {
485 case 'S': // Select sheet with subsheets: S<Sheet path>
486 if( fpSheetPath.StartsWith( syncData ) )
487 {
488 orderPairs.emplace_back( index, footprint );
489 }
490 break;
491 case 'F': // Select footprint: F<Reference>
492 if( syncData == fpRefEscaped )
493 {
494 orderPairs.emplace_back( index, footprint );
495 }
496 break;
497 case 'P': // Select pad: P<Footprint reference>/<Pad number>
498 {
499 if( syncData.StartsWith( fpRefEscaped ) )
500 {
501 wxString selectPadNumberEscaped =
502 syncData.substr( fpRefEscaped.size() + 1 ); // Skips the slash
503
504 wxString selectPadNumber = UnescapeString( selectPadNumberEscaped );
505
506 for( PAD* pad : footprint->Pads() )
507 {
508 if( selectPadNumber == pad->GetNumber() )
509 {
510 orderPairs.emplace_back( index, pad );
511 }
512 }
513 }
514 break;
515 }
516 default: break;
517 }
518 }
519 }
520
521 std::sort(
522 orderPairs.begin(), orderPairs.end(),
523 []( const std::pair<int, BOARD_ITEM*>& a, const std::pair<int, BOARD_ITEM*>& b ) -> bool
524 {
525 return a.first < b.first;
526 } );
527
528 std::vector<BOARD_ITEM*> items;
529 items.reserve( orderPairs.size() );
530
531 for( const std::pair<int, BOARD_ITEM*>& pair : orderPairs )
532 items.push_back( pair.second );
533
534 return items;
535}
536
537
539{
540 std::string& payload = mail.GetPayload();
541
542 switch( mail.Command() )
543 {
545 {
548
549 for( FOOTPRINT* footprint : GetBoard()->Footprints() )
550 {
551 if( footprint->GetAttributes() & FP_BOARD_ONLY )
552 continue; // Don't add board-only footprints to the netlist
553
554 COMPONENT* component = new COMPONENT( footprint->GetFPID(), footprint->GetReference(),
555 footprint->GetValue(), footprint->GetPath(), {} );
556
557 for( PAD* pad : footprint->Pads() )
558 {
559 const wxString& netname = pad->GetShortNetname();
560
561 if( !netname.IsEmpty() )
562 {
563 component->AddNet( pad->GetNumber(), netname, pad->GetPinFunction(),
564 pad->GetPinType() );
565 }
566 }
567
568 nlohmann::ordered_map<wxString, wxString> fields;
569 for( PCB_FIELD* field : footprint->GetFields() )
570 fields[field->GetCanonicalName()] = field->GetText();
571
572 component->SetFields( fields );
573
574 // Add DNP and Exclude from BOM properties
575 std::map<wxString, wxString> properties;
576
577 if( footprint->GetAttributes() & FP_DNP )
578 properties.emplace( "dnp", "" );
579
580 if( footprint->GetAttributes() & FP_EXCLUDE_FROM_BOM )
581 properties.emplace( "exclude_from_bom", "" );
582
583 component->SetProperties( properties );
584
585 netlist.AddComponent( component );
586 }
587
588 netlist.Format( "pcb_netlist", &sf, 0, CTL_OMIT_FILTERS );
589 payload = sf.GetString();
590 break;
591 }
592
594 try
595 {
597 FetchNetlistFromSchematic( netlist, wxEmptyString );
598
599 BOARD_NETLIST_UPDATER updater( this, GetBoard() );
600 updater.SetLookupByTimestamp( false );
601 updater.SetDeleteUnusedFootprints( false );
602 updater.SetReplaceFootprints( false );
603 updater.UpdateNetlist( netlist );
604
605 bool dummy;
606 OnNetlistChanged( updater, &dummy );
607 }
608 catch( const IO_ERROR& )
609 {
610 assert( false ); // should never happen
611 return;
612 }
613
614 break;
615
616 case MAIL_CROSS_PROBE:
617 ExecuteRemoteCommand( payload.c_str() );
618 break;
619
620
621 case MAIL_SELECTION:
622 if( !GetPcbNewSettings()->m_CrossProbing.on_selection )
623 break;
624
626
628 {
629 // $SELECT: <mode 0 - only footprints, 1 - with connections>,<spec1>,<spec2>,<spec3>
630 std::string prefix = "$SELECT: ";
631
632 if( !payload.compare( 0, prefix.size(), prefix ) )
633 {
634 std::string del = ",";
635 std::string paramStr = payload.substr( prefix.size() );
636 size_t modeEnd = paramStr.find( del );
637 bool selectConnections = false;
638
639 try
640 {
641 if( std::stoi( paramStr.substr( 0, modeEnd ) ) == 1 )
642 selectConnections = true;
643 }
644 catch( std::invalid_argument& )
645 {
646 wxFAIL;
647 }
648
649 std::vector<BOARD_ITEM*> items =
650 FindItemsFromSyncSelection( paramStr.substr( modeEnd + 1 ) );
651
652 m_probingSchToPcb = true; // recursion guard
653
654 if( selectConnections )
656 else
658
659 // Update 3D viewer highlighting
660 Update3DView( false, GetPcbNewSettings()->m_Display.m_Live3DRefresh );
661
662 m_probingSchToPcb = false;
663 }
664
665 break;
666 }
667
668 case MAIL_PCB_UPDATE:
670 break;
671
672 case MAIL_IMPORT_FILE:
673 {
674 // Extract file format type and path (plugin type, path and properties keys, values separated with \n)
675 std::stringstream ss( payload );
676 char delim = '\n';
677
678 std::string formatStr;
679 wxCHECK( std::getline( ss, formatStr, delim ), /* void */ );
680
681 std::string fnameStr;
682 wxCHECK( std::getline( ss, fnameStr, delim ), /* void */ );
683 wxASSERT( !fnameStr.empty() );
684
685 int importFormat;
686
687 try
688 {
689 importFormat = std::stoi( formatStr );
690 }
691 catch( std::invalid_argument& )
692 {
693 wxFAIL;
694 importFormat = -1;
695 }
696
697 std::map<std::string, UTF8> props;
698
699 std::string key, value;
700 do
701 {
702 if( !std::getline( ss, key, delim ) )
703 break;
704
705 if( !std::getline( ss, value, delim ) )
706 break;
707
708 props.emplace( key, value );
709
710 } while( true );
711
712 if( importFormat >= 0 )
713 importFile( fnameStr, importFormat, props.empty() ? nullptr : &props );
714
715 break;
716 }
717
720 break;
721
722 case MAIL_RELOAD_LIB:
724 break;
725
726 // many many others.
727 default:
728 ;
729 }
730}
731
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION updatePcbFromSchematic
Definition: actions.h:258
static TOOL_ACTION pluginsReload
Definition: actions.h:285
static TOOL_ACTION showFootprintLibTable
Definition: actions.h:274
CROSS_PROBING_SETTINGS m_CrossProbing
Definition: app_settings.h:193
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:78
FOOTPRINT * GetParentFootprint() const
Definition: board_item.cpp:299
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)
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
const std::set< int > & GetHighLightNetCodes() const
Definition: board.h:552
void SetHighLightNet(int aNetCode, bool aMulti=false)
Select the netcode to be highlighted.
Definition: board.cpp:2772
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
Definition: board.cpp:2011
const ZONES & Zones() const
Definition: board.h:342
void ResetNetHighLight()
Reset all high light data to the init state.
Definition: board.cpp:2763
const FOOTPRINTS & Footprints() const
Definition: board.h:338
const TRACKS & Tracks() const
Definition: board.h:336
bool IsHighLightNetON() const
Definition: board.h:568
void HighLightON(bool aValue=true)
Enable or disable net highlighting.
Definition: board.cpp:2785
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 footprint information found in a netlist.
Definition: pcb_netlist.h:88
void SetFields(nlohmann::ordered_map< wxString, wxString > &aFields)
Definition: pcb_netlist.h:135
void SetProperties(std::map< wxString, wxString > &aProps)
Definition: pcb_netlist.h:141
void AddNet(const wxString &aPinName, const wxString &aNetName, const wxString &aPinFunction, const wxString &aPinType)
Definition: pcb_netlist.h:107
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)
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:96
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
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:619
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: footprint.cpp:1336
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
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:67
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
Definition: view.cpp:765
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:216
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
Definition: kiway_express.h:40
std::string & GetPayload()
Return the payload, which can be any text but it typically self identifying s-expression.
Definition: kiway_express.h:58
MAIL_T Command()
Returns the MAIL_T associated with this mail.
Definition: kiway_express.h:50
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
Definition: kiway.cpp:527
Handle the data for a net.
Definition: netinfo.h:56
int GetNetCode() const
Definition: netinfo.h:108
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: pcb_netlist.h:255
Definition: pad.h:54
static TOOL_ACTION highlightItem
Definition: pcb_actions.h:551
static TOOL_ACTION runDRC
Definition: pcb_actions.h:429
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 ShowBoardSetupDialog(const wxString &aInitialPage=wxEmptyString)
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.
Definition: netlist.cpp:87
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:449
const std::string & GetString()
Definition: richio.h:472
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:171
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Definition: tools_holder.h:55
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Definition: tool_manager.h:150
KIGFX::VIEW * GetView() const
Definition: tool_manager.h:395
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:88
@ FP_BOARD_ONLY
Definition: footprint.h:84
@ FP_EXCLUDE_FROM_BOM
Definition: footprint.h:83
@ FRAME_SCH
Definition: frame_type.h:34
#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)
int StrPrintf(std::string *result, const char *format,...)
This is like sprintf() but the output is appended to a std::string instead of to a character array.
Definition: richio.cpp:70
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.
Definition: string_utils.h:403
@ CTX_IPC
Definition: string_utils.h:56
Cross-probing behavior.
Definition: app_settings.h:32
bool zoom_to_fit
Zoom to fit items (ignored if center_on_items is off).
Definition: app_settings.h:35
bool center_on_items
Automatically pan to cross-probed items.
Definition: app_settings.h:34
bool auto_highlight
Automatically turn on highlight mode in the target frame.
Definition: app_settings.h:36
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition: typeinfo.h:110
@ 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