[solved]QEvent , is it Possible to handle it in console application with no QObject?
-
No. QEvents are delivered by QApplication to QObjects. See "Events and Filters":http://doc.trolltech.com/latest/eventsandfilters.html.
-
thanks ,
these all functions the QObject is main parameter in it
but I ask to be sure
bool QCoreApplication::notify ( QObject * receiver, QEvent * event )
void QCoreApplication::postEvent ( QObject * receiver, QEvent * event )
void QCoreApplication::postEvent ( QObject * receiver, QEvent * event, int priority )
thanks again