47#include <wx/filedlg.h>
48#include <wx/hyperlink.h>
73 m_markerTreeModel( nullptr ),
76 m_centerMarkerOnIdle( nullptr ),
107 { wxID_CANCEL,
_(
"Close" ) } } );
141 wxASSERT( settings );
157 wxHyperlinkCtrl* button =
new wxHyperlinkCtrl(
m_infoBar, wxID_ANY,
158 _(
"Show Annotation dialog" ),
161 button->Bind( wxEVT_COMMAND_HYPERLINK, std::function<
void( wxHyperlinkEvent& aEvent )>(
162 [&]( wxHyperlinkEvent& aEvent )
164 wxHtmlLinkEvent htmlEvent( aEvent.GetId(),
165 wxHtmlLinkInfo( aEvent.GetURL() ) );
172 "ERC results will be incomplete." ) );
230 bool markersOverflowed =
false;
239 num.Printf( markersOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numMarkers );
245 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
258 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
294 bool includeExclusions =
false;
300 if( numExcluded > 0 )
302 wxMessageDialog dlg(
this,
_(
"Delete exclusions too?" ),
_(
"Delete All Markers" ),
303 wxYES_NO | wxCANCEL | wxCENTER | wxICON_QUESTION );
304 dlg.SetYesNoLabels(
_(
"Errors and Warnings Only" ),
305 _(
"Errors, Warnings and Exclusions" ) );
307 int ret = dlg.ShowModal();
309 if( ret == wxID_CANCEL )
311 else if( ret == wxID_NO )
312 includeExclusions =
true;
344 wxCommandEvent* evt =
new wxCommandEvent( EDA_EVT_CLOSE_ERC_DIALOG, wxID_ANY );
346 wxWindow* parent = GetParent();
349 wxQueueEvent( parent, evt );
370 wxCommandEvent
dummy;
389 for( std::reference_wrapper<RC_ITEM>& item : violations )
394 wxT(
" • " ) + item.get().GetErrorText() );
419 ercItem->SetErrorMessage( aMsg );
424 ercItem->SetItems( aItemA->
GetSymbol() );
432 if( itemsNotAnnotated )
511 else if( item && item->
GetClass() != wxT(
"DELETED_SHEET_ITEM" ) )
518 std::shared_ptr<ERC_ITEM> ercItem =
519 std::static_pointer_cast<ERC_ITEM>( node->
m_RcItem );
523 if( ercItem->IsSheetSpecific() )
524 sheet = ercItem->GetSpecificSheetPath();
527 if( ercItem->MainItemHasSheetPath() )
528 sheet = ercItem->GetMainItemSheetPath();
531 if( ercItem->AuxItemHasSheetPath() )
532 sheet = ercItem->GetAuxItemSheetPath();
561 if( aEvent.GetItem().IsOk() )
582 std::shared_ptr<RC_ITEM> rcItem = node->
m_RcItem;
586 switch( settings.
GetSeverity( rcItem->GetErrorCode() ) )
590 default: listName =
_(
"appropriate" );
break;
593 if( rcItem->GetParent()->IsExcluded() )
595 menu.Append( 1,
_(
"Remove exclusion for this violation" ),
596 wxString::Format(
_(
"It will be placed back in the %s list" ), listName ) );
600 menu.Append( 2,
_(
"Exclude this violation" ),
601 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
604 menu.AppendSeparator();
613 menu.Append( 4, wxString::Format(
_(
"Change severity to Error for all '%s' violations" ),
614 rcItem->GetErrorText() ),
615 _(
"Violation severities can also be edited in the Schematic Setup... dialog" ) );
619 menu.Append( 5, wxString::Format(
_(
"Change severity to Warning for all '%s' violations" ),
620 rcItem->GetErrorText() ),
621 _(
"Violation severities can also be edited in the Schematic Setup... dialog" ) );
624 menu.Append( 6, wxString::Format(
_(
"Ignore all '%s' violations" ), rcItem->GetErrorText() ),
625 _(
"Violations will not be checked or reported" ) );
627 menu.AppendSeparator();
632 menu.Append( 7,
_(
"Edit pin-to-pin conflict map..." ) );
636 menu.Append( 8,
_(
"Edit violation severities..." ),
637 _(
"Open the Schematic Setup... dialog" ) );
640 bool modified =
false;
642 switch( GetPopupMenuSelectionFromUser( menu ) )
654 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
671 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->ValueChanged( node );
673 static_cast<RC_TREE_MODEL*
>( aEvent.GetModel() )->DeleteCurrentItem(
false );
687 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
703 if( marker->
GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
797 if( marker !=
nullptr )
836 if( aEvent.GetEventObject() ==
m_showAll )
845 if( aEvent.IsChecked() )
847 else if( aEvent.GetEventObject() ==
m_showAll )
875 wxFileDialog dlg(
this,
_(
"Save Report to File" ),
Prj().GetProjectPath(), fn.GetFullName(),
877 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
879 if( dlg.ShowModal() != wxID_OK )
884 if( fn.GetExt().IsEmpty() )
887 if( !fn.IsAbsolute() )
890 fn.MakeAbsolute( prj_path );
895 bool success =
false;
904 fn.GetFullPath() ) );
908 DisplayError(
this, wxString::Format(
_(
"Failed to create file '%s'." ),
909 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.
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)
bool WriteTextReport(const wxString &aFullFileName)
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, 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.
std::shared_ptr< RC_ITEM > GetRCItem() const
void SetExcluded(bool aExcluded)
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 Update(std::shared_ptr< RC_ITEMS_PROVIDER > aProvider, int aSeverities)
void DeleteItems(bool aCurrentOnly, bool aIncludeExclusions, bool aDeep)
Deletes the current item or all items.
void DeleteCurrentItem(bool aDeep)
void CenterMarker(const MARKER_BASE *aMarker)
static KIID ToUUID(wxDataViewItem aItem)
void ValueChanged(const RC_TREE_NODE *aNode)
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_SHEET_LIST GetSheets() const override
Builds and returns an updated schematic hierarchy TODO: can this be cached?
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
void OnAnnotate(wxCommandEvent &event)
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,...
virtual 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::TYPEMARKER aMarkerTyp, int aErrorCode, bool aIncludeExclusions=true)
Delete all markers of a particular type and error code.
void DeleteAllMarkers(enum MARKER_BASE::TYPEMARKER 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()
Gets the full RTree, usually for iterating.
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
Fetch a SCH_ITEM by ID.
void AnnotatePowerSymbols()
Silently annotate the not yet annotated power symbols of the entire hierarchy of the sheet path list.
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.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
This file is part of the common library.
static int RPT_SEVERITY_ALL
static std::vector< wxString > g_lastERCIgnored
static int DEFAULT_SINGLE_COL_WIDTH
wxDEFINE_EVENT(EDA_EVT_CLOSE_ERC_DIALOG, wxCommandEvent)
static SCHEMATIC * g_lastERCSchematic
#define DIALOG_ERC_WINDOW_NAME
static int DEFAULT_SINGLE_COL_WIDTH
@ ERCE_PIN_TO_PIN_WARNING
const std::string JsonFileExtension
const std::string ReportFileExtension
wxString ReportFileWildcard()
wxString JsonFileWildcard()
std::vector< FAB_LAYER_COLOR > dummy
Definition of file extensions used in Kicad.
static int RPT_SEVERITY_ALL