KiCad PCB EDA Suite
|
A wrapper for reporting to a wx HTML window. More...
#include <wx_html_report_panel.h>
Public Types | |
enum | LOCATION { LOC_HEAD = 0 , LOC_BODY , LOC_TAIL } |
Location where the message is to be reported. More... | |
Public Member Functions | |
WX_HTML_PANEL_REPORTER (WX_HTML_REPORT_PANEL *aPanel) | |
virtual | ~WX_HTML_PANEL_REPORTER () |
REPORTER & | Report (const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override |
Report a string with a given severity. | |
REPORTER & | ReportTail (const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override |
Places the report at the end of the list, for objects that support report ordering. | |
REPORTER & | ReportHead (const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override |
Places the report at the beginning of the list for objects that support ordering. | |
bool | HasMessage () const override |
Returns true if the reporter client is non-empty. | |
bool | HasMessageOfSeverity (int aSeverityMask) const override |
Returns true if the reporter has one or more messages matching the specified severity mask. | |
REPORTER & | Report (const char *aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) |
REPORTER & | operator<< (const wxString &aText) |
virtual EDA_UNITS | GetUnits () const |
virtual void | Clear () |
Private Attributes | |
WX_HTML_REPORT_PANEL * | m_panel |
int | m_severityMask |
A wrapper for reporting to a wx HTML window.
Definition at line 35 of file wx_html_report_panel.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 88 of file reporter.h.
|
inline |
Definition at line 38 of file wx_html_report_panel.h.
|
inlinevirtual |
Definition at line 43 of file wx_html_report_panel.h.
|
inlinevirtualinherited |
Reimplemented in WX_HTML_REPORT_BOX, and WX_STRING_REPORTER.
Definition at line 150 of file reporter.h.
Referenced by WX_HTML_REPORT_BOX::Clear(), WX_STRING_REPORTER::Clear(), and SCH_PLOTTER::createPlotFileName().
|
inlinevirtualinherited |
Reimplemented in WX_HTML_REPORT_BOX.
Definition at line 145 of file reporter.h.
|
overridevirtual |
Returns true if the reporter client is non-empty.
Implements REPORTER.
Definition at line 503 of file wx_html_report_panel.cpp.
References HasMessageOfSeverity(), RPT_SEVERITY_ERROR, and RPT_SEVERITY_WARNING.
|
overridevirtual |
Returns true if the reporter has one or more messages matching the specified severity mask.
Reimplemented from REPORTER.
Definition at line 510 of file wx_html_report_panel.cpp.
References WX_HTML_REPORT_PANEL::Count(), and m_panel.
Referenced by HasMessage().
|
inlineinherited |
Definition at line 129 of file reporter.h.
|
inherited |
Definition at line 49 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 |
Reimplemented from REPORTER.
Definition at line 467 of file wx_html_report_panel.cpp.
References m_panel, WX_HTML_REPORT_PANEL::Report(), and REPORTER::Report().
|
overridevirtual |
Places the report at the beginning of the list for objects that support ordering.
Reimplemented from REPORTER.
Definition at line 491 of file wx_html_report_panel.cpp.
References REPORTER::LOC_HEAD, m_panel, WX_HTML_REPORT_PANEL::Report(), and REPORTER::ReportHead().
|
overridevirtual |
Places the report at the end of the list, for objects that support report ordering.
Reimplemented from REPORTER.
Definition at line 479 of file wx_html_report_panel.cpp.
References REPORTER::LOC_TAIL, m_panel, WX_HTML_REPORT_PANEL::Report(), and REPORTER::ReportTail().
|
private |
Definition at line 57 of file wx_html_report_panel.h.
Referenced by HasMessageOfSeverity(), Report(), ReportHead(), and ReportTail().
|
privateinherited |
Definition at line 156 of file reporter.h.