A Java Swing text component that can be marked up with attributes that are represented graphically.

learn more… | top users | synonyms

3
votes
1answer
66 views

Random erronous highlighted resulted in JTextPane (Arabic)

I'm trying to search and highlight words in my JTextPane. It works wonderfully with words that don't have a lot of results so far but when I try to search for a word that has a lot instances, ...
3
votes
1answer
50 views

Layout trouble within JTextPane

I am sorry for the lack of a better title, but I have no idea how to specify the error further, since I don't understand its nature. Maybe someone can edit it, when the problem is understood. I am ...
-2
votes
1answer
114 views

JTextPane formatting [closed]

I have a JTextPane where I want to add lines and depending on their content have them have a different formatting. Currently I have this StyleContext context = new StyleContext(); StyledDocument ...
2
votes
0answers
57 views

Is text wrapping in JTextPane different in different java versions?

Below is an SSCCE, which wrappes the text on my computer with java version 1.6.0_23, but doesn't on a another computer with java version 1.7.0_17-b02. OS on both: Windows7 64bit If I add some spaces ...
1
vote
1answer
214 views

Java Chat App - Trouble with multiple fonts, inserting smilies & tables

I am making a java chat application. I have already made the basics, & its working fine. Now I wanted to add the ability to change fonts & insert smilies. I also wanted to add a little Time ...
1
vote
1answer
89 views

How do I save an image to a RTF formatted file?

I have a problem, in that I am able to save text to an RTF file, and also able to insert an image to the file, but when I save the file and load it again the image is not displaying. I have tried to ...
0
votes
1answer
72 views

How can I create Log4j 2 appender connected with jTextPane?

I'm currently trying to make Log4j 2 log into a JTextPane. It should act like a STDERR or STDOUT in Netbeans IDE console (incl. text style - color). I know that I need to create an appender and ...
0
votes
1answer
104 views

I got a performance issue when i am using JTextpane as cell Renderer in Jtable for multi line cell wrap Text [closed]

I am using JTextPane as Cell Renderer in JTable for wrapping a cell .Wrapping is working fine in the JTable but I got a performance issue when i am wrapping above 1000+ rows and 8 columns in JTable. ...
0
votes
1answer
114 views

JTextPane make new line

