RichTextFX icon indicating copy to clipboard operation
RichTextFX copied to clipboard

Rich-text area for JavaFX

Results 102 RichTextFX issues
Sort by recently updated
recently updated
newest added

Visual Studio has an amazing feature that a number of editors including Sublime have begun to pickup and that I am a personal fan of. Specifically when you click in...

enhancement

I am not posting this as an RFE but rather as an inquiry to see if such support is already possible with RTFX to implement easily. In a lot of...

enhancement

I'm using a touchscreen device with no keyboard, and the JavaFX virtual keyboard won't show up when I focus on the CodeArea.

enhancement

I'm filing this issue just to file it, not to try to solve it right now... Currently, `EditableStyledDocument` is a hassle to implement (see Tomas' last few comments in #277)....

enhancement

In tangent with #332, support touch devices by adding caret and selection handles.

enhancement

When focus is set onto the RichtText area and a `MenuBar` is added to the same `Stage`, pressing ALT will cause the `MenuBar` to highlight the first element, yet hitting...

Hi, I know support for bidirectional text is a dropped feature, but could this be implemented? How difficult would this be? I'm not familiar with RichTextFX code yet but I'm...

enhancement

I'm wanting to implement a two-column diff viewer based on RichTextFX's CodeArea; and to do that I need two CodeAreas side-by-side that are scrolled simultaneously. More specifically: - Scrolling either...

I use richtextFx for a json viewer, and try to assemble bracket highlight and fold paragraphs. but I meet a trouble. in ```org.fxmisc.richtext.TextFlowLayout#getLineCount```, when foreach ```flow.getChildren()```, the code ```n.getBoundsInParent()```will call...

demo ```java public class Undefined extends Application { @Override public void start(Stage primaryStage) throws Exception { CodeArea codeArea = new CodeArea(); Button button = new Button("Button"); TextField textField = new...