I'm trying to display tooltips in Java which may or may not be paragraph-length. How can I word-wrap long tooltips?
|
|
If you wrap the tooltip in Or you can use the JMultiLineToolTip class that can be found many places on the net, including http://www.koders.com/java/fid382BADA00DA8844CAE0AC4FE16FCFE99ECD99033.aspx?s=140 |
||||
|
Tooltip text which starts with " You can override JComponent.createTooltip to replace the tooltip with your own component which can display whatevee you like. |
||||
|
|
|
Use HTML tooltips and manually break your lines (a simple word tokenizer with a fixed line length should do it). Just make sure your tooltop text starts with "<HTML>". Break lines with "<BR/>" or "<P>". I realize it's not the most clean solution and Java's HTML support is horrible, but it should get things done. |
|||
|
|
|
You can subclass JToolTip, which is a Component, and override createToolTip() on the component. |
|||
|
|
|
Example:
|
|||
|
This could be improved somewhat, but my approach was a helper function called before setting tooltip that split the tooltip text at provided length, but adjusted to break words on space where possible.
Use like
|
|||
|
|
|
Here is a version which I have used before, it works well if you are loading your tool tips from ResourceBundles:
And you would use it by calling this method, before your UI is created:
Then in your properties files just insert newlines to wrap your tool tips as desired. |
|||
|
|