I can make new lines using this code StringBuilder sb = new StringBuilder(); sb.append("<span style=\"color:black\">--------------</span> <br>"); sb.append("<span ...
0
votes
1answer
79 views

How to delete a picture from a JTextPane?

I have a code that makes it possible for a user to insert a picture into his text document. I do have a JtextPane where the user can write some text and insert a picture. But if the picture is ...
0
votes
1answer
63 views

Getting 'Attempt to mutate notification' exception

My goal is to implement blue coloring of keywords written by user into JTextPane. This is how my code look like: private class DocumentHandler implements DocumentListener { @Override ...
0
votes
2answers
53 views

Letters in JTextPane are colored after delay

I have simple text editor which colors JAVA key words blue. This is the code: class MainPanel extends JPanel { private int WIDTH = 800; private int HEIGHT = 500; private JFrame frame; ...
1
vote
2answers
98 views

JTextPane color everything instead of few chars

So Im trying to write simple editor. I want to color gray all chars witch are between " characters. Fragment which does it is: class MainPanel extends JPanel { private int WIDTH = 800; private int ...
0
votes
2answers
90 views

How do I change color of every word in JTextPane?

Every time key is typed i get jpane's characters, split them using spaces and color every word in other (random) color. This fragment of code does the work: private class KeyHandler extends ...
1
vote
2answers
213 views

setContentType(“text/html”) for JTextPane doesn't work as it is expected

When you setContentType("text/html") it is applied only for the text that is set via JTextPane.setText(). All other text, that is put to the JTextPane via styles is "immune" to content type. Here is ...
-3
votes
1answer
118 views

want a java swing tableview example [closed]

We are developing a java Swing application .I want to add a table in a JTextPane, the table can be resized and shoude be support multi-span (row and column).It seems java Swing table view support ...
0
votes
3answers
78 views

How should I display my code inside of my Java program?

I apologize if this question is too "general"; But my question is very specific to what I am programming and I was not able to find a descent answer anywhere else. I am creating a "Proof of Concept" ...
2
votes
1answer
176 views

Changing the size of JTextPane

I am new in Java, and I just found this piece of code in StackOverflow: ResizeTextArea. I want to use JTextPane instead of JTextArea. In JTextPane, there is no setRows() method to change the number ...
0
votes
2answers
45 views

How come I can't use a constructor variable in the rest of my coding?

import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JTextPane; public class Log extends JFrame { private static final long serialVersionUID = 1L; String logx = "LOG: "; ...
2
votes
1answer
125 views

Drag and drop styled text to another JTextPane

Good day to everyone! I'm working on text editor with styles support. And in the application there will be several text editors. I think it will be a good idea to allow drag styled text from one ...
0
votes
1answer
147 views

Write text into a JTextPane with an image background

I have a JTextPane with an image for its background. prevWords = new JTextPane() { public void paint(Graphics g) { BufferedImage img; try { ...
-1
votes
1answer
76 views

How to force JTextPane not to go to next line?

I need to use a JTextPane as a JTextField.my JTextPane goes to new line while the text reaches to its border, but i want it continues the first line and doesn't go to next line. how to do that?
0
votes
1answer
71 views

java how to delete the contents of JTextPane as user types?

I want to delete the contents of my JTextPane as the user types, I mean JTextPane.addKeyListener(new java.awt.event.KeyAdapter() { public void keyTyped(java.awt.event.KeyEvent evt) { ...
1
vote
1answer
101 views

JTextPane won't wrap

I'm trying to get JTextPane to word-wrap. I've searched this site and across the Internet and it seems that JTextPane is supposed to word-wrap by default- most trouble people have is with disabling ...
4
votes
1answer
89 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, ...
0
votes
1answer
144 views

JTextPane with HTML, Why do certain inline style attributes get selectively removed?

I am currently working with a JTextPane with html in it. I set its content type to html and everything worked just fine... or so I thought. The function of the JTextPane is to output paragraphs(with ...
0
votes
1answer
186 views

How can I copy/paste styled text from/to clipboard?

I have I JTextPane and I'm using DefaultStyledDocument as a text model. I currenly use the JTextPane's default copy() and paste() methods for copying and pasting, but as you know they copy/paste plain ...
0
votes
1answer
66 views

JTextPane only shows inserted components in single line

I need to insert numbers of JButtons in a JTextPane. It is done via insertComponent() method. but there is a problem, the components are in a line and JScrollPane doesn't scroll neither vertically nor ...
0
votes
0answers
30 views

How to make a JTextPane with only 1 row? [duplicate]

Possible Duplicate: JtextPane of one Line as it's impossible to change the color of words in a JTextField I decided to use a JTextPane instead. now I need to make my JTextPane just like a ...
-5
votes
1answer
110 views

creating a wordpad like application in java

i've trying to create a wordpad like application, i want to be able to insert a resizable component or picture in a JTextPane or JEditorPane along side the text that can be typed in it. Please guys i ...
8
votes
2answers
403 views

How to change the color of specific words in a JTextPane?

How do I change the color of specific words in a JTextPane just while the user is typing? Should I override JTextPane paintComponent method?
4
votes
1answer
184 views

Alloy Look and Feel and Anti-Aliasing

Anyone here using the Alloy Look and Feel? I'm facing a strange bug with anti-aliasing and JTextComponents. Alloy by default does not use anti-aliasing at all, so I have to force it by creating my own ...
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 ...
0
votes
0answers
179 views

Problems rendering markdown formatting in JTextPane

I'm making a simple markdown text editor with Swing which can render markdown formatting live in its main JTextPane. That is, markdown-formatted text like *hello* is displayed in italics once ...
1
vote
1answer
94 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
91 views

How to disable copy and paste of particular words in JTextPane?

I am using a JTextPane in my project, where i add some tags through code like [PKG MEDIA] etc. I want to restrict user to copy and paste them in JTextPane.
0
votes
1answer
91 views

Designing chat layout with Swing

I am trying to design a chat UI with Swing, but I am too dumb to figure out how to do proper indentation for the message portion. Here's an example of what I'm after: Here's what I just hacked ...
1
vote
2answers
104 views

Highlight first line in JTextPane

My Text file contains these contents: public class MyC{ public void MyMethod() { System.out.println("My method has been accessed"); System.out.println("hi"); } } I want to underline the ...
1
vote
2answers
73 views

Why does getDocumentFilter need to cast to AbstractDocument?

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package texteditor; import javax.swing.*; import javax.swing.text.*; import javax.swing.event.*; ...
1
vote
2answers
127 views

JTextPane is not wrapping text

I am running into one weird problem. I have a JtextPane inside a JscrollPane which is showing large string in term of distribution list and it is properly wrapping code when I am running the program ...
1
vote
2answers
176 views

how to make some text not editable by user in Jtextpane?

I am using Jtextpane in my application. I required to add some tags like [PKG-MEDIA] in jtextpane. I want user to not edit this tag, while he can edit other text in jtextpane. public static void ...
1
vote
3answers
233 views

Change specific String attributes in StyledDocument

I am trying to create a text editor. I am using a JTextPane with a StyledDocument. What I am trying to implement is a way to change the attributes of selected text. This works in the following way : ...
1
vote
1answer
363 views

Remove JTextPane's white background without setOpaque() over a translucent JFrame

I have a Java code where I implemented a translucent JPanel with an image drawn on it with Graphics 2D. This image is a PNG that includes a white rectangle, 80% opaque, all over the JFrame. Now I need ...
0
votes
1answer
43 views

Show stopwatch in JTextPane

I want to put my stopwatch to JTextPane in JPanel, but it doesn't appear :/ I don't know if I can put objetct from class (extends JLabel) in class (extends JPanel). Maybe, this is the reason. My ...
0
votes
1answer
158 views

Multi line label/area/pane in Java with Justified text [closed]

I have an interesting task. Consider a String contentwith unknown length. I'd like to display content with a Font font with Justified text. I need to know what height this would take up if I specify ...
0
votes
1answer
51 views

Why does viewToModel return the position of the last char even if mouse is not over text?

I have a JTextPane and using a MouseAdapter I need to get the position ofthe char that is clicked on. Using viewToModel does return the wanted position when I click directly over chars, however, it ...
-1
votes
1answer
157 views

JTextPane highlight multiple words

I'm trying to highlight multiple words in jTextPane but with no luck. So far I made this: Highlighter h = jTextPane1.getHighlighter(); h.removeAllHighlights(); String text = ...
2
votes
2answers
176 views

KeyEvent issue on JTextArea

I am new to GUI programming. While practicing KeyEvent handling on Java Swing JTextarea I face one problem. The listener interface is implemented by text area itself. When I pressed VK_ENTER key in ...
2
votes
2answers
225 views

Write Indian regional languages like Gujrati, Punjabit etc. in JTextPane

I am able to write Hindi, Urdu in JTextPane, but not able to write other Indian regional languages in text pane. I have also downloaded the font for these languages, but it doesn't work. How to write ...
2
votes
1answer
59 views

How to get the height of the entered text in a JTextPane?

Is there a possible way to get the height of an entered text in a JTextPane? Pixels would be great but any value that can represent it would do. For example I have entered in the JTextPane this: ...

1 2 3 4 5 9