org.fxmisc.richtext.CodeArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of richtextfx Show documentation
Show all versions of richtextfx Show documentation
Rich-text area for JavaFX
package org.fxmisc.richtext;
/**
* A convenience subclass of {@link StyleClassedTextArea}
* with fixed-width font and an undo manager that observes
* only plain text changes (not styled changes).
*/
public class CodeArea extends StyleClassedTextArea {
{
getStyleClass().add("code-area");
// load the default style that defines a fixed-width font
getStylesheets().add(CodeArea.class.getResource("code-area.css").toExternalForm());
// don't apply preceding style to typed text
setUseInitialStyleForInsertion(true);
}
public CodeArea() {
super(false);
}
/**
* Creates a text area with initial text content.
* Initial caret position is set at the beginning of text content.
*
* @param text Initial text content.
*/
public CodeArea(String text) {
this();
appendText(text);
getUndoManager().forgetHistory();
getUndoManager().mark();
// position the caret at the beginning
selectRange(0, 0);
}
}