bool x11EventFilter(XEvent *pEv) { if (pEv->type == PropertyNotify && pEv->xproperty.state == PropertyNewValue) x11PropertyNotify(pEv->xproperty.window); return QApplication::x11EventFilter(pEv); }
bool x11EventFilter(XEvent *pEv) { #ifdef CONFIG_XUNIQUE if (pEv->type == PropertyNotify && pEv->xproperty.state == PropertyNewValue) x11PropertyNotify(pEv->xproperty.window); #endif #ifdef CONFIG_VST // Let xevents be processed by VST plugin editors... if (qtractorVstPlugin::x11EventFilter(pEv)) return true; #endif return QApplication::x11EventFilter(pEv); }