RichTextFX
RichTextFX copied to clipboard
Rich-text area for JavaFX
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...
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...
I'm using a touchscreen device with no keyboard, and the JavaFX virtual keyboard won't show up when I focus on the CodeArea.
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)....
In tangent with #332, support touch devices by adding caret and selection handles.
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...
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...