| 37 | public: |
| 38 | |
| 39 | HtmlView(wxWindow* parent, MyFrame* myframe, wxWindowID id = wxID_ANY, |
| 40 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
| 41 | long style = wxHW_SCROLLBAR_AUTO | wxWANTS_CHARS) |
| 42 | : wxHtmlWindow(parent, id, pos, size, style) |
| 43 | { |
| 44 | frame = myframe; |
| 45 | panel = (HelpPanel*)parent; |
| 46 | editlink = false; |
| 47 | linkrect = wxRect(0,0,0,0); |
| 48 | inAbout = false; |
| 49 | } |
| 50 | |
| 51 | virtual void OnLinkClicked(const wxHtmlLinkInfo& link); |
| 52 | virtual void OnCellMouseHover(wxHtmlCell* cell, wxCoord x, wxCoord y); |
nothing calls this directly
no outgoing calls
no test coverage detected