Uses of Class
jfx.incubator.scene.control.richtext.model.StyledTextModel
Packages that use StyledTextModel
Package
Description
Provides two controls for displaying and editing large, virtualized, rich text documents:
RichTextArea
and
CodeArea
.Provides common models for
RichTextArea
and
CodeArea
controls.-
Uses of StyledTextModel in jfx.incubator.scene.control.richtext
Methods in jfx.incubator.scene.control.richtext that return StyledTextModelModifier and TypeMethodDescriptionfinal StyledTextModel
RichTextArea.getModel()
Gets the value of themodel
property.Methods in jfx.incubator.scene.control.richtext that return types with arguments of type StyledTextModelModifier and TypeMethodDescriptionfinal ObjectProperty
<StyledTextModel> RichTextArea.modelProperty()
Determines theStyledTextModel
to use with this RichTextArea.Methods in jfx.incubator.scene.control.richtext with parameters of type StyledTextModelModifier and TypeMethodDescriptionvoid
SelectionModel.extendSelection
(StyledTextModel model, TextPos pos) Extends selection to the specified position.void
SingleSelectionModel.extendSelection
(StyledTextModel model, TextPos pos) final void
RichTextArea.setModel
(StyledTextModel m) Sets the value of themodel
property.void
SelectionModel.setSelection
(StyledTextModel model, TextPos anchor, TextPos caret) Replaced existing selection, if any, with the new one.void
SingleSelectionModel.setSelection
(StyledTextModel model, TextPos anchor, TextPos caret) protected void
RichTextArea.validateModel
(StyledTextModel m) Validates the model property value.Constructors in jfx.incubator.scene.control.richtext with parameters of type StyledTextModelModifierConstructorDescriptionRichTextArea
(StyledTextModel model) Creates the instance using the specified model. -
Uses of StyledTextModel in jfx.incubator.scene.control.richtext.model
Subclasses of StyledTextModel in jfx.incubator.scene.control.richtext.modelModifier and TypeClassDescriptionclass
A StyledTextModel based on plain text paragraphs.class
Editable plain text model with optional syntax highlighting for use with theCodeArea
control.class
Editable, in-memoryStyledTextModel
based on a collection of styled segments.class
A simple, view-only, in-memory, styled text model.class
The base class for view-onlyStyledTextModel
s.Methods in jfx.incubator.scene.control.richtext.model with parameters of type StyledTextModelModifier and TypeMethodDescriptionabstract Object
DataFormatHandler.copy
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) Creates an object to be put into the Clipboard for the given text range.HtmlExportFormatHandler.copy
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) PlainTextFormatHandler.copy
(StyledTextModel m, StyleResolver resolver, TextPos start, TextPos end) RichTextFormatHandler.copy
(StyledTextModel m, StyleResolver r, TextPos start, TextPos end) RtfFormatHandler.copy
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) abstract void
DataFormatHandler.save
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) Save the text range in the handler's format to the output stream (e.g.void
HtmlExportFormatHandler.save
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) void
PlainTextFormatHandler.save
(StyledTextModel m, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) void
RichTextFormatHandler.save
(StyledTextModel m, StyleResolver r, TextPos start, TextPos end, OutputStream out) void
RtfFormatHandler.save
(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out)