|
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 any messages were reported. | |
| 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_reportedSeverityMask |
A wrapper for reporting to a wx HTML window.
Definition at line 33 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 36 of file wx_html_report_panel.h.
References m_panel, and REPORTER::REPORTER().
|
inlinevirtual |
Definition at line 41 of file wx_html_report_panel.h.
|
inlinevirtualinherited |
Reimplemented in TEST_REPORTER, WX_HTML_REPORT_BOX, and WX_STRING_REPORTER.
Definition at line 153 of file reporter.h.
References m_reportedSeverityMask.
Referenced by TEST_REPORTER::Clear(), WX_HTML_REPORT_BOX::Clear(), and WX_STRING_REPORTER::Clear().
|
inlinevirtualinherited |
Reimplemented in WX_HTML_REPORT_BOX.
Definition at line 148 of file reporter.h.
References MM.
Referenced by BOOST_AUTO_TEST_CASE(), and BOOST_AUTO_TEST_CASE().
|
overridevirtual |
Returns true if any messages were reported.
Reimplemented from REPORTER.
Definition at line 421 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 428 of file wx_html_report_panel.cpp.
References m_panel.
Referenced by HasMessage().
|
inlineinherited |
Definition at line 129 of file reporter.h.
References Report(), and REPORTER().
|
inherited |
Definition at line 49 of file reporter.cpp.
References From_UTF8(), Report(), and REPORTER().
|
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 385 of file wx_html_report_panel.cpp.
References m_panel, REPORTER::Report(), and REPORTER::REPORTER().
|
overridevirtual |
Places the report at the beginning of the list for objects that support ordering.
Reimplemented from REPORTER.
Definition at line 409 of file wx_html_report_panel.cpp.
References REPORTER::LOC_HEAD, m_panel, REPORTER::Report(), and REPORTER::REPORTER().
|
overridevirtual |
Places the report at the end of the list, for objects that support report ordering.
Reimplemented from REPORTER.
Definition at line 397 of file wx_html_report_panel.cpp.
References REPORTER::LOC_TAIL, m_panel, REPORTER::Report(), and REPORTER::REPORTER().
|
private |
Definition at line 51 of file wx_html_report_panel.h.
Referenced by HasMessageOfSeverity(), Report(), ReportHead(), ReportTail(), and WX_HTML_PANEL_REPORTER().
|
privateinherited |
Definition at line 159 of file reporter.h.
Referenced by Clear(), HasMessage(), HasMessageOfSeverity(), Report(), and REPORTER().