Package groovy.console.ui.text
Class SmartDocumentFilter
java.lang.Object
javax.swing.text.DocumentFilter
groovy.console.ui.text.SmartDocumentFilter
The document filter based on Parrot's lexer is for highlighting the content of text editor
- Since:
- 3.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class javax.swing.text.DocumentFilter
DocumentFilter.FilterBypass -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<org.antlr.v4.runtime.Token>voidinsertString(DocumentFilter.FilterBypass fb, int offset, String text, AttributeSet attrs) booleanisLatest()voidremove(DocumentFilter.FilterBypass fb, int offset, int length) voidForces a full re-parse and re-render of the document with current styles.voidreplace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) voidsetRenderRange(Tuple2<Integer, Integer> renderRange) static voidUpdates all SmartDocumentFilter styles with current theme colors.
-
Field Details
-
HIGHLIGHTED_TOKEN_TYPE_LIST
-
-
Constructor Details
-
SmartDocumentFilter
-
-
Method Details
-
insertString
public void insertString(DocumentFilter.FilterBypass fb, int offset, String text, AttributeSet attrs) throws BadLocationException - Overrides:
insertStringin classDocumentFilter- Throws:
BadLocationException
-
remove
public void remove(DocumentFilter.FilterBypass fb, int offset, int length) throws BadLocationException - Overrides:
removein classDocumentFilter- Throws:
BadLocationException
-
replace
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException - Overrides:
replacein classDocumentFilter- Throws:
BadLocationException
-
reparseDocument
public void reparseDocument()Forces a full re-parse and re-render of the document with current styles. Clears the incremental-render cache first so every token is restyled, not just the ones that differ from the last parse. -
updateStyles
public static void updateStyles()Updates all SmartDocumentFilter styles with current theme colors. Attribute values are sourced from ThemeManager so custom .theme files feed both this (ANTLR-token-driven) path and the regex-driven GroovyFilter path from one place. Called at init time and on theme switch. -
isLatest
public boolean isLatest() -
getLatestTokenList
-
setRenderRange
-
getRenderRange
-