Hey @all,
did anybody know a way how i can show tooltips like in Qt Creator?
Which means for example a function with the currently highlighted parameter and also overloaded functions.
Best Regards
NoRulez
Printable View
Hey @all,
did anybody know a way how i can show tooltips like in Qt Creator?
Which means for example a function with the currently highlighted parameter and also overloaded functions.
Best Regards
NoRulez
Code:
QToolTip::showText(event->pos(), "void setCaseSensitivity(<b>Qt::CaseSensitivity caseSensitivity</b>)");
Where event->pos() is the position where some event occured.
Or is this not what you ask? If so, what do you want?