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 |
Private Attributes | |
WX_HTML_REPORT_PANEL * | m_panel |
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 80 of file reporter.h.
|
inline |
Definition at line 38 of file wx_html_report_panel.h.
|
inlinevirtual |
Definition at line 40 of file wx_html_report_panel.h.
|
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 495 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 502 of file wx_html_report_panel.cpp.
References WX_HTML_REPORT_PANEL::Count(), and m_panel.
Referenced by HasMessage().
|
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 465 of file wx_html_report_panel.cpp.
References m_panel, and WX_HTML_REPORT_PANEL::Report().
|
overridevirtual |
Places the report at the beginning of the list for objects that support ordering.
Reimplemented from REPORTER.
Definition at line 485 of file wx_html_report_panel.cpp.
References REPORTER::LOC_HEAD, m_panel, and WX_HTML_REPORT_PANEL::Report().
|
overridevirtual |
Places the report at the end of the list, for objects that support report ordering.
Reimplemented from REPORTER.
Definition at line 475 of file wx_html_report_panel.cpp.
References REPORTER::LOC_TAIL, m_panel, and WX_HTML_REPORT_PANEL::Report().
|
private |
Definition at line 54 of file wx_html_report_panel.h.
Referenced by HasMessageOfSeverity(), Report(), ReportHead(), and ReportTail().