I need to display some text (lots of text) in a window. The text must be scrollable, and it should be modified on each window resize operation.
I can't use JTextPane or any other Swing/AWT component that perfomes automatic formatting.
So I have decided to use JLabel. I can drop HTMLed text into it, and that's great, but so far I haven't found a way to scroll the text.
Also, I need to cut looong words (that don't fit into a line) so I need to be notified when the window is resized. How do I do that?
Please help.
I can't use JTextPane or any other Swing/AWT component that perfomes automatic formatting.
So I have decided to use JLabel. I can drop HTMLed text into it, and that's great, but so far I haven't found a way to scroll the text.
Also, I need to cut looong words (that don't fit into a line) so I need to be notified when the window is resized. How do I do that?
Please help.