I'm writing a chrome plugin and I have to track the move and resize event of chrome, so I open a display by XOpenDisplay(NULL), and use XSelectInput to select the StructureNotifyMask event.
But the problem is that I cannot receive any event if I call XSelectInput in the thread calling NPP_SetWindow, however, if I call that function in a newly created thread, events could be captured.
Why can't I call XSelectInput in the main thread?
Thank you every much.