[Qt-interest] QToolTip delay
Chandru...
sekarwagmare at gmail.com
Fri Jul 3 13:02:21 CEST 2009
show the tooltip by your own ...
QTimer *timer = new QTimer();
connect(timer , SIGNAL(timeout()), this, SLOT(timerOut()));
timer->start(1000);
void Widgets::timerOut()
{
QPoint value2 ;
QString test = "sgkadfsdfsd ..";
QToolTip::showText(value2, test); or QToolTip::hideText();
}
On 7/3/09, Serge <mb0 at km.ru> wrote:
>
> Hi,
>
> is it possible to reduce delay, after which ToolTip is displayed?
>
> when i move and stop cursor over widget with ToolTip, i need to wait
> about 1 sec until tool tip will appear. Is it possible to reduce this
> time interval?
>
>
> --
> Serge
> _______________________________________________
> Qt-interest mailing list
> Qt-interest at trolltech.com
> http://lists.trolltech.com/mailman/listinfo/qt-interest
>
--
WAGMARE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt-project.org/pipermail/qt-interest-old/attachments/20090703/75cb197b/attachment.html
More information about the Qt-interest-old
mailing list