38#include <wx/wupdlock.h>
39#include <wx/filedlg.h>
69 m_netsList->Bind( wxEVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK,
71 m_netsList->Bind( wxEVT_DATAVIEW_ITEM_CONTEXT_MENU,
73 m_netsList->Bind( wxEVT_DATAVIEW_ITEM_ACTIVATED,
75 m_netsList->Bind( wxEVT_DATAVIEW_COLUMN_SORTED,
91 m_netsList->Unbind( wxEVT_DATAVIEW_ITEM_COLLAPSED,
93 m_netsList->Unbind( wxEVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK,
95 m_netsList->Unbind( wxEVT_DATAVIEW_ITEM_CONTEXT_MENU,
97 m_netsList->Unbind( wxEVT_DATAVIEW_ITEM_ACTIVATED,
99 m_netsList->Unbind( wxEVT_DATAVIEW_COLUMN_SORTED,
132 const std::vector<std::function<void(
void )>> add_col{
138 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_SORTABLE );
145 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
146 | wxDATAVIEW_COL_SORTABLE );
153 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
154 | wxDATAVIEW_COL_SORTABLE );
161 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
162 | wxDATAVIEW_COL_SORTABLE );
169 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
170 | wxDATAVIEW_COL_SORTABLE );
177 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
178 | wxDATAVIEW_COL_SORTABLE );
185 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
186 | wxDATAVIEW_COL_SORTABLE );
193 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
194 | wxDATAVIEW_COL_SORTABLE );
216 if( (
int) cfg->
col_order.size() != totalNumColumns
217 || (
int) cfg->
col_hidden.size() != totalNumColumns )
219 cfg->
col_order.resize( totalNumColumns );
222 for(
int i = 0; i < totalNumColumns; ++i )
231 if( col_order_set.size() != cfg->
col_order.size() )
233 for( std::size_t i = 0; i < cfg->
col_order.size(); ++i )
234 cfg->
col_order[i] =
static_cast<int>( i );
250 const int addModelColumn = i;
252 if( addModelColumn >= (
int) add_col.size() )
255 m_columns[addModelColumn], wxDATAVIEW_CELL_INERT, -1, wxALIGN_CENTER,
256 wxDATAVIEW_COL_RESIZABLE | wxDATAVIEW_COL_REORDERABLE
257 | wxDATAVIEW_COL_SORTABLE );
287 int minValueWidth = GetTextExtent( wxT(
"00000,000 mm" ) ).x;
288 int minNumberWidth = GetTextExtent( wxT(
"000" ) ).x;
289 int minNameWidth = GetTextExtent( wxT(
"MMMMMMMMMMMM" ) ).x;
295 constexpr int margins = 15;
296 constexpr int extra_width = 30;
298 auto getTargetWidth =
303 case COLUMN_NAME:
return minNameWidth + extra_width;
307 default:
return minValueWidth + margins;
313 for(
size_t i = 0; i <
m_columns.size(); ++i )
315 const int modelColumn = cfg->
col_order[i];
316 int titleSize = GetTextExtent(
m_columns[modelColumn].display_name ).x;
317 titleSize = modelColumn ==
COLUMN_NAME ? titleSize + extra_width : titleSize + margins;
318 const int valSize = getTargetWidth( modelColumn );
319 m_netsList->GetColumn( i )->SetWidth( std::max( titleSize, valSize ) );
327 for(
size_t ii = 0; ii <
m_columns.size(); ++ii )
331 m_netsList->GetColumn( ii )->SetWidth( std::max( newWidth, 10 ) );
342 if( sortingColumnId != -1 )
346 col->SetSortOrder( sortOrderAsc );
358 for(
unsigned int i = 0; i <
m_netsList->GetColumnCount(); ++i )
360 wxDataViewColumn* col =
m_netsList->GetColumn( i );
362 if(
static_cast<int>( col->GetModelColumn() ) == columnId )
406 auto& [groupName, groupItem] : groupItems )
414 wxDataViewItemArray sel;
417 std::vector<int> prev_selected_netcodes;
418 prev_selected_netcodes.reserve( sel.GetCount() );
420 for(
unsigned int i = 0; i < sel.GetCount(); ++i )
423 prev_selected_netcodes.push_back( item->
GetNetCode() );
429 if( wxDataViewColumn* sorting_column =
m_netsList->GetSortingColumn() )
433 sorting_column_id =
static_cast<int>( sorting_column->GetModelColumn() );
434 sort_order_asc = sorting_column->IsSortOrderAscending();
438 sorting_column->UnsetAsSortKey();
455 std::vector<NETINFO_ITEM*> netCodes;
460 netCodes.emplace_back( ni );
463 std::ranges::sort( netCodes,
485 std::vector<std::pair<wxString, wxDataViewItem>> groupItems =
m_dataModel->getGroupDataViewItems();
490 [&groupName](
const std::pair<wxString, wxDataViewItem>& item )
492 return groupName == item.first;
495 auto tableItem = std::ranges::find_if( groupItems, pred );
497 if( tableItem != groupItems.end() )
507 for(
const int& nc : prev_selected_netcodes )
509 if( std::optional<LIST_ITEM_ITER> r =
m_dataModel->findItem( nc ) )
511 const std::unique_ptr<LIST_ITEM>& list_item = *r.value();
512 sel.Add( wxDataViewItem( list_item.get() ) );
550 bool matched =
false;
553 if( filterString.Length() == 0 )
557 if( !matched && cfg->
filter_by_netclass && netClassName.Find( filterString ) != wxNOT_FOUND )
561 if( !matched && cfg->
filter_by_net_name && netName.Find( filterString ) != wxNOT_FOUND )
568 matched = !netName.StartsWith( wxT(
"UNCONNECTED-(" ) );
589 const auto type_bits = std::bitset<MAX_STRUCT_TYPE_ID>()
595 std::vector<CN_ITEM*> cn_items;
596 cn_items.reserve( 1024 );
600 if( cn_item->Valid() && type_bits[cn_item->Parent()->Type()] )
601 cn_items.push_back( cn_item );
610std::vector<std::unique_ptr<PCB_NET_INSPECTOR_PANEL::LIST_ITEM>>
613 std::vector<std::unique_ptr<LIST_ITEM>> results;
621 std::unordered_map<int, std::vector<LENGTH_CALCULATION_ITEM>> netItemsMap;
622 std::vector<NETINFO_ITEM*> foundNets;
624 auto itemItr = conItems.begin();
625 auto netCodeItr = aNetCodes.begin();
627 while( itemItr != conItems.end() && netCodeItr != aNetCodes.end() )
629 const int curNetCode = ( *netCodeItr )->GetNetCode();
630 const int curItemNetCode = ( *itemItr )->Net();
632 if( curItemNetCode == curNetCode )
634 if( foundNets.empty() || foundNets.back() != *netCodeItr )
635 foundNets.emplace_back( *netCodeItr );
639 netItemsMap[curItemNetCode].emplace_back( std::move( lengthItem ) );
642 else if( curItemNetCode < curNetCode )
645 while( itemItr != conItems.end() && ( *itemItr )->Net() < curNetCode )
648 else if( curItemNetCode > curNetCode )
651 while( netCodeItr != aNetCodes.end() && curItemNetCode > ( *netCodeItr )->GetNetCode() )
658 std::mutex resultsMutex;
661 auto resultsFuture =
tp.parallelize_loop(
663 [&,
this, calc](
const int start,
const int end )
665 for( int i = start; i < end; ++i )
667 int netCode = foundNets[i]->GetNetCode();
669 constexpr PATH_OPTIMISATIONS opts = { .OptimiseViaLayers = true,
671 .OptimiseTracesInPads = true,
672 .InferViaInPad = false };
673 LENGTH_DETAILS lengthDetails =
674 calc->CalculateLengthDetails( netItemsMap[netCode], opts, nullptr, nullptr, true );
676 if( aIncludeZeroPadNets || lengthDetails.NumPads > 0 )
678 std::unique_ptr<LIST_ITEM> new_item = std::make_unique<LIST_ITEM>( foundNets[i] );
680 new_item->SetPadCount( lengthDetails.NumPads );
681 new_item->SetLayerCount( m_board->GetCopperLayerCount() );
682 new_item->SetPadDieLength( lengthDetails.PadToDieLength );
683 new_item->SetViaCount( lengthDetails.NumVias );
684 new_item->SetViaLength( lengthDetails.ViaLength );
685 new_item->SetLayerWireLengths( *lengthDetails.LayerLengths );
687 std::scoped_lock lock( resultsMutex );
688 results.emplace_back( std::move( new_item ) );
708 return wxString::Format( wxT(
"%.3d" ), aNet->
GetNetCode() );
720 return wxString::Format( wxT(
"%u" ), aValue );
737 wxDataViewItemArray sel;
779 const std::vector<BOARD_ITEM*> item{ aBoardItem };
792 if( !IsShownOnScreen() )
796 if( aBoardItems.size()
803 std::vector<NETINFO_ITEM*> changedNets;
811 changedNets.emplace_back( net );
815 changedNets.emplace_back( i->GetNet() );
819 for(
const PAD*
pad : footprint->Pads() )
822 changedNets.emplace_back(
pad->GetNet() );
827 std::ranges::sort( changedNets,
842 std::vector<NETINFO_ITEM*> netsToUpdate;
843 std::unordered_set<NETINFO_ITEM*> netsToDelete;
848 netsToDelete.insert( net );
852 netsToUpdate.emplace_back( net );
857 std::vector<std::unique_ptr<LIST_ITEM>> newListItems =
calculateNets( aNets,
true );
859 for( std::unique_ptr<LIST_ITEM>& newListItem : newListItems )
862 netsToDelete.erase( newListItem->GetNet() );
864 std::optional<LIST_ITEM_ITER> curNetRow =
m_dataModel->findItem( newListItem->GetNetCode() );
878 const std::unique_ptr<LIST_ITEM>& curListItem = *curNetRow.value();
880 if( curListItem->GetNetName() != newListItem->GetNetName() )
888 curListItem->SetPadCount( newListItem->GetPadCount() );
889 curListItem->SetPadDieLength( newListItem->GetPadDieLength() );
890 curListItem->SetViaCount( newListItem->GetViaCount() );
891 curListItem->SetViaLength( newListItem->GetViaLength() );
892 curListItem->SetLayerWireLengths( newListItem->GetLayerWireLengths() );
908 const std::vector<BOARD_ITEM*> item{ aBoardItem };
921 if( !IsShownOnScreen() )
930 const std::vector<BOARD_ITEM*> item{ aBoardItem };
936 std::vector<BOARD_ITEM*>& aBoardItems )
943 std::vector<BOARD_ITEM*>& aAddedItems,
944 std::vector<BOARD_ITEM*>& aRemovedItems,
945 std::vector<BOARD_ITEM*>& aChangedItems )
947 if( !IsShownOnScreen() )
950 std::vector<BOARD_ITEM*> allItems{ aAddedItems.begin(), aAddedItems.end() };
951 allItems.insert( allItems.end(), aRemovedItems.begin(), aRemovedItems.end() );
952 allItems.insert( allItems.end(), aChangedItems.begin(), aChangedItems.end() );
970 wxDataViewItemArray new_selection;
971 new_selection.Alloc( selected_codes.size() );
973 for(
const int code : selected_codes )
975 if( std::optional<LIST_ITEM_ITER> r =
m_dataModel->findItem( code ) )
976 new_selection.Add( wxDataViewItem( &***r ) );
981 if( !new_selection.IsEmpty() )
982 m_netsList->EnsureVisible( new_selection.Item( 0 ) );
1002 bool multipleSelections =
false;
1005 if(
m_netsList->GetSelectedItemsCount() == 1 )
1011 if(
m_netsList->GetSelectedItemsCount() > 1 )
1012 multipleSelections =
true;
1019 _(
"Highlight Selected Net" ),
1020 wxEmptyString, wxITEM_NORMAL );
1024 _(
"Clear Net Highlighting" ),
1025 wxEmptyString, wxITEM_NORMAL );
1026 menu.Append( clearHighlighting );
1031 if( selected_codes.size() == 0 )
1032 clearHighlighting->Enable(
false );
1034 menu.AppendSeparator();
1036 wxMenuItem* renameNet =
new wxMenuItem( &menu,
ID_RENAME_NET,
_(
"Rename Selected Net..." ),
1037 wxEmptyString, wxITEM_NORMAL );
1038 menu.Append( renameNet );
1040 wxMenuItem* deleteNet =
new wxMenuItem( &menu,
ID_DELETE_NET,
_(
"Delete Selected Net" ),
1041 wxEmptyString, wxITEM_NORMAL );
1042 menu.Append( deleteNet );
1044 menu.AppendSeparator();
1046 wxMenuItem* addNet =
new wxMenuItem( &menu,
ID_ADD_NET,
_(
"Add Net..." ),
1047 wxEmptyString, wxITEM_NORMAL );
1048 menu.Append( addNet );
1050 if( !selItem && !multipleSelections )
1053 deleteNet->Enable(
false );
1054 renameNet->Enable(
false );
1058 if( multipleSelections || selItem->
GetIsGroup() )
1060 highlightNet->SetItemLabel(
_(
"Highlight Selected Nets" ) );
1061 renameNet->Enable(
false );
1062 deleteNet->SetItemLabel(
_(
"Delete Selected Nets" ) );
1066 menu.AppendSeparator();
1069 _(
"Remove Selected Custom Group" ),
1070 wxEmptyString, wxITEM_NORMAL );
1071 menu.Append( removeSelectedGroup );
1074 removeSelectedGroup->Enable(
false );
1091 wxString newGroupName;
1095 wxStaticText*
help =
new wxStaticText( &dlg, wxID_ANY,
1096 _(
"(Use /.../ to indicate a regular expression.)" ) );
1100 dlg.GetSizer()->SetSizeHints( &dlg );
1107 if( newGroupName ==
"" )
1111 [&]( std::unique_ptr<EDA_COMBINED_MATCHER>& rule )
1113 return rule->GetPattern() == newGroupName;
1161 if(
m_netsList->GetSelectedItemsCount() == 1 )
1170 _(
"Filter by Net Name" ),
1171 wxEmptyString, wxITEM_CHECK );
1172 menu.Append( filterByNetName );
1173 filterByNetName->Check( cfg.filter_by_net_name );
1176 _(
"Filter by Netclass" ),
1177 wxEmptyString, wxITEM_CHECK );
1178 menu.Append( filterByNetclass );
1179 filterByNetclass->Check( cfg.filter_by_netclass );
1181 menu.AppendSeparator();
1191 _(
"Group by Netclass" ),
1192 wxEmptyString, wxITEM_CHECK );
1193 menu.Append( groupNetclass );
1196 menu.AppendSeparator();
1198 wxMenuItem* addGroup =
new wxMenuItem( &menu,
ID_ADD_GROUP,
_(
"Add Custom Group..." ),
1199 wxEmptyString, wxITEM_NORMAL );
1200 menu.Append( addGroup );
1203 _(
"Remove Selected Custom Group" ),
1204 wxEmptyString, wxITEM_NORMAL );
1205 menu.Append( removeSelectedGroup );
1208 removeSelectedGroup->Enable(
false );
1211 _(
"Remove All Custom Groups" ),
1212 wxEmptyString, wxITEM_NORMAL );
1213 menu.Append( removeCustomGroups );
1216 menu.AppendSeparator();
1219 _(
"Show Zero Pad Nets" ),
1220 wxEmptyString, wxITEM_CHECK );
1221 menu.Append( showZeroNetPads );
1225 _(
"Show Unconnected Nets" ),
1226 wxEmptyString, wxITEM_CHECK );
1227 menu.Append( showUnconnectedNets );
1230 menu.AppendSeparator();
1234 _(
"Save Net Inspector Report..." ),
1235 wxEmptyString, wxITEM_NORMAL );
1238 menu.AppendSeparator();
1241 wxMenu* colsMenu =
new wxMenu();
1243 menu.AppendSubMenu( colsMenu,
_(
"Show / Hide Columns" ) );
1256 wxEmptyString, wxITEM_CHECK );
1258 target->Append( opt );
1259 opt->Check( !col->IsHidden() );
1262 target->AppendSeparator();
1267 wxEmptyString, wxITEM_CHECK );
1269 target->Append( opt );
1270 opt->Check( !col->IsHidden() );
1277 bool saveAndRebuild =
true;
1279 switch( event.GetId() )
1319 saveAndRebuild =
false;
1324 saveAndRebuild =
false;
1329 saveAndRebuild =
false;
1338 col->SetWidth( std::max( col->GetWidth(), 10 ) );
1339 col->SetHidden( !col->IsHidden() );
1344 if( saveAndRebuild )
1354 if(
m_netsList->GetSelectedItemsCount() == 1 )
1358 if( selItem->GetIsGroup() )
1362 [&]( std::unique_ptr<EDA_COMBINED_MATCHER>& rule )
1364 return rule->GetPattern() == groupName;
1380 wxFileDialog dlg(
this,
_(
"Save Net Inspector Report File" ),
"",
"",
1382 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1384 if( dlg.ShowModal() == wxID_CANCEL )
1387 wxTextFile f( dlg.GetPath() );
1402 txt += wxString::Format(
_(
"%s (%s)" ),
1408 txt += col.csv_name;
1411 txt += wxT(
"\";" );
1417 const unsigned int num_rows =
m_dataModel->itemCount();
1419 for(
unsigned int row = 0; row < num_rows; row++ )
1423 if( i.GetIsGroup() || i.GetNetCode() == 0 )
1431 txt +=
'"' +
m_dataModel->valueAt( col.num, row ).GetString() + wxT(
"\";" );
1433 txt +=
m_dataModel->valueAt( col.num, row ).GetString() +
';';
1464 wxDataViewItemArray sel;
1469 for(
unsigned int i = 0; i < sel.GetCount(); ++i )
1476 renderSettings->
SetHighlight(
true, ( *c )->GetNetCode(), true );
1512 wxString newNetName;
1528 wxString::Format(
_(
"Net name '%s' is already in use." ), newNetName ) );
1529 newNetName = wxEmptyString;
1548 if(
m_netsList->GetSelectedItemsCount() == 1 )
1558 wxString shortNetName;
1560 if( fullNetName.Contains( wxT(
"/" ) ) )
1562 netPath = fullNetName.BeforeLast(
'/' ) +
'/';
1563 shortNetName = fullNetName.AfterLast(
'/' );
1567 shortNetName = fullNetName;
1581 unescapedShortName = dlg.
GetValue();
1583 if( unescapedShortName.IsEmpty() )
1585 DisplayError(
this, wxString::Format(
_(
"Net name cannot be empty." ),
1586 unescapedShortName ) );
1591 fullNetName = netPath + shortNetName;
1595 DisplayError(
this, wxString::Format(
_(
"Net name '%s' is already in use." ),
1596 unescapedShortName ) );
1597 unescapedShortName = wxEmptyString;
1607 if( boardItem->GetNet() == net )
1623 boardItem->SetNet( net );
1628 if( std::optional<LIST_ITEM_ITER> r =
m_dataModel->findItem( net ) )
1629 m_netsList->Select( wxDataViewItem( r.value()->get() ) );
1647 wxDataViewItemArray sel;
1650 auto delete_one = [
this](
const LIST_ITEM* i )
1652 if( i->GetPadCount() == 0
1653 ||
IsOK(
this, wxString::Format(
_(
"Net '%s' is in use. Delete anyway?" ),
1654 i->GetNetName() ) ) )
1658 int removedCode = i->GetNetCode();
1665 if( boardItem && boardItem->GetNetCode() == removedCode )
1672 text->ClearRenderCache();
1673 text->ClearBoundingBoxCache();
1687 for(
unsigned int i = 0; i < sel.GetCount(); ++i )
1694 &&
IsOK(
this, wxString::Format(
_(
"Delete all nets in group '%s'?" ),
1699 std::vector<const LIST_ITEM*> children;
1747 bool displayed =
false;
1749 for(
unsigned int ii = 0; ii <
m_dataModel->columnCount() && !displayed; ++ii )
1751 if(
m_netsList->GetColumn( ii )->GetWidth() > 0 )
1771 wxDataViewColumn* sortingCol =
m_netsList->GetSortingColumn();
1772 cfg.sorting_column = sortingCol ?
static_cast<int>( sortingCol->GetModelColumn() ) : -1;
1773 cfg.sort_order_asc = sortingCol ? sortingCol->IsSortOrderAscending() :
true;
1776 cfg.col_order.resize(
m_dataModel->columnCount() );
1777 cfg.col_widths.resize(
m_dataModel->columnCount() );
1778 cfg.col_hidden.resize(
m_dataModel->columnCount() );
1780 for(
unsigned int ii = 0; ii <
m_dataModel->columnCount(); ++ii )
1782 cfg.col_order[ii] = (int)
m_netsList->GetColumn( ii )->GetModelColumn();
1783 cfg.col_widths[ii] =
m_netsList->GetColumn( ii )->GetWidth();
1784 cfg.col_hidden[ii] =
m_netsList->GetColumn( ii )->IsHidden();
1788 cfg.expanded_rows.clear();
1789 std::vector<std::pair<wxString, wxDataViewItem>> groupItems =
m_dataModel->getGroupDataViewItems();
1791 for( std::pair<wxString, wxDataViewItem>& item : groupItems )
1794 cfg.expanded_rows.push_back( item.first );
1798 cfg.custom_group_rules.clear();
1801 cfg.custom_group_rules.push_back( rule->GetPattern() );
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
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...
Information pertinent to a Pcbnew printed circuit board.
const NETINFO_LIST & GetNetInfo() const
LSET GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
void Add(BOARD_ITEM *aItem, ADD_MODE aMode=ADD_MODE::INSERT, bool aSkipConnectivity=false) override
Removes an item from the container.
const std::set< int > & GetHighLightNetCodes() const
const std::vector< BOARD_CONNECTED_ITEM * > AllConnectedItems()
void AddListener(BOARD_LISTENER *aListener)
Add a listener to the board to receive calls whenever something on the board has been modified.
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
int GetCopperLayerCount() const
bool IsHighLightNetON() const
const wxString GetLayerName(PCB_LAYER_ID aLayer) const
Return the name of a aLayer.
LENGTH_CALCULATION * GetLengthCalculation() const
Returns the track length calculator.
void Remove(BOARD_ITEM *aBoardItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL) override
Removes an item from the container.
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
CN_ITEM represents a BOARD_CONNETED_ITEM in the connectivity system (ie: a pad, track/arc/via,...
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
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.
const std::set< int > & GetHighlightNetCodes() const
Return the netcode of currently highlighted net.
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
An abstract base class for deriving all objects that can be added to a VIEW.
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
void UpdateAllItemsConditionally(int aUpdateFlags, std::function< bool(VIEW_ITEM *)> aCondition)
Update items in the view according to the given flags and condition.
Lightweight class which holds a pad, via, or a routed trace outline.
Class which calculates lengths (and associated routing statistics) in a BOARD context.
LENGTH_CALCULATION_ITEM GetLengthCalculationItem(BOARD_CONNECTED_ITEM *aBoardItem) const
Return a LENGTH_CALCULATION_ITEM constructed from the given BOARD_CONNECTED_ITEM.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
A collection of nets and the parameters used to route or test these nets.
const wxString GetName() const
Gets the name of this (maybe aggregate) netclass in a format for internal usage or for export to exte...
Handle the data for a net.
void SetNetname(const wxString &aNewName)
Set the long netname to aNetName, the short netname to the last token in the long netname's path,...
const wxString & GetNetname() const
A base class used to implement docking net inspector panels.
wxDataViewCtrl * m_netsList
wxSearchCtrl * m_searchCtrl
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
The main frame for Pcbnew.
void OnModify() override
Must be called after a board change to set the modified flag.
Data model for display in the Net Inspector panel.
std::vector< std::pair< wxString, wxDataViewItem > > getGroupDataViewItems()
Primary data item for entries in the Net Inspector list.
auto ChildrenBegin() const
unsigned int ChildrenCount() const
const wxString & GetGroupName() const
NETINFO_ITEM * GetNet() const
void OnBoardItemRemoved(BOARD &aBoard, BOARD_ITEM *aBoardItem) override
void OnBoardHighlightNetChanged(BOARD &aBoard) override
void generateReport()
Generates a CSV report from currently disaplyed data.
PCB_NET_INSPECTOR_PANEL(wxWindow *parent, PCB_EDIT_FRAME *aFrame)
void onDeleteSelectedNet()
Deletes a selected net.
bool restoreSortColumn(int sortingColumnId, bool sortOrderAsc) const
Sets the sort column in the grid to that showing the given model ID column.
void OnBoardItemsChanged(BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override
void adjustListColumnSizes(PANEL_NET_INSPECTOR_SETTINGS *cfg) const
Adjust the sizing of list columns.
BOARD * m_board
Parent BOARD.
void OnSearchTextChanged(wxCommandEvent &event) override
void updateDisplayedRowValues(const std::optional< LIST_ITEM_ITER > &aRow) const
Refreshes displayed data for the given rows.
void onAddNet()
Adds a new user-specified net to the board.
PCB_EDIT_FRAME * m_frame
Owning edit frame.
void OnBoardItemsRemoved(BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override
void onClearHighlighting()
Clears highlighting from nets.
void onContextMenuSelection(wxCommandEvent &event)
Handle a net row(s) context menu selection.
static wxString formatNetCode(const NETINFO_ITEM *aNet)
void OnBoardChanged() override
Update panel when board is changed.
void generateShowHideColumnMenu(wxMenu *target)
Generates a sub-menu for the show / hide columns submenu.
std::vector< std::unique_ptr< LIST_ITEM > > calculateNets(const std::vector< NETINFO_ITEM * > &aNetCodes, bool aIncludeZeroPadNets) const
Calculates the length statistics for each given netcode.
static wxString formatCount(unsigned int aValue)
std::vector< std::unique_ptr< EDA_COMBINED_MATCHER > > m_custom_group_rules
Custom net grouping rules.
std::vector< CN_ITEM * > relevantConnectivityItems() const
Fetches an ordered (by NetCode) list of all board connectivity items.
bool m_showUnconnectedNets
void highlightSelectedNets()
Highlight the currently selected net.
void updateNets(const std::vector< NETINFO_ITEM * > &aNets) const
Updates displayed statistics for the given nets.
void OnBoardItemsAdded(BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override
void OnLanguageChangedImpl() override
Reloads strings on an application language change.
void onAddGroup()
Adds a custom display grouping of nets.
void OnNetsListContextMenu(wxDataViewEvent &event)
void OnBoardNetSettingsChanged(BOARD &aBoard) override
void OnBoardCompositeUpdate(BOARD &aBoard, std::vector< BOARD_ITEM * > &aAddedItems, std::vector< BOARD_ITEM * > &aRemovedItems, std::vector< BOARD_ITEM * > &aChangedItems) override
void OnNetsListItemActivated(wxDataViewEvent &event)
void OnColumnSorted(wxDataViewEvent &event)
void onRemoveSelectedGroup()
Removes a custom display grouping.
@ ID_SHOW_UNCONNECTED_NETS
@ ID_REMOVE_SELECTED_GROUP
@ ID_HIGHLIGHT_SELECTED_NETS
virtual ~PCB_NET_INSPECTOR_PANEL()
void buildColumns()
Build the required columns in the net inspector grid.
void OnBoardItemAdded(BOARD &aBoard, BOARD_ITEM *aBoardItem) override
void OnParentSetupChanged() override
Updates the netlist based on global board changes (e.g.
void OnHeaderContextMenu(wxCommandEvent &event)
bool netFilterMatches(NETINFO_ITEM *aNet, PANEL_NET_INSPECTOR_SETTINGS *cfg=nullptr) const
Filter to determine whether a board net should be included in the net inspector.
void OnConfigButton(wxCommandEvent &event) override
void buildNetsList(bool rebuildColumns=false)
Rebuilds the net inspector list, removing all previous entries.
wxString formatLength(int64_t aValue) const
void SaveSettings() override
Persist the net inspector configuration to project / global settings.
void onRenameSelectedNet()
Renames a selected net.
void onUnitsChanged(wxCommandEvent &event)
Handle an application-level change of units.
void OnExpandCollapseRow(wxCommandEvent &event)
void updateBoardItems(const std::vector< BOARD_ITEM * > &aBoardItems)
Unified handling of added / deleted / modified board items.
wxObjectDataPtr< DATA_MODEL > m_dataModel
The bound data model to display.
wxDataViewColumn * getDisplayedColumnForModelField(int columnId) const
Fetches the displayed grid view column for the given model column ID.
static wxString formatNetName(const NETINFO_ITEM *aNet)
void OnBoardItemChanged(BOARD &aBoard, BOARD_ITEM *aBoardItem) override
std::vector< COLUMN_DESC > m_columns
All displayed (or hidden) columns.
void OnShowPanel() override
Prepare the panel when shown in the editor.
virtual SETTINGS_MANAGER & GetSettingsManager() const
The project local settings are things that are attached to a particular project, but also might be pa...
PANEL_NET_INSPECTOR_SETTINGS m_NetInspectorPanel
The state of the net inspector panel.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
PROJECT & Prj() const
A helper while we are not MDI-capable – return the one and only project.
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
EDA_UNITS GetUserUnits() const
wxBoxSizer * m_ContentSizer
A KICAD version of wxTextEntryDialog which supports the various improvements/work-arounds from DIALOG...
wxString GetValue() const
void SetTextValidator(wxTextValidatorStyle style)
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
#define CANDIDATE
flag indicating that the structure is connected
Abstract pattern-matching tool and implementations.
int m_NetInspectorBulkUpdateOptimisationThreshold
When updating the net inspector, it either recalculates all nets or iterates through items one-by-one...
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
KICOMMON_API wxString GetLabel(EDA_UNITS aUnits, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Get the units string for a given units type.
@ REPAINT
Item needs to be redrawn.
@ GEOMETRY
Position or shape has changed.
KICOMMON_API wxFont GetInfoFont(wxWindow *aWindow)
PGM_BASE & Pgm()
The global program "get" accessor.
static bool highlightNet(TOOL_MANAGER *aToolMgr, const VECTOR2D &aPosition)
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
bool operator()(const CN_ITEM *a, const CN_ITEM *b) const
bool operator()(int a, const CN_ITEM *b) const
bool operator()(const CN_ITEM *a, int b) const
Persisted state for the net inspector panel.
std::vector< int > col_order
std::vector< bool > col_hidden
std::vector< wxString > expanded_rows
std::vector< int > col_widths
std::vector< wxString > custom_group_rules
thread_pool & GetKiCadThreadPool()
Get a reference to the current thread pool.
BS::thread_pool thread_pool
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_PAD_T
class PAD, a pad in a footprint
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
Custom text control validator definitions.
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.
Definition of file extensions used in Kicad.