1
vote
2answers
203 views
JTextPane prevents scrolling in the parent JScrollPane
I have the following "tree" of objects:
JPanel
JScrollPane
JPanel
JPanel
JScrollPane
JTextPane
When using the mouse w …
0
votes
1answer
62 views
How to copy styled text in JTextPane
I'm trying to create a WYSIWYG editor using JTextPane.
I'm using DefaultEditorKit.CopyAction to copy text in the editor. But this method does not preserve the style of the text. C …
0
votes
2answers
100 views
HTML JTextPane newline support
I'm using a JTextPane to edit HTML. When I enter newlines in the GUI component and call getText() on the JTextPane, I get a string with newline characters. If I then create a new …
3
votes
2answers
200 views
Make JTextPane adjust height to content
I'm trying to get a JTextPane to adjust its height according to whatever content I feed it. All I can do is to set a fixed height in pixels using Dimension.
How do I make the JTex …
2
votes
2answers
112 views
Changing the background color of a paragraph in JTextPane (Java Swing)
Is it possible to change the background color of a paragraph in Java Swing? I tried to set it using the setParagraphAttributes method (code below) but doesn't seem to work.
St …
1
vote
3answers
42 views
Selection of embedded items in a JTextPane
A JTextPane lets you embed JComponents and images. When you select a section of the document the text is highlighted but the embedded items are not. You can have the embedded compo …
1
vote
1answer
154 views
How to output JTextPane styled contents to HTML, including custom style?
I currently use a JTextPane to allow users to add/edit text. It allows bold/italic/underline (and I plan to allow links in the future). It also allows users to drop buttons in, whi …
2
votes
1answer
61 views
How do I get the style of the selected text in a JTextPane?
I'm trying to create a simple WYSIWYG editor that will allow users to select text and bold/underline/italicise it. Currently the user can select text, right-click it and select bol …
0
votes
1answer
217 views
displaying links in java’s JTextPane without html
I need to take text from a source as plain text and display it in a JTextPane or JEditorPane. The source text is not HTML but will contain URLs between square brackets which need t …
0
votes
2answers
247 views
Increasing the font size of a JTextPane that displays HTML text
Lets say that I have a JTextPane that is showing a HTML document.
I want that, on the press of a button, the font size of the document is increased.
Unfortunately this is not as …
6
votes
5answers
460 views
How do I easily edit the style of the selected text in a JTextPane?
How do I easily edit the style of the selected text in a JTextPane? There doesn't seem to be many resources on this. Even if you can direct me to a good resource on this, I'd great …
5
votes
2answers
293 views
Swing component flickering when updated a lot
Hi, I've got a couple thousand lines of code somewhere and I've noticed that my JTextPane flickers when I update it too much.. I wrote a simplified version here:
import java.awt.* …
0
votes
1answer
110 views
Alternative document structure in JTextPane?
In a JTextPane with a DefaultStyledDocument the document structure (hierarchy of Element objects) ends with a LeafElement that spans all the character of the enclosing paragraph. I …
0
votes
2answers
107 views
JTextPane keeps throwing BadLocation
I have a JFrame that contains a JTextPane. The purpose of this JTextPane is to highlight words as I type them, something along the lines of a programmer's text editor. To accomplis …
1
vote
2answers
548 views
Method that returns the line number for a given JTextPane position?
I'm looking for a method that computes the line number of a given text position in a JTextPane with wrapping enabled.
Example:
This a very very very very very very very very v …
