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();
587 if( aEvent.GetItem().IsOk() )
610 std::shared_ptr<RC_ITEM> rcItem = node->m_RcItem;
614 switch( settings.
GetSeverity( rcItem->GetErrorCode() ) )
618 default: listName =
_(
"appropriate" );
break;
623 ID_EDIT_EXCLUSION_COMMENT = 4467,
625 ID_REMOVE_EXCLUSION_ALL,
627 ID_ADD_EXCLUSION_WITH_COMMENT,
628 ID_ADD_EXCLUSION_ALL,
629 ID_INSPECT_VIOLATION,
630 ID_EDIT_PIN_CONFLICT_MAP,
631 ID_EDIT_CONNECTION_GRID,
632 ID_SET_SEVERITY_TO_ERROR,
633 ID_SET_SEVERITY_TO_WARNING,
634 ID_SET_SEVERITY_TO_IGNORE,
638 if( rcItem->GetParent()->IsExcluded() )
640 menu.Append( ID_REMOVE_EXCLUSION,
641 _(
"Remove exclusion for this violation" ),
642 wxString::Format(
_(
"It will be placed back in the %s list" ), listName ) );
644 menu.Append( ID_EDIT_EXCLUSION_COMMENT,
645 _(
"Edit exclusion comment..." ) );
649 menu.Append( ID_ADD_EXCLUSION,
650 _(
"Exclude this violation" ),
651 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
653 menu.Append( ID_ADD_EXCLUSION_WITH_COMMENT,
654 _(
"Exclude with comment..." ),
655 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
660 if( !inspectERCErrorMenuText.IsEmpty() )
661 menu.Append( ID_INSPECT_VIOLATION, inspectERCErrorMenuText );
663 menu.AppendSeparator();
672 menu.Append( ID_SET_SEVERITY_TO_ERROR,
673 wxString::Format(
_(
"Change severity to Error for all '%s' violations" ),
674 rcItem->GetErrorText() ),
675 _(
"Violation severities can also be edited in the Schematic Setup... dialog" ) );
679 menu.Append( ID_SET_SEVERITY_TO_WARNING,
680 wxString::Format(
_(
"Change severity to Warning for all '%s' violations" ),
681 rcItem->GetErrorText() ),
682 _(
"Violation severities can also be edited in the Schematic Setup... "
686 menu.Append( ID_SET_SEVERITY_TO_IGNORE,
687 wxString::Format(
_(
"Ignore all '%s' violations" ), rcItem->GetErrorText() ),
688 _(
"Violations will not be checked or reported" ) );
690 menu.AppendSeparator();
695 menu.Append( ID_EDIT_PIN_CONFLICT_MAP,
696 _(
"Edit pin-to-pin conflict map..." ),
697 _(
"Open the Schematic Setup... dialog" ) );
701 menu.Append( ID_EDIT_SEVERITIES,
702 _(
"Edit violation severities..." ),
703 _(
"Open the Schematic Setup... dialog" ) );
708 menu.Append( ID_EDIT_CONNECTION_GRID,
709 _(
"Edit connection grid spacing..." ),
710 _(
"Open the Schematic Setup... dialog" ) );
713 bool modified =
false;
714 int command = GetPopupMenuSelectionFromUser( menu );
718 case ID_EDIT_EXCLUSION_COMMENT:
722 marker->GetComment(),
true );
727 marker->SetExcluded(
true, dlg.
GetValue() );
730 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
736 case ID_REMOVE_EXCLUSION:
739 marker->SetExcluded(
false );
743 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
749 case ID_ADD_EXCLUSION:
750 case ID_ADD_EXCLUSION_WITH_COMMENT:
755 if( command == ID_ADD_EXCLUSION_WITH_COMMENT )
758 wxEmptyString,
true );
766 marker->SetExcluded(
true, comment );
772 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
774 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->DeleteCurrentItem(
false );
781 case ID_INSPECT_VIOLATION:
785 case ID_SET_SEVERITY_TO_ERROR:
792 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
801 case ID_SET_SEVERITY_TO_WARNING:
808 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
817 case ID_SET_SEVERITY_TO_IGNORE:
826 listItem.SetText( wxT(
" • " ) + rcItem->GetErrorText() );
827 listItem.SetData( rcItem->GetErrorCode() );
844 case ID_EDIT_PIN_CONFLICT_MAP:
848 case ID_EDIT_SEVERITIES:
852 case ID_EDIT_CONNECTION_GRID:
869 int errorCode = (int) event.m_item.GetData();
876 menu.Check( settings.
GetSeverity( errorCode ), true );
878 int severity = GetPopupMenuSelectionFromUser( menu );
882 if( settings.
GetSeverity( errorCode ) != severity )
945 if( marker !=
nullptr )
984 if( aEvent.GetEventObject() ==
m_showAll )
993 if( aEvent.IsChecked() )
995 else if( aEvent.GetEventObject() ==
m_showAll )
1027 wxFileDialog dlg(
this,
_(
"Save Report File" ),
Prj().GetProjectPath(), fn.GetFullName(),
1029 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1031 if( dlg.ShowModal() != wxID_OK )
1036 if( fn.GetExt().IsEmpty() )
1039 if( !fn.IsAbsolute() )
1042 fn.MakeAbsolute( prj_path );
1047 bool success =
false;
1056 fn.GetFullPath() ) );
1061 fn.GetFullPath() ) );
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION selectionClear
Clear the current selection.
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 ClearFocus()
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
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
static TOOL_ACTION changeSheet
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 FocusOnItem(EDA_ITEM *aItem) override
Focus on a particular canvas item.
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)
EE_RTREE & Items()
Get 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() override
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