Class StyledTextModelViewOnlyBase
- Direct Known Subclasses:
SimpleViewOnlyStyledModel
StyledTextModels.
Models extending this class will not be user editable.
- Since:
- 24
-
Nested Class Summary
Nested classes/interfaces declared in class jfx.incubator.scene.control.richtext.model.StyledTextModel
StyledTextModel.Listener -
Property Summary
Properties declared in class jfx.incubator.scene.control.richtext.model.StyledTextModel
redoable, undoable -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected final voidapplyStyle(int ix, int start, int end, StyleAttributeMap a, boolean merge) Applies style to the specified text range within a single paragraph.protected voidinsertLineBreak(int index, int offset) Inserts a line break at the specified position.protected voidinsertParagraph(int index, Supplier<Region> generator) Inserts a paragraph that contains a singleRegion.protected intinsertTextSegment(int index, int offset, String text, StyleAttributeMap attrs) This method is called to insert a single styled text segment at the given position.final booleanIndicates whether the model supports content modifications made viaapplyStyle(),replace(),undo(),redo()methods.protected voidremoveRange(TextPos start, TextPos end) Removes the specified text range.protected final voidsetParagraphStyle(int ix, StyleAttributeMap a) Replaces the paragraph styles in the specified paragraph.Methods declared in class jfx.incubator.scene.control.richtext.model.StyledTextModel
addListener, applyStyle, clamp, clearUndoRedo, export, exportParagraph, fireChangeEvent, fireStyleChangeEvent, getDataFormatHandler, getDocumentEnd, getEndOfParagraphTextPos, getMarker, getParagraph, getParagraphLength, getPlainText, getStyleAttributeMap, getSupportedAttributes, getSupportedDataFormats, isRedoable, isUndoable, read, redo, redoableProperty, registerDataFormatHandler, removeDataFormatHandler, removeListener, replace, replace, size, undo, undoableProperty, write
-
Constructor Details
-
StyledTextModelViewOnlyBase
public StyledTextModelViewOnlyBase()The constructor.
-
-
Method Details
-
isWritable
public final boolean isWritable()Description copied from class:StyledTextModelIndicates whether the model supports content modifications made viaapplyStyle(),replace(),undo(),redo()methods.Note that even when this method returns
false, the model itself may still update its content and fire the change events as a response, for example, to changes in its backing data storage.- Specified by:
isWritablein classStyledTextModel- Returns:
- always returns
false
-
removeRange
Description copied from class:StyledTextModelRemoves the specified text range. This method gets called only if the model is editable. The caller guarantees thatstartprecedesend.- Specified by:
removeRangein classStyledTextModel- Parameters:
start- the start of the range to be removedend- the end of the range to be removed, expected to be greater than the start position
-
insertTextSegment
Description copied from class:StyledTextModelThis method is called to insert a single styled text segment at the given position.- Specified by:
insertTextSegmentin classStyledTextModel- Parameters:
index- the paragraph indexoffset- the insertion offset within the paragraphtext- the text to insertattrs- the style attributes- Returns:
- the number of characters inserted
-
insertLineBreak
protected void insertLineBreak(int index, int offset) Description copied from class:StyledTextModelInserts a line break at the specified position.- Specified by:
insertLineBreakin classStyledTextModel- Parameters:
index- the model indexoffset- the text offset
-
insertParagraph
Description copied from class:StyledTextModelInserts a paragraph that contains a singleRegion.The model should not cache or otherwise retain references to the created
Regions, as they might be requested multiple times during the lifetime of the model, or by different views.This method allows for embedding
Controls that handle user input. In this case, the model should declare necessary properties and provide bidirectional bindings between the properties in the model and the corresponding properties in the control, as well as handle copy, paste, writing to and reading from I/O streams.- Specified by:
insertParagraphin classStyledTextModel- Parameters:
index- model indexgenerator- code that will be used to create a Node instance
-
setParagraphStyle
Description copied from class:StyledTextModelReplaces the paragraph styles in the specified paragraph.- Specified by:
setParagraphStylein classStyledTextModel- Parameters:
ix- the paragraph indexa- the paragraph attributes
-
applyStyle
Description copied from class:StyledTextModelApplies style to the specified text range within a single paragraph. The new attributes override any existing attributes. Theendargument may exceed the paragraph length, in which case the outcome should be the same as supplying the paragraph length value.- Specified by:
applyStylein classStyledTextModel- Parameters:
ix- the paragraph indexstart- the start offsetend- the end offseta- the character attributesmerge- determines whether to merge with or overwrite the existing attributes
-