I am emiting a signal from mainwindow to my editor class where my event filter is placed is there any way for enent filter react to Signals
mainwindow:
connect(this, SIGNAL(MidiMessage(QString)),Editor,
SLOT(getMsgfromUi(QString)));
emit MidiMessage(QString::number(message->getStatus()));
my editor class:
bool Editor::eventFilter(QObject *o, QEvent *e)
{
if (e->type()==??signal
}