In my Qt application, I'd like to use balloons/balloon-tips as shown in the Windows user experience guide (not the system tray balloons).

Is this supported by Qt? I haven't found anything. Is there an Open Source library out there for this (Qxt does not have it)? What's the best way to create that myself?

link|improve this question

To my knowledge there's nothing built into Qt that will do this. I've wanted them before and ended up writing a custom widget from scratch to do it. – Chris Oct 25 '11 at 2:35
Did it work satisfactorily? Would you mind sharing your solution or some ideas? – Sebastian Negraszus Oct 26 '11 at 12:49
feedback

1 Answer

Search for QBalloonTip class (in Qt documentation (doxygen reference) and code base, look how it is implemented, and use similar technique.

link|improve this answer
Except that QBalloonTip is an internal class defined in src/gui/utils/util/qsystemtrayicon_p.h and not part of the public and documented API. – alexisdm Oct 24 '11 at 19:32
2  
Qt 4.7 Assistant does not know this class. A Google search shows this an internal class used by QSystemTrayIcon and not part of the API. Are you sure this is the class I am looking for? – Sebastian Negraszus Oct 24 '11 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.