vote up 0 vote down star

How do I get the window (wxDC or window id) on a certain point (like get window at point(10,20)) using wxWidgets or XCB? ~ Thanks

flag

1 Answer

vote up 1 vote down

Check these functions:

::wxFindWindowAtPoint    
::wxFindWindowAtPointer
link|flag
Those methods do not seem to work for windows besides the window the code is hosted on... like i have: [CODE] void MyFrame::OnGetWindowClick(wxCommandEvent& WXUNUSED(event)) { wxThread::Sleep(619); wxPoint pt = wxGetMousePosition(); wxWindow* winpt = wxFindWindowAtPointer(pt); std::cout << "px=" << pt.x << std::endl; std::cout << "window=" << winpt->GetId() << std::endl; } [/CODE] And I get the window ID of the current hello world window (which gives me 2006) and then the label is returned blank. For all other windows it says Segmentation Failed, because the windows returned are NULL... – mail_321 Nov 24 at 0:50
You didn't say in your question that you want to get id or device context from any window. WxWidgets application holds info only about objects created by itself. I don't think it can be done by wxWidgets and its documented functions and methods. Try to use native API functions. MS Windows API has a function called WindowFromPoint, which does what you want, but it returns HWND of the target window. You must use this handle to obtain other information about target window. – Wacek Nov 24 at 7:39
What is the native API function in Linux? – mail_321 Nov 24 at 15:01
Sorry, I have no experience in Linux GUI programming. Maybe you should check the wxWidgets source code, especially the Linux version of wxWindowFromPoint function. – Wacek Nov 24 at 17:14

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.