vote up 3 vote down star
1

I have a list of Objects (the model) that are constantly appended to (similar to a log file) and I'd like to display as rich text in a JEditorPane (the view). How can I glue them together?

http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html#document doesn't seem to give enough information to use.

flag

76% accept rate
What class(es) are used as Objects (model) ? – ksuralta Mar 13 at 10:09
I have a Vector of proprietary objects - each containing a String plus other information. Ideally some sort of custom renderer would style and append to the text pane but I can't figure out how to hang it together. – The Feast Mar 13 at 12:30

4 Answers

vote up 1 vote down check

You can use DefaultStyledDocument together with AttributeSet:

SimpleAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setBold(attr , true);
StyleConstants.setForeground(attr, Color.RED); 
document.insertString(document.getLenght(),"yourstring", attr))
link|flag
vote up 2 vote down

One simple solution would be to convert each object in the model to HTML and append the strings to create an HTML document that can be set on the JEditorPane.

link|flag
Yes, this would be the simplest solution but I wanted to rerender the data when a user wished to change their color scheme or filter the data. I guess the whole data could be re-appended after any event. – The Feast Mar 13 at 12:32
If that is the case I think you might be better using a JTable. It would be easier to make a TableModel for your objects than try to make a Document. You could then apply filters to your table model and change table renederer settings for color etc. – Mark Mar 13 at 13:09
vote up 0 vote down

Building a custom Abstract Document is painful. You're better off with an intermediary model that listens to changes in both your Object Model and the document (with a DocumentListener) and updates either the model or view, depending. This works pretty well if you're working in user time (as opposed to updating the Object model 1,000 times per second).

link|flag
The way I understand it - models for Editor Panes must be Documents. If you do not implement Document how can your custom model be added? – The Feast Mar 13 at 11:52
I meant to use one of the standard StyleDocuments and just manipulate text and and attributes. – Mike Katz Mar 14 at 14:08
vote up 0 vote down

OK, so the simplest approach was to extend JTextPane. The extended class created and managed the underlying list. On format change (eg new colours) the list completely reformats the data. The only real problem was that the auto-scrolling is not 100% reliable, Both:

Container parent = getParent();

// get the parent until scroll pane is found
while (parent != null && !(parent instanceof JScrollPane)) {
    parent = parent.getParent();
}

if (parent != null) {
    JScrollPane scrollPane = (JScrollPane)parent;
    scrollPane.getVerticalScrollBar().setValue(scrollPane.getVerticalScrollBar().getMaximum());
}

and

scrollRectToVisible(new Rectangle(0, getHeight() - 2, 1, 1));

Provide inconsistent results with the text pane sometimes not scrolling all the way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.