How to catch event when program is in background?
-
wrote on 25 Aug 2010, 17:49 last edited by
How can we catch event when program run in background?
THanks,
-
wrote on 25 Aug 2010, 20:37 last edited by
This depends heavily on the IPC mechanisms used by the two applications and what you mean by "event".
-
wrote on 17 Sept 2010, 09:51 last edited by
Which events on which OS do you want to catch? From other programs or X events that are received from the X server or something else?
maybe enough reimplement next functions:@bool QCoreApplication::winEventFilter ( MSG * msg, long * result ) [virtual]
bool QApplication::x11EventFilter ( XEvent * event ) [virtual]
bool QApplication::symbianEventFilter ( const QSymbianEvent * event ) [virtual]
bool QApplication::macEventFilter ( EventHandlerCallRef caller, EventRef event ) [virtual]@