Hi,
I'm listening to some QWidget, and I'm uinsg installEventFilter!
It's all working and I see event number 43 (QEvent::MetaCall).
how do I get all the meta call details? I want the function name, args etc.

In KeyPress I can do this:

Qt Code:
  1. if (event->type() == QEvent::KeyPress)
  2. QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
To copy to clipboard, switch view to plain text mode 
But what can I do with MetaCall???

THANKS!