49#include <wx/filedlg.h>
50#include <wx/hyperlink.h>
61 const wxString& aComment = wxEmptyString )
121 listItem.SetText( str );
122 listItem.SetData( code );
131 { wxID_CANCEL,
_(
"Close" ) } } );
166 g_lastERCIgnored.push_back( { m_ignoredList->GetItemText( ii ), m_ignoredList->GetItemData( ii ) } );
192 m_infoBar->AddLink(
_(
"Show Annotation dialog" ),
193 [&]( wxHyperlinkEvent& aEvent )
195 wxHtmlLinkEvent htmlEvent( aEvent.GetId(), wxHtmlLinkInfo( aEvent.GetURL() ) );
199 m_infoBar->ShowMessage(
_(
"Schematic is not fully annotated. ERC results will be incomplete." ) );
235 menu.Append( 4206,
_(
"Cross-probe Selected Items" ),
236 _(
"Highlight corresponding items on canvas when selected in the ERC list" ),
240 menu.Append( 4207,
_(
"Center on Cross-probe" ),
241 _(
"When cross-probing, scroll the canvas so that the item is visible" ),
245 menu.Append( 4208,
_(
"Show all errors" ),
246 _(
"Show duplicate ERC markers on all applicable pins" ),
251 int menu_id =
m_bMenu->GetPopupMenuSelectionFromUser( menu );
253 if( menu_id == 0 || menu_id == 4206 )
257 else if( menu_id == 1 || menu_id == 4207 )
261 else if( menu_id == 2 || menu_id == 4208 )
270 if(
int hotkey = aEvt.GetKeyCode() )
272 if( aEvt.ControlDown() )
274 if( aEvt.ShiftDown() )
348 bool markersOverflowed =
false;
357 num.Printf( markersOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numMarkers );
363 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
376 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
412 bool includeExclusions =
false;
413 size_t numExcluded =
m_parent->Schematic().GetUnresolvedERCExclusionCount();
418 if( numExcluded > 0 )
421 wxYES_NO | wxCANCEL | wxCENTER | wxICON_QUESTION );
422 dlg.SetYesNoLabels(
_(
"Errors and Warnings Only" ),
423 _(
"Errors, Warnings and Exclusions" ) );
425 int ret = dlg.ShowModal();
427 if( ret == wxID_CANCEL )
429 else if( ret == wxID_NO )
430 includeExclusions =
true;
433 if( includeExclusions )
434 m_parent->Schematic().ClearUnresolvedERCExclusions();
466 if( wxWindow* parent = GetParent() )
467 wxQueueEvent( parent,
new wxCommandEvent( EDA_EVT_CLOSE_ERC_DIALOG, wxID_ANY ) );
493 for( std::reference_wrapper<RC_ITEM>& item : violations )
499 listItem.SetText( wxT(
" • " ) + item.get().GetErrorText(
true ) );
500 listItem.SetData( item.get().GetErrorCode() );
522 int itemsNotAnnotated =
m_parent->CheckAnnotate(
526 ercItem->SetErrorMessage( aMsg );
531 ercItem->SetItems( aItemA->
GetSymbol() );
542 if( itemsNotAnnotated )
544 m_messages->ReportHead( wxString::Format(
_(
"%d symbol(s) require annotation.<br><br>" ),
591 m_parent->GetCanvas()->GetView()->RefreshDrawingSheetPageInfo();
632 else if( item && item->
GetClass() != wxT(
"DELETED_SHEET_ITEM" ) )
639 std::shared_ptr<ERC_ITEM> ercItem = std::static_pointer_cast<ERC_ITEM>( node->
m_RcItem );
641 if( ercItem->IsSheetSpecific() )
642 sheet = ercItem->GetSpecificSheetPath();
647 if( ercItem->MainItemHasSheetPath() )
648 sheet = ercItem->GetMainItemSheetPath();
651 if( ercItem->AuxItemHasSheetPath() )
652 sheet = ercItem->GetAuxItemSheetPath();
661 const auto currentPath =
m_parent->Schematic().Hierarchy().GetSheetPathByKIIDPath( sheet.
PathRef() );
669 sheet = *currentPath;
690 if( aEvent.GetItem().IsOk() )
714 std::shared_ptr<RC_ITEM> rcItem = node->m_RcItem;
718 switch( settings.
GetSeverity( rcItem->GetErrorCode() ) )
722 default: listName =
_(
"appropriate" );
break;
727 ID_EDIT_EXCLUSION_COMMENT = 4467,
729 ID_REMOVE_EXCLUSION_ALL,
731 ID_ADD_EXCLUSION_WITH_COMMENT,
732 ID_ADD_EXCLUSION_ALL,
733 ID_INSPECT_VIOLATION,
735 ID_EDIT_PIN_CONFLICT_MAP,
736 ID_EDIT_CONNECTION_GRID,
737 ID_SET_SEVERITY_TO_ERROR,
738 ID_SET_SEVERITY_TO_WARNING,
739 ID_SET_SEVERITY_TO_IGNORE,
743 if( rcItem->GetParent()->IsExcluded() )
745 menu.Append( ID_REMOVE_EXCLUSION,
746 _(
"Remove exclusion for this violation" ),
747 wxString::Format(
_(
"It will be placed back in the %s list" ), listName ) );
749 menu.Append( ID_EDIT_EXCLUSION_COMMENT,
750 _(
"Edit exclusion comment..." ) );
754 menu.Append( ID_ADD_EXCLUSION,
755 _(
"Exclude this violation" ),
756 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
758 menu.Append( ID_ADD_EXCLUSION_WITH_COMMENT,
759 _(
"Exclude with comment..." ),
760 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
763 menu.AppendSeparator();
766 wxString fixERCErrorMenuText = editTool->FixERCErrorMenuText( rcItem );
768 if( !inspectERCErrorMenuText.IsEmpty() || !fixERCErrorMenuText.IsEmpty() )
770 if( !inspectERCErrorMenuText.IsEmpty() )
771 menu.Append( ID_INSPECT_VIOLATION, inspectERCErrorMenuText );
773 if( !fixERCErrorMenuText.IsEmpty() )
774 menu.Append( ID_FIX_VIOLATION, fixERCErrorMenuText );
776 menu.AppendSeparator();
786 menu.Append( ID_SET_SEVERITY_TO_ERROR,
787 wxString::Format(
_(
"Change severity to Error for all '%s' violations" ),
788 rcItem->GetErrorText(
true ) ),
789 _(
"Violation severities can also be edited in Schematic Setup" ) );
793 menu.Append( ID_SET_SEVERITY_TO_WARNING,
794 wxString::Format(
_(
"Change severity to Warning for all '%s' violations" ),
795 rcItem->GetErrorText(
true ) ),
796 _(
"Violation severities can also be edited in Schematic Setup" ) );
799 menu.Append( ID_SET_SEVERITY_TO_IGNORE,
800 wxString::Format(
_(
"Ignore all '%s' violations" ), rcItem->GetErrorText(
true ) ),
801 _(
"Violations will not be checked or reported" ) );
803 menu.AppendSeparator();
808 menu.Append( ID_EDIT_PIN_CONFLICT_MAP,
809 _(
"Edit pin-to-pin conflict map..." ),
810 _(
"Open the Schematic Setup dialog" ) );
814 menu.Append( ID_EDIT_SEVERITIES,
815 _(
"Edit violation severities..." ),
816 _(
"Open the Schematic Setup dialog" ) );
821 menu.Append( ID_EDIT_CONNECTION_GRID,
822 _(
"Edit connection grid spacing..." ),
823 _(
"Open the Schematic Setup dialog" ) );
826 bool modified =
false;
827 int command = GetPopupMenuSelectionFromUser( menu );
831 case ID_EDIT_EXCLUSION_COMMENT:
834 WX_TEXT_ENTRY_DIALOG dlg(
this, wxEmptyString,
_(
"Exclusion Comment" ), marker->GetComment(),
true );
848 case ID_REMOVE_EXCLUSION:
852 m_parent->GetCanvas()->GetView()->Update( marker );
861 case ID_ADD_EXCLUSION:
862 case ID_ADD_EXCLUSION_WITH_COMMENT:
867 if( command == ID_ADD_EXCLUSION_WITH_COMMENT )
879 m_parent->GetCanvas()->GetView()->Update( marker );
888 case ID_INSPECT_VIOLATION:
892 case ID_FIX_VIOLATION:
893 editTool->FixERCError( node->m_RcItem );
896 case ID_SET_SEVERITY_TO_ERROR:
904 m_parent->GetCanvas()->GetView()->Update( marker );
912 case ID_SET_SEVERITY_TO_WARNING:
920 m_parent->GetCanvas()->GetView()->Update( marker );
928 case ID_SET_SEVERITY_TO_IGNORE:
937 listItem.SetText( wxT(
" • " ) + rcItem->GetErrorText(
true ) );
938 listItem.SetData( rcItem->GetErrorCode() );
948 m_parent->Schematic().ClearUnresolvedERCExclusions( rcItem->GetErrorCode() );
956 case ID_EDIT_PIN_CONFLICT_MAP:
957 m_parent->ShowSchematicSetupDialog(
_(
"Pin Conflicts Map" ) );
960 case ID_EDIT_SEVERITIES:
961 m_parent->ShowSchematicSetupDialog(
_(
"Violation Severity" ) );
964 case ID_EDIT_CONNECTION_GRID:
965 m_parent->ShowSchematicSetupDialog(
_(
"Formatting" ) );
981 int errorCode = (int) event.m_item.GetData();
988 menu.Check( settings.
GetSeverity( errorCode ),
true );
990 int severity = GetPopupMenuSelectionFromUser( menu );
994 if( settings.
GetSeverity( errorCode ) != severity )
1060 if( marker !=
nullptr )
1079 m_parent->GetCanvas()->GetView()->Update( marker );
1092 m_parent->ShowSchematicSetupDialog(
_(
"Violation Severity" ) );
1098 if( aEvent.GetEventObject() ==
m_showAll )
1135 wxFileDialog dlg(
this,
_(
"Save Report File" ),
Prj().GetProjectPath(), fn.GetFullName(),
1137 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1141 if( dlg.ShowModal() != wxID_OK )
1146 if( fn.GetExt().IsEmpty() )
1149 if( !fn.IsAbsolute() )
1152 fn.MakeAbsolute( prj_path );
1157 bool success =
false;
1164 m_messages->Report( wxString::Format(
_(
"Report file '%s' created." ), fn.GetFullPath() ) );
1166 DisplayErrorMessage(
this, wxString::Format(
_(
"Failed to create file '%s'." ), fn.GetFullPath() ) );
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
static TOOL_ACTION excludeMarker
static TOOL_ACTION selectionClear
Clear the current selection.
wxButton * m_sdbSizer1Cancel
wxSimplebook * m_runningResultsBook
wxCheckBox * m_showExclusions
NUMBER_BADGE * m_errorsBadge
STD_BITMAP_BUTTON * m_bMenu
wxCheckBox * m_showErrors
NUMBER_BADGE * m_exclusionsBadge
wxListCtrl * m_ignoredList
WX_HTML_REPORT_BOX * m_messages
wxDataViewCtrl * m_markerDataView
wxButton * m_deleteAllMarkers
NUMBER_BADGE * m_warningsBadge
wxButton * m_deleteOneMarker
wxCheckBox * m_showWarnings
DIALOG_ERC_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Electrical Rules Checker"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
void OnMenu(wxCommandEvent &aEvent) override
void ExcludeMarker(SCH_MARKER *aMarker=nullptr)
Exclude aMarker from the ERC list.
void OnIgnoredItemRClick(wxListEvent &aEvent) override
const SCH_MARKER * m_centerMarkerOnIdle
void OnERCItemDClick(wxDataViewEvent &aEvent) override
std::shared_ptr< RC_ITEMS_PROVIDER > m_markerProvider
bool TransferDataToWindow() override
DIALOG_ERC(SCH_EDIT_FRAME *parent)
bool m_scroll_on_crossprobe
void SelectMarker(const SCH_MARKER *aMarker)
SCH_EDIT_FRAME * m_parent
wxString m_violationsTitleTemplate
void OnERCItemRClick(wxDataViewEvent &aEvent) override
void centerMarkerIdleHandler(wxIdleEvent &aEvent)
void DeleteAllMarkers(bool aIncludeExclusions)
void OnDeleteAllClick(wxCommandEvent &event) override
void OnLinkClicked(wxHtmlLinkEvent &event) override
void OnCharHook(wxKeyEvent &aEvt) override
void OnRunERCClick(wxCommandEvent &event) override
wxString m_ignoredTitleTemplate
void OnDeleteOneClick(wxCommandEvent &event) override
void OnSaveReport(wxCommandEvent &aEvent) override
SCHEMATIC * m_currentSchematic
void OnEditViolationSeverities(wxHyperlinkEvent &aEvent) override
void UpdateAnnotationWarning()
void Report(const wxString &aMessage) override
Display aMessage in the progress bar dialog.
void OnERCItemSelected(wxDataViewEvent &aEvent) override
RC_TREE_MODEL * m_markerTreeModel
void updateDisplayedCounts()
void OnSeverity(wxCommandEvent &aEvent) override
void OnCloseErcDialog(wxCloseEvent &event) override
void OnCancelClick(wxCommandEvent &event) override
bool Show(bool show) override
void SetupStandardButtons(std::map< int, wxString > aLabels={})
bool IsQuasiModal() const
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
virtual void OnCharHook(wxKeyEvent &aEvt)
static std::shared_ptr< ERC_ITEM > Create(int aErrorCode)
Constructs an ERC_ITEM for the given error code.
static std::vector< std::reference_wrapper< RC_ITEM > > GetItemsWithSeverities()
bool WriteJsonReport(const wxString &aFullFileName)
Writes a JSON formatted ERC Report to the given file path in the c-locale.
bool WriteTextReport(const wxString &aFullFileName)
Writes the text report also available via GetTextReport directly to a given file path.
Container for ERC settings.
SEVERITY GetSeverity(int aErrorCode) const
void SetSeverity(int aErrorCode, SEVERITY aSeverity)
void RunTests(DS_PROXY_VIEW_ITEM *aDrawingSheet, SCH_EDIT_FRAME *aEditFrame, KIFACE *aCvPcb, PROJECT *aProject, PROGRESS_REPORTER *aProgressReporter)
A specialisation of the RC_TREE_MODEL class to enable ERC errors / warnings to be resolved in a speci...
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
std::shared_ptr< RC_ITEM > GetRCItem() const
virtual void AdvancePhase() override
Use the next available virtual zone of the dialog progress bar.
PROGRESS_REPORTER_BASE(int aNumPhases)
virtual void SetCurrentProgress(double aProgress) override
Set the progress value to aProgress (0..1).
std::atomic_bool m_cancelled
virtual void AdvancePhase()=0
Use the next available virtual zone of the dialog progress bar.
virtual const wxString GetProjectPath() const
Return the full path of the project.
MARKER_BASE * GetParent() const
static RC_TREE_NODE * ToNode(wxDataViewItem aItem)
void ValueChanged(RC_TREE_NODE *aNode)
void Update(std::shared_ptr< RC_ITEMS_PROVIDER > aProvider, int aSeverities)
static KIID ToUUID(wxDataViewItem aItem)
std::shared_ptr< RC_ITEM > m_RcItem
Holds all the data relating to one schematic.
ERC_SETTINGS & ErcSettings() const
static TOOL_ACTION changeSheet
Schematic editor (Eeschema) main window.
SCHEMATIC & Schematic() const
Base class for any item which can be embedded within the SCHEMATIC container class,...
wxString GetClass() const override
Return the class name.
A helper to define a symbol's reference designator in a schematic.
const SCH_SHEET_PATH & GetSheetPath() const
SCH_SYMBOL * GetSymbol() const
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
void DeleteMarkers(enum MARKER_BASE::MARKER_T aMarkerTyp, int aErrorCode, bool aIncludeExclusions=true)
Delete all markers of a particular type and error code.
void DeleteAllMarkers(enum MARKER_BASE::MARKER_T aMarkerType, bool aIncludeExclusions)
Delete all electronic rules check markers of aMarkerType from all the screens in the list.
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
bool empty() const
Forwarded method from std::vector.
SCH_SCREEN * LastScreen()
const KIID_PATH & PathRef() const
Borrow the cached path until this sheet path is modified or destroyed.
VECTOR2I GetPosition() const override
An implementation of the RC_ITEM_LIST interface which uses the global SHEETLIST to fulfill the contra...
void SetMarkerExcluded(SCH_MARKER *aMarker, bool aExcluded, const wxString &aComment=wxEmptyString)
Set the exclusion state of a marker while keeping the cached severity counts in sync.
A KICAD version of wxTextEntryDialog which supports the various improvements/work-arounds from DIALOG...
wxString GetValue() const
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
#define KICAD_MESSAGE_DIALOG
static void setMarkerExcluded(const std::shared_ptr< RC_ITEMS_PROVIDER > &aProvider, SCH_MARKER *aMarker, bool aExcluded, const wxString &aComment=wxEmptyString)
wxDEFINE_EVENT(EDA_EVT_CLOSE_ERC_DIALOG, wxCommandEvent)
static std::vector< std::pair< wxString, int > > g_lastERCIgnored
static SCHEMATIC * g_lastERCSchematic
#define DIALOG_ERC_WINDOW_NAME
static int DEFAULT_SINGLE_COL_WIDTH
@ ERCE_ENDPOINT_OFF_GRID
Pin or wire-end off grid.
@ ERCE_PIN_TO_PIN_WARNING
static const std::string ReportFileExtension
static const std::string JsonFileExtension
static wxString JsonFileWildcard()
static wxString ReportFileWildcard()
@ ANNOTATE_ALL
Annotate the full schematic.
@ SYMBOL_FILTER_NON_POWER
T * GetAppSettings(const char *aFilename)
std::vector< FAB_LAYER_COLOR > dummy
Definition of file extensions used in Kicad.