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:
if (event
->type
() == QEvent::KeyPress) QKeyEvent *keyEvent
= static_cast<QKeyEvent
*>
(event
);
if (event->type() == QEvent::KeyPress)
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
To copy to clipboard, switch view to plain text mode
But what can I do with MetaCall???
THANKS!
Bookmarks