You Are Here:

Community: Wiki

This page was last modified on 31 October 2009, at 16:00.

Show tool tips in Qt for Symbian

From Forum Nokia Wiki

(Redirected from Show tool tips in Qt)
Reviewer Approved   


ID ... Creation date June 15, 2009
Platform S60 3rd Edition, FP1, FP2
S60 5th Edition
Tested on devices Nokia N79
Category Qt for Symbian Subcategory UI


Keywords (APIs, classes, methods, functions): QToolTip::showText()

Overview

This code snippets shows how to show tool tips in widget. 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.

This snippet can be self-signed. As it does not use any API which require developer/certified signing.

Preconditions

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..

Image:ToolTip.JPG

External links

Code Example

  • The Code Example will show tool tips at given postion and is tested on Nokia N79.

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fTalkE3aE4cargeE5fscreenE5fsaverX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