How to capture keyboard events in Photon 1.13, when a window has no focus or
even is not displayed?
Vaxon wrote:
How to capture keyboard events in Photon 1.13, when a window has no focus or
even is not displayed?
by default only windows with focus get keyboard event. if window wants to
capture keyboard event which does not have focus, you can create a
separate transparent region which is sensitive and opaque to Ph_EV_KEY
event. this will make the transparent region capture all the keyboard
event.
after capturing keyboard event re-emit the same event to the window in
question. for re-emitting event use PhEventEmit() function. set PhEvent_t
collector member to window region of destination window. and processing
flag of PhEvent_t to Ph_EVENT_DIRECT.
sameer
Thanx, sam.