Add missing FindCellByPos

This commit is contained in:
Robin Dunn
2017-07-21 21:51:39 -07:00
parent 5df63f100c
commit 85ed13be75

View File

@@ -275,6 +275,17 @@ public:
*/
virtual const wxHtmlCell* Find(int condition, const void* param) const;
/**
Find a cell inside this cell positioned at the given coordinates
(relative to this's positions). Returns NULL if no such cell exists.
The flag can be used to specify whether to look for terminal or
nonterminal cells or both. In either case, returned cell is deepest
cell in cells tree that contains [x,y].
*/
virtual wxHtmlCell *FindCellByPos(wxCoord x, wxCoord y,
unsigned flags = wxHTML_FIND_EXACT) const;
/**
Returns descent value of the cell (m_Descent member).
See explanation: