Archived:Show tool tips in QWidget app
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
This code snippet shows how to add tool tips to a QWidget. The QToolTip class provides tool tips (balloon help) for any widget. The tip is a short piece of text reminding the user of the widget's function. It is drawn immediately below the given position in a distinctive black-on-yellow color combination. The class QToolTip has static method showText(), which shows tool tips at given position.
Article Metadata
Code Example
Source file: Media:QtToolTip.zip
Tested with
Devices(s): Nokia N79
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Article
Keywords: QToolTip::showText()
Created: savaj
(15 Jun 2009)
Last edited: hamishwillee
(11 Oct 2012)
Contents |
Headers required
#include <QToolTip>Source
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ToolTip w;
w.show();
//Set string that you want to show in tooltip.
QString string("kamlesh sangani");
//Set position of tooltip
QPoint pos(100,160);
//Call method showText() of QToolTip to show tooltip.
QToolTip::showText(pos,string);
return a.exec();
}
Postconditions
The code snippet is expected to show tool tips at given position.
External links
- QToolTip: QToolTip reference
Code Example
- The Code Example will show tool tips at given postion and is tested on Nokia N79.


18 Sep
2009
Nice. Would be even more useful if the tooltip belonged to a custom widget, and set its position relative to that widget.
hamishwillee 04:31, 14 April 2011 (UTC)