Just set the tool tip property of each widget (QWidget::setToolTip()) you add to the status bar and Qt will handle them for you.
Just set the tool tip property of each widget (QWidget::setToolTip()) you add to the status bar and Qt will handle them for you.
Great! It worked, and it was much easier than I thought. I only needed to type correctly "setToolTip" (instead of "setWhatsThis" in my first try) in the declaration of the hints:
Thanks!st_1->setToolTip("Info left");
...
st_2->setToolTip("Info middle");
...
st_3->setToolTip("Info right");
Bookmarks