Tagged Questions
1
vote
1answer
40 views
Scrollable text not depending on text length
I'm creating a GUI with a sidebar which has constant width, I want to add a Scrollable text, being the text into a JTextPane, all this into a JPanel PanelList.
Problem is that it will automatically ...
4
votes
1answer
87 views
How to make JScrollPane/JTextPane “Intelligent”
So, i have a situation where, a scrollbar needs to scroll automatically when meets a certain logical situation.
In my case, i have few lines written on JTextPane, and i am highlighting the words.So, ...
1
vote
1answer
112 views
Make JTextPane's Text Move Sideways Instead of a New Line
I am working with the JTextPane and am trying to make the text move sideways instead of a newline like the JTextField. I have tried searching and looking through the JTextPane's API but I haven't ...
1
vote
1answer
90 views
JTextPane is scrolling its parent Scrollpane to the bottom
Here is a littel SSCCE which shows the weird scrolling behaviour. When you start it, it scrolls down to the bottom of the scrollpane. But I want it to stay on top. So far I found out, this only ...
1
vote
2answers
203 views
How to make JTextPane wrapped in JScrollPane shrink to fit the text
I have a JTextPane with HTML text.
I used GroupLayout (using WindowBuilder).
I've set the minimum size of my JFrame to 800x600 so the user cannot make it smaller than that.
The app has a big ...
2
votes
1answer
241 views
JTextPane and keyboard input
I have an intresting problem.
I have a JTextPane inside of a JScrollPane that is poplated with styled text. The text is generated from an external device that is then passed to the StyledDocument (It ...
0
votes
2answers
252 views
How to prevent JScrollPane arrow key handling from moving caret when Scroll Pane wraps Text Pane
I have the following requirements:
I need a scrollable JTextPane. The user may type into this text pane, or text may be inserted into it that is not typed by the user. Think something like an IM ...
0
votes
1answer
123 views
Adding a JTextPane to BorderLayout.SOUTH causes JScrollPane to scroll
I have a JPanel which is contained within a JScrollPane. The JPanel has components added to it's NORTH, CENTER, WEST and SOUTH areas (BorderLayout).
When I add a JTextPane to the SOUTH position, ...
2
votes
2answers
92 views
JScrollPane hides the JTextPane
![enter image description here][1]I have following structure
JFrame
JPanel
JScrollPane
class that extends JTextPane
After Adding long text JScrollPane hides the JTextPane.
I'm using ...
2
votes
2answers
255 views
map in a JFrame using url
I'm trying to add a google-map in my frame, I read here that the best way is opening an URL, so, I did:
JTextPane myMap = new JTextPane();
JScrollPane scroll = new JScrollPane();
...
2
votes
2answers
52 views
JTextPane liveness
My Swing application prints lines of text to a JTextPane inside of a JScrollPane when a JButton is pressed. For quick operations there is no issue. However, some JButtons invoke operations that may ...
1
vote
2answers
186 views
is JTextPane an acceptable client of JScrollPane?
I have JTextArea working with scroll bars provided by JScrollPane. Following that pattern I have not been able to get JTextPane to show up with scroll bars.
Essentially I attach text to the ...
2
votes
2answers
371 views
How do I center the Caret position of a JTextPane by autoscrolling?
I would like to auto scroll in my JTextPane so that the line with the caret (which is highlighted) is centered.
I am highlighting the line by using the Utilities.getRow(...caretPosition) method.
Seems ...
0
votes
3answers
3k views
Java JTextPane JScrollPane Display Issue
The following class implements a chatGUI. When it runs okay the screen looks like this:
The problem is very often when i enter text of large length ie. 50 - 100 chars the gui goes crazy. the chat ...
1
vote
3answers
4k views
Java Simple Chat Box
I am trying to create a very simple chat window that simply has the ability to display some text, which I add to from time to time. However I get the following run time error when attempting to ...
2
votes
2answers
2k 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 wheel to scroll over ...
