Made wxContextHelp implementation generic and added wxFindWindowAtPointer,
wxGetMousePosition functions git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8280 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2984,9 +2984,25 @@ void wxWindow::ChangeFont(bool keepOriginalSize)
|
||||
wxWindow *wxGetActiveWindow()
|
||||
{
|
||||
// TODO
|
||||
wxFAIL_MSG(_("Not implemented"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Find the wxWindow at the current mouse position, returning the mouse
|
||||
// position.
|
||||
wxWindow* wxFindWindowAtPointer(wxPoint& pt)
|
||||
{
|
||||
wxFAIL_MSG(_("Not implemented"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Get the current mouse position.
|
||||
wxPoint wxGetMousePosition()
|
||||
{
|
||||
wxFAIL_MSG(_("Not implemented"));
|
||||
return wxPoint;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxNoOptimize: switch off size optimization
|
||||
// ----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user