> 07.02.2008 10:52, /daf/:
>
[quoted text clipped - 14 lines]
> --
> Stanimir
No,
Because the getToolTipText method is never call.
The only solution I find, it's to catch mouseMove event and
setToolTipText manually.
That is work, but I would like to have a better solution, because this
one can reduce performances of our application.
Daniele Futtorovic - 07 Feb 2008 17:27 GMT
>> 07.02.2008 10:52, /daf/:
>>
[quoted text clipped - 14 lines]
> manually. That is work, but I would like to have a better solution,
> because this one can reduce performances of our application.
getToolTipText doesn't get called if the tooltip hasn't been set to a
value different than null using setToolTipText(String).
For further information, see:
<http://java.sun.com/docs/books/tutorial/uiswing/components/tooltip.html>
DF.
Daniel Pitts - 07 Feb 2008 17:49 GMT
>> 07.02.2008 10:52, /daf/:
>>
[quoted text clipped - 18 lines]
> That is work, but I would like to have a better solution, because this
> one can reduce performances of our application.
Actually, that is how tooltips work.

Signature
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
daf - 11 Feb 2008 10:34 GMT
On 7 fév, 18:49, Daniel Pitts
<newsgroup.spamfil...@virtualinfinity.net> wrote:
> >> 07.02.2008 10:52, /daf/:
>
[quoted text clipped - 23 lines]
> --
> Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Hi,
When I initialize my panel I do a setToolTip("");
But the getToolTip of my children is not called by the system
Daniel Pitts - 11 Feb 2008 15:28 GMT
> On 7 fév, 18:49, Daniel Pitts
> <newsgroup.spamfil...@virtualinfinity.net> wrote:
[quoted text clipped - 25 lines]
> When I initialize my panel I do a setToolTip("");
> But the getToolTip of my children is not called by the system
getToolTip isn't used most of the time. the code in setToolTip fires an
event that notifies Swing that it should do a pop-up.

Signature
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>