53#include <wx/filedlg.h>
54#include <wx/hyperlink.h>
77 m_markerTreeModel( nullptr ),
80 m_centerMarkerOnIdle( nullptr ),
109 listItem.SetText( str );
110 listItem.SetData( code );
119 { wxID_CANCEL,
_(
"Close" ) } } );
156 wxASSERT( settings );
172 wxHyperlinkCtrl* button =
new wxHyperlinkCtrl(
m_infoBar, wxID_ANY,
173 _(
"Show Annotation dialog" ),
176 button->Bind( wxEVT_COMMAND_HYPERLINK, std::function<
void( wxHyperlinkEvent& aEvent )>(
177 [&]( wxHyperlinkEvent& aEvent )
179 wxHtmlLinkEvent htmlEvent( aEvent.GetId(),
180 wxHtmlLinkInfo( aEvent.GetURL() ) );
187 "ERC results will be incomplete." ) );
245 bool markersOverflowed =
false;
254 num.Printf( markersOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numMarkers );
260 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
273 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
309 bool includeExclusions =
false;
315 if( numExcluded > 0 )
317 wxMessageDialog dlg(
this,
_(
"Delete exclusions too?" ),
_(
"Delete All Markers" ),
318 wxYES_NO | wxCANCEL | wxCENTER | wxICON_QUESTION );
319 dlg.SetYesNoLabels(
_(
"Errors and Warnings Only" ),
320 _(
"Errors, Warnings and Exclusions" ) );
322 int ret = dlg.ShowModal();
324 if( ret == wxID_CANCEL )
326 else if( ret == wxID_NO )
327 includeExclusions =
true;
359 wxCommandEvent* evt =
new wxCommandEvent( EDA_EVT_CLOSE_ERC_DIALOG, wxID_ANY );
361 wxWindow* parent = GetParent();
364 wxQueueEvent( parent, evt );
403 for( std::reference_wrapper<RC_ITEM>& item : violations )
409 listItem.SetText( wxT(
" • " ) + item.get().GetErrorText() );
410 listItem.SetData( item.get().GetErrorCode() );
436 ercItem->SetErrorMessage( aMsg );
441 ercItem->SetItems( aItemA->
GetSymbol() );
449 if( itemsNotAnnotated )
540 else if( item && item->
GetClass() != wxT(
"DELETED_SHEET_ITEM" ) )
547 std::shared_ptr<ERC_ITEM> ercItem =
548 std::static_pointer_cast<ERC_ITEM>( node->
m_RcItem );
552 if( ercItem->IsSheetSpecific() )
553 sheet = ercItem->GetSpecificSheetPath();
556 if( ercItem->MainItemHasSheetPath() )
557 sheet = ercItem->GetMainItemSheetPath();
560 if( ercItem->AuxItemHasSheetPath() )
561 sheet = ercItem->GetAuxItemSheetPath();
593 if( aEvent.GetItem().IsOk() )
616 std::shared_ptr<RC_ITEM> rcItem = node->m_RcItem;
620 switch( settings.
GetSeverity( rcItem->GetErrorCode() ) )
624 default: listName =
_(
"appropriate" );
break;
629 ID_EDIT_EXCLUSION_COMMENT = 4467,
631 ID_REMOVE_EXCLUSION_ALL,
633 ID_ADD_EXCLUSION_WITH_COMMENT,
634 ID_ADD_EXCLUSION_ALL,
635 ID_INSPECT_VIOLATION,
636 ID_EDIT_PIN_CONFLICT_MAP,
637 ID_EDIT_CONNECTION_GRID,
638 ID_SET_SEVERITY_TO_ERROR,
639 ID_SET_SEVERITY_TO_WARNING,
640 ID_SET_SEVERITY_TO_IGNORE,
644 if( rcItem->GetParent()->IsExcluded() )
646 menu.Append( ID_REMOVE_EXCLUSION,
647 _(
"Remove exclusion for this violation" ),
648 wxString::Format(
_(
"It will be placed back in the %s list" ), listName ) );
650 menu.Append( ID_EDIT_EXCLUSION_COMMENT,
651 _(
"Edit exclusion comment..." ) );
655 menu.Append( ID_ADD_EXCLUSION,
656 _(
"Exclude this violation" ),
657 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
659 menu.Append( ID_ADD_EXCLUSION_WITH_COMMENT,
660 _(
"Exclude with comment..." ),
661 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
666 if( !inspectERCErrorMenuText.IsEmpty() )
667 menu.Append( ID_INSPECT_VIOLATION, inspectERCErrorMenuText );
669 menu.AppendSeparator();
678 menu.Append( ID_SET_SEVERITY_TO_ERROR,
679 wxString::Format(
_(
"Change severity to Error for all '%s' violations" ),
680 rcItem->GetErrorText() ),
681 _(
"Violation severities can also be edited in the Schematic Setup... dialog" ) );
685 menu.Append( ID_SET_SEVERITY_TO_WARNING,
686 wxString::Format(
_(
"Change severity to Warning for all '%s' violations" ),
687 rcItem->GetErrorText() ),
688 _(
"Violation severities can also be edited in the Schematic Setup... "
692 menu.Append( ID_SET_SEVERITY_TO_IGNORE,
693 wxString::Format(
_(
"Ignore all '%s' violations" ), rcItem->GetErrorText() ),
694 _(
"Violations will not be checked or reported" ) );
696 menu.AppendSeparator();
701 menu.Append( ID_EDIT_PIN_CONFLICT_MAP,
702 _(
"Edit pin-to-pin conflict map..." ),
703 _(
"Open the Schematic Setup... dialog" ) );
707 menu.Append( ID_EDIT_SEVERITIES,
708 _(
"Edit violation severities..." ),
709 _(
"Open the Schematic Setup... dialog" ) );
714 menu.Append( ID_EDIT_CONNECTION_GRID,
715 _(
"Edit connection grid spacing..." ),
716 _(
"Open the Schematic Setup... dialog" ) );
719 bool modified =
false;
720 int command = GetPopupMenuSelectionFromUser( menu );
724 case ID_EDIT_EXCLUSION_COMMENT:
728 marker->GetComment(),
true );
733 marker->SetExcluded(
true, dlg.
GetValue() );
736 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
742 case ID_REMOVE_EXCLUSION:
745 marker->SetExcluded(
false );
749 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
755 case ID_ADD_EXCLUSION:
756 case ID_ADD_EXCLUSION_WITH_COMMENT:
761 if( command == ID_ADD_EXCLUSION_WITH_COMMENT )
764 wxEmptyString,
true );
772 marker->SetExcluded(
true, comment );
778 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
780 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->DeleteCurrentItem(
false );
787 case ID_INSPECT_VIOLATION:
791 case ID_SET_SEVERITY_TO_ERROR:
798 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
807 case ID_SET_SEVERITY_TO_WARNING:
814 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
823 case ID_SET_SEVERITY_TO_IGNORE:
832 listItem.SetText( wxT(
" • " ) + rcItem->GetErrorText() );
833 listItem.SetData( rcItem->GetErrorCode() );
850 case ID_EDIT_PIN_CONFLICT_MAP:
854 case ID_EDIT_SEVERITIES:
858 case ID_EDIT_CONNECTION_GRID:
875 int errorCode = (int) event.m_item.GetData();
882 menu.Check( settings.
GetSeverity( errorCode ), true );
884 int severity = GetPopupMenuSelectionFromUser( menu );
888 if( settings.
GetSeverity( errorCode ) != severity )
951 if( marker !=
nullptr )
990 if( aEvent.GetEventObject() ==
m_showAll )
999 if( aEvent.IsChecked() )
1001 else if( aEvent.GetEventObject() ==
m_showAll )
1033 wxFileDialog dlg(
this,
_(
"Save Report File" ),
Prj().GetProjectPath(), fn.GetFullName(),
1035 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1037 if( dlg.ShowModal() != wxID_OK )
1042 if( fn.GetExt().IsEmpty() )
1045 if( !fn.IsAbsolute() )
1048 fn.MakeAbsolute( prj_path );
1053 bool success =
false;
1062 fn.GetFullPath() ) );
1067 fn.GetFullPath() ) );
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION cancelInteractive
VECTOR2D m_ScrollCenter
Current scroll center point in logical units.
wxButton * m_sdbSizer1Cancel
wxSimplebook * m_runningResultsBook
wxCheckBox * m_showExclusions
NUMBER_BADGE * m_errorsBadge
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
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
DIALOG_ERC(SCH_EDIT_FRAME *parent)
void SelectMarker(const SCH_MARKER *aMarker)
SCH_EDIT_FRAME * m_parent
wxString m_violationsTitleTemplate
void OnERCItemRClick(wxDataViewEvent &aEvent) override
void centerMarkerIdleHandler(wxIdleEvent &aEvent)
void OnDeleteAllClick(wxCommandEvent &event) override
void OnLinkClicked(wxHtmlLinkEvent &event) override
void OnRunERCClick(wxCommandEvent &event) override
void deleteAllMarkers(bool aIncludeExclusions)
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 Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
static TOOL_ACTION clearSelection
Clears the current selection.
EE_TYPE OfType(KICAD_T aType) const
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.
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...
APP_SETTINGS_BASE * KifaceSettings() const
DS_PROXY_VIEW_ITEM * GetDrawingSheet() const
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
virtual KIFACE * KiFACE(FACE_T aFaceId, bool doLoad=true)
Return the KIFACE* given a FACE_T.
std::shared_ptr< RC_ITEM > GetRCItem() const
void SetExcluded(bool aExcluded, const wxString &aComment=wxEmptyString)
void SetMaximumNumber(int aMax)
Set the maximum number to be shown on the badge.
void UpdateNumber(int aNumber, SEVERITY aSeverity)
Update the number displayed on the badge.
This implements all the tricky bits for thread safety, but the GUI is left to derived classes.
virtual void AdvancePhase() override
Use the next available virtual zone of the dialog progress bar.
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.
void SelectMarker(const MARKER_BASE *aMarker)
static RC_TREE_NODE * ToNode(wxDataViewItem aItem)
void ValueChanged(RC_TREE_NODE *aNode)
void Update(std::shared_ptr< RC_ITEMS_PROVIDER > aProvider, int aSeverities)
void DeleteItems(bool aCurrentOnly, bool aIncludeExclusions, bool aDeep)
Delete the current item or all items.
void DeleteCurrentItem(bool aDeep)
void CenterMarker(const MARKER_BASE *aMarker)
static KIID ToUUID(wxDataViewItem aItem)
std::shared_ptr< RC_ITEM > m_RcItem
virtual REPORTER & ReportHead(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Places the report at the beginning of the list for objects that support ordering.
Holds all the data relating to one schematic.
void RecordERCExclusions()
Scan existing markers and record data from any that are Excluded.
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
ERC_SETTINGS & ErcSettings() const
virtual void RedrawScreen(const VECTOR2I &aCenterPoint, bool aWarpPointer)
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
Schematic editor (Eeschema) main window.
void ShowSchematicSetupDialog(const wxString &aInitialPage=wxEmptyString)
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SCH_SHEET_PATH & GetCurrentSheet() const
SCHEMATIC & Schematic() const
int CheckAnnotate(ANNOTATION_ERROR_HANDLER aErrorHandler, ANNOTATE_SCOPE_T aAnnotateScope=ANNOTATE_ALL, bool aRecursive=true)
Check for annotation errors.
void SetCurrentSheet(const SCH_SHEET_PATH &aSheet)
void DisplayCurrentSheet()
Draw the current sheet on the display.
void FocusOnItem(SCH_ITEM *aItem)
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)
double m_LastZoomLevel
last value for the zoom level, useful in Eeschema when changing the current displayed sheet to reuse ...
EE_RTREE & Items()
Gets the full RTree, usually for iterating.
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()
VECTOR2I GetPosition() const override
EDA_UNITS GetUserUnits() const
void Clear()
Delete the stored messages.
void SetImmediateMode()
In immediate mode, messages are flushed as they are added.
REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override
Report a string with a given severity.
void RemoveAllButtons()
Remove all the buttons that have been added by the user.
void AddButton(wxButton *aButton)
Add an already created button to the infobar.
void ShowMessage(const wxString &aMessage, int aFlags=wxICON_INFORMATION) override
Show the info bar with the provided message and icon.
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.
static int RPT_SEVERITY_ALL
static int DEFAULT_SINGLE_COL_WIDTH
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()
Common command IDs shared by more than one of the KiCad applications.
std::vector< FAB_LAYER_COLOR > dummy
Definition of file extensions used in Kicad.
static int RPT_SEVERITY_ALL