Document wxWindow::HitTest().
This is not a very useful method, but by providing at least some documentation for it, we prevent it from inheriting the docs for the next method, which have nothing to do with it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7cccbaa15e
commit
b49d49435d
1 changed files with 12 additions and 0 deletions
|
|
@ -3259,7 +3259,19 @@ public:
|
|||
*/
|
||||
//@{
|
||||
|
||||
/**
|
||||
Return where the given point lies, exactly.
|
||||
|
||||
This method is used to test whether the point lies inside the client
|
||||
window area or on one of its scrollbars.
|
||||
|
||||
The point coordinates are specified in client window coordinates.
|
||||
*/
|
||||
wxHitTest HitTest(wxCoord x, wxCoord y) const;
|
||||
|
||||
/**
|
||||
@overload
|
||||
*/
|
||||
wxHitTest HitTest(const wxPoint& pt) const;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue