KiCad PCB EDA Suite
|
A wrapper for reporting to a WX_INFOBAR UI element. More...
#include <wx_infobar.h>
Public Types | |
enum | LOCATION { LOC_HEAD = 0 , LOC_BODY , LOC_TAIL } |
Location where the message is to be reported. More... | |
Public Member Functions | |
INFOBAR_REPORTER (WX_INFOBAR *aInfoBar) | |
virtual | ~INFOBAR_REPORTER () |
REPORTER & | Report (const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override |
Report a string with a given severity. | |
bool | HasMessage () const override |
Returns true if the reporter client is non-empty. | |
void | Finalize () |
Update the infobar with the reported text. | |
REPORTER & | Report (const char *aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) |
virtual REPORTER & | ReportTail (const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) |
Places the report at the end of the list, for objects that support report ordering. | |
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. | |
REPORTER & | operator<< (const wxString &aText) |
virtual bool | HasMessageOfSeverity (int aSeverityMask) const |
Returns true if the reporter has one or more messages matching the specified severity mask. | |
virtual EDA_UNITS | GetUnits () const |
Private Attributes | |
bool | m_messageSet |
WX_INFOBAR * | m_infoBar |
std::unique_ptr< wxString > | m_message |
SEVERITY | m_severity |
A wrapper for reporting to a WX_INFOBAR UI element.
The infobar is not updated until the Finalize()
method is called. That method will queue either a show message or a dismiss event for the infobar - so this reporter is safe to use inside a paint event without causing an infinite paint event loop.
No action is taken if no message is given to the reporter.
Definition at line 318 of file wx_infobar.h.
|
inherited |
Location where the message is to be reported.
LOC_HEAD messages are printed before all others (typically intro messages) LOC_BODY messages are printed in the middle LOC_TAIL messages are printed after all others (typically status messages)
Enumerator | |
---|---|
LOC_HEAD | |
LOC_BODY | |
LOC_TAIL |
Definition at line 80 of file reporter.h.
|
inline |
Definition at line 321 of file wx_infobar.h.
|
inlinevirtual |
Definition at line 327 of file wx_infobar.h.
void INFOBAR_REPORTER::Finalize | ( | ) |
Update the infobar with the reported text.
Definition at line 425 of file wx_infobar.cpp.
References HasMessage(), m_infoBar, m_message, m_messageSet, m_severity, WX_INFOBAR::QueueDismiss(), WX_INFOBAR::QueueShowMessage(), RPT_SEVERITY_ACTION, RPT_SEVERITY_DEBUG, RPT_SEVERITY_ERROR, RPT_SEVERITY_EXCLUSION, RPT_SEVERITY_IGNORE, RPT_SEVERITY_INFO, RPT_SEVERITY_UNDEFINED, and RPT_SEVERITY_WARNING.
Referenced by EDA_3D_CANVAS::DoRePaint(), and DISPLAY_FOOTPRINTS_FRAME::InitDisplay().
|
inlinevirtualinherited |
Reimplemented in WX_HTML_REPORT_BOX.
Definition at line 130 of file reporter.h.
|
overridevirtual |
Returns true if the reporter client is non-empty.
Implements REPORTER.
Definition at line 419 of file wx_infobar.cpp.
References m_message.
Referenced by Finalize().
|
virtualinherited |
Returns true if the reporter has one or more messages matching the specified severity mask.
Reimplemented in WX_HTML_PANEL_REPORTER, and WX_STRING_REPORTER.
Definition at line 53 of file reporter.cpp.
References REPORTER::HasMessage().
Referenced by DIALOG_SIM_MODEL< T >::loadLibrary(), NETLIST_EXPORTER_SPICE::ReadSchematicAndLibraries(), and SIM_LIB_MGR::SetLibrary().
|
inlineinherited |
Definition at line 117 of file reporter.h.
|
inherited |
Definition at line 46 of file reporter.cpp.
References From_UTF8(), and REPORTER::Report().
|
overridevirtual |
Report a string with a given severity.
aText | is the string to report. |
aSeverity | is an indicator ( RPT_UNDEFINED, RPT_INFO, RPT_WARNING, RPT_ERROR, RPT_ACTION ) used to filter and format messages |
Implements REPORTER.
Definition at line 409 of file wx_infobar.cpp.
References m_message, m_messageSet, and m_severity.
Referenced by EDA_3D_CANVAS::DoRePaint().
|
inlinevirtualinherited |
Places the report at the beginning of the list for objects that support ordering.
Reimplemented in WX_HTML_PANEL_REPORTER.
Definition at line 109 of file reporter.h.
Referenced by BACK_ANNOTATE::applyChangelist(), BACK_ANNOTATE::getPcbModulesFromString(), DIALOG_IMPORT_NETLIST::loadNetlist(), DIALOG_ERC::OnRunERCClick(), BACK_ANNOTATE::processNetNameChange(), DIALOG_EXPORT_NETLIST::TransferDataFromWindow(), and SCH_EDIT_FRAME::WriteNetListFile().
|
inlinevirtualinherited |
Places the report at the end of the list, for objects that support report ordering.
Reimplemented in WX_HTML_PANEL_REPORTER.
Definition at line 100 of file reporter.h.
Referenced by SCH_EDIT_FRAME::AnnotateSymbols(), BACK_ANNOTATE::BackAnnotateSymbols(), BACK_ANNOTATE::checkForUnusedSymbols(), EXCELLON_WRITER::CreateDrillandMapFilesSet(), GERBER_WRITER::CreateDrillandMapFilesSet(), SCH_PLOTTER::createDXFFiles(), SCH_PLOTTER::createHPGLFiles(), SCH_PLOTTER::createPDFFile(), DIALOG_SYMBOL_REMAP::createProjectSymbolLibTable(), SCH_PLOTTER::createPSFiles(), SCH_PLOTTER::createSVGFiles(), BACK_ANNOTATE::getChangeList(), DIALOG_PLOT::Plot(), GERBER_JOBFILE_READER::ReadGerberJobFile(), BOARD_NETLIST_UPDATER::UpdateNetlist(), SCH_SCREEN::UpdateSymbolLinks(), and SCH_EDIT_FRAME::WriteNetListFile().
|
private |
Definition at line 340 of file wx_infobar.h.
Referenced by Finalize().
|
private |
Definition at line 341 of file wx_infobar.h.
Referenced by Finalize(), HasMessage(), and Report().
|
private |
Definition at line 339 of file wx_infobar.h.
Referenced by Finalize(), and Report().
|
private |
Definition at line 342 of file wx_infobar.h.
Referenced by Finalize(), and Report().