KiCad PCB EDA Suite
|
PCB net inspection panel. More...
#include <pcb_net_inspector_panel.h>
Classes | |
struct | COLUMN_DESC |
Column metadata. More... | |
class | DATA_MODEL |
Data model for display in the Net Inspector panel. More... | |
class | LIST_ITEM |
Primary data item for entries in the Net Inspector list. More... | |
struct | LIST_ITEM_GROUP_NUMBER_CMP_LESS |
struct | LIST_ITEM_NETCODE_CMP_LESS |
Public Member Functions | |
PCB_NET_INSPECTOR_PANEL (wxWindow *parent, PCB_EDIT_FRAME *aFrame) | |
virtual | ~PCB_NET_INSPECTOR_PANEL () |
void | OnParentSetupChanged () override |
Updates the netlist based on global board changes (e.g. | |
void | OnBoardItemAdded (BOARD &aBoard, BOARD_ITEM *aBoardItem) override |
void | OnBoardItemsAdded (BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override |
void | OnBoardItemRemoved (BOARD &aBoard, BOARD_ITEM *aBoardItem) override |
void | OnBoardItemsRemoved (BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override |
void | OnBoardNetSettingsChanged (BOARD &aBoard) override |
void | OnBoardItemChanged (BOARD &aBoard, BOARD_ITEM *aBoardItem) override |
void | OnBoardItemsChanged (BOARD &aBoard, std::vector< BOARD_ITEM * > &aBoardItems) override |
void | OnBoardHighlightNetChanged (BOARD &aBoard) override |
void | OnBoardCompositeUpdate (BOARD &aBoard, std::vector< BOARD_ITEM * > &aAddedItems, std::vector< BOARD_ITEM * > &aRemovedItems, std::vector< BOARD_ITEM * > &aChangedItems) override |
void | OnBoardChanged () override |
Update panel when board is changed. | |
void | OnShowPanel () override |
Prepare the panel when shown in the editor. | |
void | SaveSettings () override |
Persist the net inspector configuration to project / global settings. | |
virtual void | OnBoardRatsnestChanged (BOARD &aBoard) |
Protected Member Functions | |
void | OnLanguageChangedImpl () override |
Reloads strings on an application language change. | |
void | OnSearchTextChanged (wxCommandEvent &event) override |
void | OnConfigButton (wxCommandEvent &event) override |
void | OnExpandCollapseRow (wxCommandEvent &event) |
void | OnHeaderContextMenu (wxCommandEvent &event) |
void | OnNetsListContextMenu (wxDataViewEvent &event) |
void | OnNetsListItemActivated (wxDataViewEvent &event) |
void | OnColumnSorted (wxDataViewEvent &event) |
virtual void | OnSetFocus (wxFocusEvent &event) |
virtual void | OnSize (wxSizeEvent &event) |
virtual void | OnLanguageChanged (wxCommandEvent &event) |
Protected Attributes | |
wxGridBagSizer * | m_sizerOuter |
wxSearchCtrl * | m_searchCtrl |
BITMAP_BUTTON * | m_configureBtn |
wxDataViewCtrl * | m_netsList |
Private Member Functions | |
void | updateNets (const std::vector< NETINFO_ITEM * > &aNets) const |
Updates displayed statistics for the given nets. | |
void | updateBoardItems (const std::vector< BOARD_ITEM * > &aBoardItems) |
Unified handling of added / deleted / modified board items. | |
wxString | formatLength (int64_t aValue) const |
void | generateShowHideColumnMenu (wxMenu *target) |
Generates a sub-menu for the show / hide columns submenu. | |
std::vector< CN_ITEM * > | relevantConnectivityItems () const |
Fetches an ordered (by NetCode) list of all board connectivity items. | |
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 | buildNetsList (bool rebuildColumns=false) |
Rebuilds the net inspector list, removing all previous entries. | |
void | buildColumns () |
Build the required columns in the net inspector grid. | |
void | setColumnWidths () |
Set sensible default column widths. | |
void | adjustListColumnSizes (PANEL_NET_INSPECTOR_SETTINGS *cfg) const |
Adjust the sizing of list columns. | |
bool | restoreSortColumn (int sortingColumnId, bool sortOrderAsc) const |
Sets the sort column in the grid to that showing the given model ID column. | |
wxDataViewColumn * | getDisplayedColumnForModelField (int columnId) const |
Fetches the displayed grid view column for the given model column ID. | |
void | generateReport () |
Generates a CSV report from currently disaplyed data. | |
void | highlightSelectedNets () |
Highlight the currently selected net. | |
void | onUnitsChanged (wxCommandEvent &event) |
Handle an application-level change of units. | |
void | onContextMenuSelection (wxCommandEvent &event) |
Handle a net row(s) context menu selection. | |
void | onItemContextMenu (wxCommandEvent &event) |
Display a new row(s) context menu. | |
void | onAddNet () |
Adds a new user-specified net to the board. | |
void | onRenameSelectedNet () |
Renames a selected net. | |
void | onDeleteSelectedNet () |
Deletes a selected net. | |
void | onAddGroup () |
Adds a custom display grouping of nets. | |
void | onRemoveSelectedGroup () |
Removes a custom display grouping. | |
void | onClearHighlighting () |
Clears highlighting from nets. | |
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. | |
void | updateDisplayedRowValues (const std::optional< LIST_ITEM_ITER > &aRow) const |
Refreshes displayed data for the given rows. | |
Static Private Member Functions | |
static wxString | formatNetCode (const NETINFO_ITEM *aNet) |
static wxString | formatNetName (const NETINFO_ITEM *aNet) |
static wxString | formatCount (unsigned int aValue) |
Private Attributes | |
BOARD * | m_board = nullptr |
Parent BOARD. | |
PCB_EDIT_FRAME * | m_frame = nullptr |
Owning edit frame. | |
wxObjectDataPtr< DATA_MODEL > | m_dataModel |
The bound data model to display. | |
friend | DATA_MODEL |
bool | m_inReporting = false |
bool | m_inBuildNetsList = false |
bool | m_boardLoaded = false |
bool | m_boardLoading = false |
bool | m_rowExpanding = false |
bool | m_highlightingNets = false |
bool | m_filterByNetName = true |
bool | m_filterByNetclass = true |
bool | m_showZeroPadNets = false |
bool | m_showUnconnectedNets = false |
bool | m_groupByNetclass = false |
bool | m_groupByConstraint = false |
std::vector< std::unique_ptr< EDA_COMBINED_MATCHER > > | m_custom_group_rules |
Custom net grouping rules. | |
std::vector< COLUMN_DESC > | m_columns |
All displayed (or hidden) columns. | |
PCB net inspection panel.
Provides a read-only view of net information, such as routed lengths. Data is updated after every change of board items.
Definition at line 45 of file pcb_net_inspector_panel.h.
|
private |
Definition at line 207 of file pcb_net_inspector_panel.h.
|
private |
Definition at line 206 of file pcb_net_inspector_panel.h.
|
private |
Column static IDs. Used to refer to columns as user re-ordering can occur.
Enumerator | |
---|---|
COLUMN_NAME | |
COLUMN_NETCLASS | |
COLUMN_TOTAL_LENGTH | |
COLUMN_VIA_COUNT | |
COLUMN_VIA_LENGTH | |
COLUMN_BOARD_LENGTH | |
COLUMN_PAD_DIE_LENGTH | |
COLUMN_PAD_COUNT | |
COLUMN_LAST_STATIC_COL |
Definition at line 296 of file pcb_net_inspector_panel.h.
|
strongprivate |
CSV output control.
Enumerator | |
---|---|
CSV_NONE | |
CSV_QUOTE |
Definition at line 263 of file pcb_net_inspector_panel.h.
|
private |
Popup menu item IDs.
Definition at line 310 of file pcb_net_inspector_panel.h.
PCB_NET_INSPECTOR_PANEL::PCB_NET_INSPECTOR_PANEL | ( | wxWindow * | parent, |
PCB_EDIT_FRAME * | aFrame | ||
) |
Definition at line 44 of file pcb_net_inspector_panel.cpp.
References BOARD::AddListener(), buildNetsList(), PCB_BASE_FRAME::GetBoard(), m_board, m_dataModel, m_frame, NET_INSPECTOR_PANEL::m_netsList, OnBoardHighlightNetChanged(), OnColumnSorted(), OnExpandCollapseRow(), OnHeaderContextMenu(), OnNetsListContextMenu(), OnNetsListItemActivated(), and onUnitsChanged().
|
virtual |
Definition at line 79 of file pcb_net_inspector_panel.cpp.
References m_frame, NET_INSPECTOR_PANEL::m_netsList, OnColumnSorted(), OnExpandCollapseRow(), OnHeaderContextMenu(), OnNetsListContextMenu(), OnNetsListItemActivated(), onUnitsChanged(), and SaveSettings().
|
private |
Adjust the sizing of list columns.
cfg | the PANEL_NET_INSPECTOR_SETTINGS from which to read column widths |
Definition at line 281 of file pcb_net_inspector_panel.cpp.
References PANEL_NET_INSPECTOR_SETTINGS::col_hidden, PANEL_NET_INSPECTOR_SETTINGS::col_order, PANEL_NET_INSPECTOR_SETTINGS::col_widths, COLUMN_NAME, COLUMN_NETCLASS, COLUMN_PAD_COUNT, COLUMN_VIA_COUNT, m_columns, and NET_INSPECTOR_PANEL::m_netsList.
Referenced by buildColumns().
|
private |
Build the required columns in the net inspector grid.
Definition at line 111 of file pcb_net_inspector_panel.cpp.
References _, adjustListColumnSizes(), PANEL_NET_INSPECTOR_SETTINGS::col_hidden, PANEL_NET_INSPECTOR_SETTINGS::col_order, COLUMN_BOARD_LENGTH, COLUMN_NAME, COLUMN_NETCLASS, COLUMN_PAD_COUNT, COLUMN_PAD_DIE_LENGTH, COLUMN_TOTAL_LENGTH, COLUMN_VIA_COUNT, COLUMN_VIA_LENGTH, CSV_NONE, CSV_QUOTE, BOARD::GetCopperLayerCount(), getDisplayedColumnForModelField(), BOARD::GetEnabledLayers(), BOARD::GetLayerName(), PROJECT::GetLocalSettings(), PGM_BASE::GetSettingsManager(), IsCopperLayer(), m_board, m_boardLoaded, m_columns, PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_netsList, Pgm(), SETTINGS_MANAGER::Prj(), LSET::Seq(), and UNDEFINED_LAYER.
Referenced by buildNetsList().
|
private |
Rebuilds the net inspector list, removing all previous entries.
Definition at line 379 of file pcb_net_inspector_panel.cpp.
References buildColumns(), calculateNets(), COLUMN_NAME, CTX_NET, PANEL_NET_INSPECTOR_SETTINGS::custom_group_rules, PANEL_NET_INSPECTOR_SETTINGS::expanded_rows, PANEL_NET_INSPECTOR_SETTINGS::filter_by_net_name, PANEL_NET_INSPECTOR_SETTINGS::filter_by_netclass, PCB_NET_INSPECTOR_PANEL::DATA_MODEL::getGroupDataViewItems(), PROJECT::GetLocalSettings(), NETINFO_ITEM::GetNetCode(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetNetCode(), BOARD::GetNetInfo(), PGM_BASE::GetSettingsManager(), PANEL_NET_INSPECTOR_SETTINGS::group_by_constraint, PANEL_NET_INSPECTOR_SETTINGS::group_by_netclass, m_board, m_boardLoaded, m_boardLoading, m_custom_group_rules, m_dataModel, m_filterByNetclass, m_filterByNetName, m_groupByConstraint, m_groupByNetclass, m_inBuildNetsList, PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_netsList, m_rowExpanding, m_showZeroPadNets, netFilterMatches(), Pgm(), SETTINGS_MANAGER::Prj(), restoreSortColumn(), PANEL_NET_INSPECTOR_SETTINGS::show_zero_pad_nets, PANEL_NET_INSPECTOR_SETTINGS::sort_order_asc, and PANEL_NET_INSPECTOR_SETTINGS::sorting_column.
Referenced by onAddGroup(), OnBoardChanged(), OnBoardNetSettingsChanged(), onContextMenuSelection(), OnLanguageChangedImpl(), OnParentSetupChanged(), onRemoveSelectedGroup(), onRenameSelectedNet(), OnSearchTextChanged(), OnShowPanel(), PCB_NET_INSPECTOR_PANEL(), and updateBoardItems().
|
private |
Calculates the length statistics for each given netcode.
aNetCodes | is the list of netcodes to calculate statistics for. This must be sorted in ascending netcode order |
aIncludeZeroPadNets | determines whether the results should include nets with no pads |
Definition at line 611 of file pcb_net_inspector_panel.cpp.
References end, GetKiCadThreadPool(), BOARD::GetLengthCalculation(), LENGTH_CALCULATION::GetLengthCalculationItem(), m_board, relevantConnectivityItems(), and tp.
Referenced by buildNetsList(), and updateNets().
|
staticprivate |
Definition at line 718 of file pcb_net_inspector_panel.cpp.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetValue().
|
private |
Definition at line 724 of file pcb_net_inspector_panel.cpp.
References m_frame, m_inReporting, and UNITS_PROVIDER::MessageTextFromValue().
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetValue().
|
staticprivate |
Definition at line 706 of file pcb_net_inspector_panel.cpp.
References NETINFO_ITEM::GetNetCode().
|
staticprivate |
Definition at line 712 of file pcb_net_inspector_panel.cpp.
References NETINFO_ITEM::GetNetname(), and UnescapeString().
|
private |
Generates a CSV report from currently disaplyed data.
Definition at line 1378 of file pcb_net_inspector_panel.cpp.
References _, AddFileExtListToFilter(), CSV_QUOTE, EDA_UNIT_UTILS::GetLabel(), UNITS_PROVIDER::GetUserUnits(), m_columns, m_dataModel, m_frame, and m_inReporting.
Referenced by OnConfigButton(), and onContextMenuSelection().
|
private |
Generates a sub-menu for the show / hide columns submenu.
Definition at line 1251 of file pcb_net_inspector_panel.cpp.
References COLUMN_LAST_STATIC_COL, getDisplayedColumnForModelField(), ID_HIDE_COLUMN, and m_columns.
Referenced by OnConfigButton(), and OnHeaderContextMenu().
|
private |
Fetches the displayed grid view column for the given model column ID.
columnId | The ID (from column static IDs enum) to find |
Definition at line 356 of file pcb_net_inspector_panel.cpp.
References NET_INSPECTOR_PANEL::m_netsList.
Referenced by buildColumns(), generateShowHideColumnMenu(), onContextMenuSelection(), and restoreSortColumn().
|
private |
Highlight the currently selected net.
Definition at line 1452 of file pcb_net_inspector_panel.cpp.
References PCB_NET_INSPECTOR_PANEL::LIST_ITEM::ChildrenBegin(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::ChildrenEnd(), end, PCB_BASE_FRAME::GetCanvas(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetIsGroup(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetNetCode(), KIGFX::VIEW::GetPainter(), KIGFX::PAINTER::GetSettings(), PCB_DRAW_PANEL_GAL::GetView(), m_frame, m_highlightingNets, m_inBuildNetsList, NET_INSPECTOR_PANEL::m_netsList, EDA_DRAW_PANEL_GAL::Refresh(), KIGFX::RENDER_SETTINGS::SetHighlight(), and KIGFX::VIEW::UpdateAllLayersColor().
Referenced by onContextMenuSelection(), and OnNetsListItemActivated().
|
private |
Filter to determine whether a board net should be included in the net inspector.
Definition at line 532 of file pcb_net_inspector_panel.cpp.
References PANEL_NET_INSPECTOR_SETTINGS::filter_by_net_name, PANEL_NET_INSPECTOR_SETTINGS::filter_by_netclass, PROJECT::GetLocalSettings(), NETCLASS::GetName(), NETINFO_ITEM::GetNetClass(), NETINFO_ITEM::GetNetCode(), NETINFO_ITEM::GetNetname(), PGM_BASE::GetSettingsManager(), PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_searchCtrl, m_showUnconnectedNets, Pgm(), SETTINGS_MANAGER::Prj(), and UnescapeString().
Referenced by buildNetsList(), updateBoardItems(), and updateNets().
|
private |
Adds a custom display grouping of nets.
Definition at line 1089 of file pcb_net_inspector_panel.cpp.
References _, buildNetsList(), CTX_NET, KIUI::GetInfoFont(), WX_TEXT_ENTRY_DIALOG::GetValue(), help, WX_TEXT_ENTRY_DIALOG_BASE::m_ContentSizer, m_custom_group_rules, SaveSettings(), WX_TEXT_ENTRY_DIALOG::SetTextValidator(), DIALOG_SHIM::ShowModal(), and UnescapeString().
Referenced by onContextMenuSelection().
|
private |
Adds a new user-specified net to the board.
Definition at line 1510 of file pcb_net_inspector_panel.cpp.
References _, BOARD::Add(), DisplayError(), BOARD::FindNet(), WX_TEXT_ENTRY_DIALOG::GetValue(), m_board, m_frame, PCB_EDIT_FRAME::OnModify(), WX_TEXT_ENTRY_DIALOG::SetTextValidator(), and DIALOG_SHIM::ShowModal().
Referenced by onContextMenuSelection().
|
overridevirtual |
Update panel when board is changed.
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 757 of file pcb_net_inspector_panel.cpp.
References BOARD::AddListener(), buildNetsList(), PCB_BASE_FRAME::GetBoard(), PROJECT::GetLocalSettings(), PGM_BASE::GetSettingsManager(), m_board, m_boardLoaded, m_boardLoading, m_frame, PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_searchCtrl, Pgm(), and SETTINGS_MANAGER::Prj().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 942 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 957 of file pcb_net_inspector_panel.cpp.
References BOARD::GetHighLightNetCodes(), BOARD::IsHighLightNetON(), m_board, m_dataModel, m_highlightingNets, and NET_INSPECTOR_PANEL::m_netsList.
Referenced by OnShowPanel(), and PCB_NET_INSPECTOR_PANEL().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 777 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 928 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 906 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 784 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 935 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 913 of file pcb_net_inspector_panel.cpp.
References updateBoardItems().
|
overridevirtual |
Reimplemented from BOARD_LISTENER.
Definition at line 919 of file pcb_net_inspector_panel.cpp.
References buildNetsList().
|
inlinevirtualinherited |
Reimplemented in PCB_SEARCH_PANE.
Definition at line 270 of file board.h.
Referenced by BOARD::OnRatsnestChanged().
|
private |
Clears highlighting from nets.
Definition at line 1126 of file pcb_net_inspector_panel.cpp.
References PCB_BASE_FRAME::GetCanvas(), KIGFX::VIEW::GetPainter(), KIGFX::PAINTER::GetSettings(), PCB_DRAW_PANEL_GAL::GetView(), m_frame, m_highlightingNets, EDA_DRAW_PANEL_GAL::Refresh(), KIGFX::RENDER_SETTINGS::SetHighlight(), and KIGFX::VIEW::UpdateAllLayersColor().
Referenced by onContextMenuSelection().
|
protected |
Definition at line 1496 of file pcb_net_inspector_panel.cpp.
References m_inBuildNetsList, and SaveSettings().
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
overrideprotectedvirtual |
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 1154 of file pcb_net_inspector_panel.cpp.
References _, generateReport(), generateShowHideColumnMenu(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetIsGroup(), PROJECT::GetLocalSettings(), PGM_BASE::GetSettingsManager(), ID_ADD_GROUP, ID_FILTER_BY_NET_NAME, ID_FILTER_BY_NETCLASS, ID_GENERATE_REPORT, ID_GROUP_BY_NETCLASS, ID_REMOVE_GROUPS, ID_REMOVE_SELECTED_GROUP, ID_SHOW_UNCONNECTED_NETS, ID_SHOW_ZERO_NET_PADS, m_custom_group_rules, m_groupByNetclass, PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_netsList, m_showUnconnectedNets, m_showZeroPadNets, onContextMenuSelection(), Pgm(), and SETTINGS_MANAGER::Prj().
|
private |
Handle a net row(s) context menu selection.
Definition at line 1275 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), generateReport(), getDisplayedColumnForModelField(), highlightSelectedNets(), ID_ADD_GROUP, ID_ADD_NET, ID_CLEAR_HIGHLIGHTING, ID_DELETE_NET, ID_FILTER_BY_NET_NAME, ID_FILTER_BY_NETCLASS, ID_GENERATE_REPORT, ID_GROUP_BY_CONSTRAINT, ID_GROUP_BY_NETCLASS, ID_HIDE_COLUMN, ID_HIGHLIGHT_SELECTED_NETS, ID_REMOVE_GROUPS, ID_REMOVE_SELECTED_GROUP, ID_RENAME_NET, ID_SHOW_UNCONNECTED_NETS, ID_SHOW_ZERO_NET_PADS, m_custom_group_rules, m_filterByNetclass, m_filterByNetName, m_groupByConstraint, m_groupByNetclass, m_showUnconnectedNets, m_showZeroPadNets, onAddGroup(), onAddNet(), onClearHighlighting(), onDeleteSelectedNet(), onRemoveSelectedGroup(), onRenameSelectedNet(), and SaveSettings().
Referenced by OnConfigButton(), OnHeaderContextMenu(), and OnNetsListContextMenu().
|
private |
Deletes a selected net.
Definition at line 1642 of file pcb_net_inspector_panel.cpp.
References _, PCB_NET_INSPECTOR_PANEL::LIST_ITEM::ChildrenBegin(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::ChildrenCount(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::ChildrenEnd(), KIGFX::GEOMETRY, PCB_BASE_FRAME::GetCanvas(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetGroupName(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetIsGroup(), PCB_DRAW_PANEL_GAL::GetView(), IsOK(), m_board, m_frame, NET_INSPECTOR_PANEL::m_netsList, PCB_EDIT_FRAME::OnModify(), BOARD::Remove(), KIGFX::REPAINT, text, and KIGFX::VIEW::UpdateAllItemsConditionally().
Referenced by onContextMenuSelection().
|
protected |
Definition at line 1138 of file pcb_net_inspector_panel.cpp.
References m_rowExpanding, and SaveSettings().
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
protected |
Definition at line 1145 of file pcb_net_inspector_panel.cpp.
References generateShowHideColumnMenu(), and onContextMenuSelection().
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
private |
Display a new row(s) context menu.
|
protectedvirtualinherited |
Definition at line 93 of file net_inspector_panel.cpp.
References _, NET_INSPECTOR_PANEL::m_configureBtn, NET_INSPECTOR_PANEL::m_searchCtrl, and NET_INSPECTOR_PANEL::OnLanguageChangedImpl().
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), and NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL().
|
overrideprotectedvirtual |
Reloads strings on an application language change.
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 1721 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), m_dataModel, and SaveSettings().
|
protected |
Definition at line 1000 of file pcb_net_inspector_panel.cpp.
References _, PCB_BASE_FRAME::GetCanvas(), KIGFX::RENDER_SETTINGS::GetHighlightNetCodes(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetIsGroup(), KIGFX::VIEW::GetPainter(), KIGFX::PAINTER::GetSettings(), PCB_DRAW_PANEL_GAL::GetView(), highlightNet(), ID_ADD_NET, ID_CLEAR_HIGHLIGHTING, ID_DELETE_NET, ID_HIGHLIGHT_SELECTED_NETS, ID_REMOVE_SELECTED_GROUP, ID_RENAME_NET, m_frame, NET_INSPECTOR_PANEL::m_netsList, and onContextMenuSelection().
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
protected |
Definition at line 1446 of file pcb_net_inspector_panel.cpp.
References highlightSelectedNets().
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
overridevirtual |
Updates the netlist based on global board changes (e.g.
stackup definition)
Called by PCB_EDIT_FRAME after displaying the Board Setup dialog
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 1503 of file pcb_net_inspector_panel.cpp.
References buildNetsList().
|
private |
Removes a custom display grouping.
Definition at line 1352 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetGroupName(), m_custom_group_rules, NET_INSPECTOR_PANEL::m_netsList, and SaveSettings().
Referenced by onContextMenuSelection().
|
private |
Renames a selected net.
Definition at line 1546 of file pcb_net_inspector_panel.cpp.
References _, BOARD::Add(), BOARD::AllConnectedItems(), buildNetsList(), CANDIDATE, CTX_NETNAME, DisplayError(), EscapeString(), BOARD::FindNet(), PCB_BASE_FRAME::GetBoard(), PCB_BASE_FRAME::GetCanvas(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetIsGroup(), PCB_NET_INSPECTOR_PANEL::LIST_ITEM::GetNet(), NETINFO_ITEM::GetNetname(), WX_TEXT_ENTRY_DIALOG::GetValue(), PCB_DRAW_PANEL_GAL::GetView(), m_board, m_dataModel, m_frame, NET_INSPECTOR_PANEL::m_netsList, PCB_EDIT_FRAME::OnModify(), EDA_DRAW_PANEL_GAL::Refresh(), BOARD::Remove(), KIGFX::REPAINT, NETINFO_ITEM::SetNetname(), WX_TEXT_ENTRY_DIALOG::SetTextValidator(), DIALOG_SHIM::ShowModal(), UnescapeString(), and KIGFX::VIEW::UpdateAllItems().
Referenced by onContextMenuSelection().
|
overrideprotectedvirtual |
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 1082 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), and SaveSettings().
|
inlineprotectedvirtualinherited |
Definition at line 75 of file net_inspector_panel.h.
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), and NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL().
|
overridevirtual |
Prepare the panel when shown in the editor.
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 993 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), m_board, and OnBoardHighlightNetChanged().
|
inlineprotectedvirtualinherited |
Definition at line 76 of file net_inspector_panel.h.
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), and NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL().
|
private |
Handle an application-level change of units.
Definition at line 1729 of file pcb_net_inspector_panel.cpp.
References m_dataModel.
Referenced by PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
private |
Fetches an ordered (by NetCode) list of all board connectivity items.
Definition at line 585 of file pcb_net_inspector_panel.cpp.
References BOARD::GetConnectivity(), m_board, PCB_ARC_T, PCB_PAD_T, PCB_TRACE_T, and PCB_VIA_T.
Referenced by calculateNets().
|
private |
Sets the sort column in the grid to that showing the given model ID column.
sortingColumnId | The model ID of the column to sort by |
sortOrderAsc | True for ascending sort, False for descending sort |
Definition at line 340 of file pcb_net_inspector_panel.cpp.
References getDisplayedColumnForModelField(), and m_dataModel.
Referenced by buildNetsList().
|
overridevirtual |
Persist the net inspector configuration to project / global settings.
Reimplemented from NET_INSPECTOR_PANEL.
Definition at line 1743 of file pcb_net_inspector_panel.cpp.
References PANEL_NET_INSPECTOR_SETTINGS::filter_text, PROJECT::GetLocalSettings(), PGM_BASE::GetSettingsManager(), m_boardLoaded, m_boardLoading, m_custom_group_rules, m_dataModel, m_filterByNetclass, m_filterByNetName, m_groupByConstraint, m_groupByNetclass, PROJECT_LOCAL_SETTINGS::m_NetInspectorPanel, NET_INSPECTOR_PANEL::m_netsList, NET_INSPECTOR_PANEL::m_searchCtrl, m_showUnconnectedNets, m_showZeroPadNets, Pgm(), and SETTINGS_MANAGER::Prj().
Referenced by onAddGroup(), OnColumnSorted(), onContextMenuSelection(), OnExpandCollapseRow(), OnLanguageChangedImpl(), onRemoveSelectedGroup(), OnSearchTextChanged(), and ~PCB_NET_INSPECTOR_PANEL().
|
private |
Set sensible default column widths.
|
private |
Unified handling of added / deleted / modified board items.
Definition at line 790 of file pcb_net_inspector_panel.cpp.
References buildNetsList(), ADVANCED_CFG::GetCfg(), NETINFO_ITEM::GetNetCode(), ADVANCED_CFG::m_NetInspectorBulkUpdateOptimisationThreshold, NET_INSPECTOR_PANEL::m_netsList, netFilterMatches(), pad, and updateNets().
Referenced by OnBoardCompositeUpdate(), OnBoardItemAdded(), OnBoardItemChanged(), OnBoardItemRemoved(), OnBoardItemsAdded(), OnBoardItemsChanged(), and OnBoardItemsRemoved().
|
private |
Refreshes displayed data for the given rows.
Definition at line 732 of file pcb_net_inspector_panel.cpp.
References m_dataModel, and NET_INSPECTOR_PANEL::m_netsList.
Referenced by updateNets().
|
private |
Updates displayed statistics for the given nets.
Definition at line 840 of file pcb_net_inspector_panel.cpp.
References calculateNets(), m_dataModel, NET_INSPECTOR_PANEL::m_netsList, m_showZeroPadNets, netFilterMatches(), and updateDisplayedRowValues().
Referenced by updateBoardItems().
|
private |
Definition at line 223 of file pcb_net_inspector_panel.h.
|
private |
Parent BOARD.
Definition at line 213 of file pcb_net_inspector_panel.h.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::addCustomGroups(), buildColumns(), buildNetsList(), calculateNets(), onAddNet(), OnBoardChanged(), OnBoardHighlightNetChanged(), onDeleteSelectedNet(), onRenameSelectedNet(), OnShowPanel(), PCB_NET_INSPECTOR_PANEL(), and relevantConnectivityItems().
|
private |
Definition at line 240 of file pcb_net_inspector_panel.h.
Referenced by buildColumns(), buildNetsList(), OnBoardChanged(), and SaveSettings().
|
private |
Definition at line 241 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), OnBoardChanged(), and SaveSettings().
|
private |
All displayed (or hidden) columns.
Definition at line 293 of file pcb_net_inspector_panel.h.
Referenced by adjustListColumnSizes(), buildColumns(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::columnCount(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), generateReport(), generateShowHideColumnMenu(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetValue(), and PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged().
|
protectedinherited |
Definition at line 91 of file net_inspector_panel.h.
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), NET_INSPECTOR_PANEL::OnLanguageChanged(), and NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL().
|
private |
Custom net grouping rules.
Definition at line 260 of file pcb_net_inspector_panel.h.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::addCustomGroups(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::addItem(), buildNetsList(), onAddGroup(), OnConfigButton(), onContextMenuSelection(), onRemoveSelectedGroup(), and SaveSettings().
|
private |
The bound data model to display.
Definition at line 222 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), generateReport(), OnBoardHighlightNetChanged(), OnLanguageChangedImpl(), onRenameSelectedNet(), onUnitsChanged(), PCB_NET_INSPECTOR_PANEL(), restoreSortColumn(), SaveSettings(), updateDisplayedRowValues(), and updateNets().
|
private |
Definition at line 253 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), onContextMenuSelection(), and SaveSettings().
|
private |
Definition at line 252 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), onContextMenuSelection(), and SaveSettings().
|
private |
Owning edit frame.
Definition at line 216 of file pcb_net_inspector_panel.h.
Referenced by formatLength(), generateReport(), highlightSelectedNets(), onAddNet(), OnBoardChanged(), onClearHighlighting(), onDeleteSelectedNet(), OnNetsListContextMenu(), onRenameSelectedNet(), PCB_NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
private |
Definition at line 257 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), onContextMenuSelection(), and SaveSettings().
|
private |
Definition at line 256 of file pcb_net_inspector_panel.h.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::addItem(), buildNetsList(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::deleteItem(), OnConfigButton(), onContextMenuSelection(), and SaveSettings().
|
private |
Definition at line 247 of file pcb_net_inspector_panel.h.
Referenced by highlightSelectedNets(), OnBoardHighlightNetChanged(), and onClearHighlighting().
|
private |
Definition at line 229 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), highlightSelectedNets(), and OnColumnSorted().
|
private |
Definition at line 228 of file pcb_net_inspector_panel.h.
Referenced by formatLength(), and generateReport().
|
protectedinherited |
Definition at line 92 of file net_inspector_panel.h.
Referenced by adjustListColumnSizes(), buildColumns(), buildNetsList(), getDisplayedColumnForModelField(), highlightSelectedNets(), NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), OnBoardHighlightNetChanged(), OnConfigButton(), onDeleteSelectedNet(), OnNetsListContextMenu(), onRemoveSelectedGroup(), onRenameSelectedNet(), PCB_NET_INSPECTOR_PANEL(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::resortIfChanged(), SaveSettings(), updateBoardItems(), updateDisplayedRowValues(), updateNets(), NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL(), and ~PCB_NET_INSPECTOR_PANEL().
|
private |
Definition at line 246 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), and OnExpandCollapseRow().
|
protectedinherited |
Definition at line 90 of file net_inspector_panel.h.
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL(), netFilterMatches(), OnBoardChanged(), NET_INSPECTOR_PANEL::OnLanguageChanged(), SaveSettings(), and NET_INSPECTOR_PANEL::~NET_INSPECTOR_PANEL().
|
private |
Definition at line 255 of file pcb_net_inspector_panel.h.
Referenced by netFilterMatches(), OnConfigButton(), onContextMenuSelection(), and SaveSettings().
|
private |
Definition at line 254 of file pcb_net_inspector_panel.h.
Referenced by buildNetsList(), OnConfigButton(), onContextMenuSelection(), SaveSettings(), and updateNets().
|
protectedinherited |
Definition at line 89 of file net_inspector_panel.h.
Referenced by NET_INSPECTOR_PANEL::NET_INSPECTOR_PANEL().