Class FoldManager


  • public class FoldManager
    extends Object
    Manages code folding in an instance of RSyntaxTextArea.
    • Field Detail

      • PROPERTY_FOLDS_UPDATED

        public static final String PROPERTY_FOLDS_UPDATED
        Property fired when folds have been updated.
        See Also:
        Constant Field Values
    • Constructor Detail

      • FoldManager

        public FoldManager​(RSyntaxTextArea textArea)
        Constructor.
        Parameters:
        textArea - The text area whose folds we are managing.
    • Method Detail

      • clear

        public void clear()
        Removes all folds.
      • ensureOffsetNotInClosedFold

        public boolean ensureOffsetNotInClosedFold​(int offs)
        Ensures that the specified offset is not hidden in a collapsed fold. Any folds containing this offset that are collapsed will be expanded.
        Parameters:
        offs - The offset.
        Returns:
        Whether any folds had to be opened.
        See Also:
        getDeepestFoldContaining(int)
      • getDeepestFoldContaining

        public Fold getDeepestFoldContaining​(int offs)
        Returns the "deepest" nested fold containing the specified offset.
        Parameters:
        offs - The offset.
        Returns:
        The deepest fold containing the offset, or null if no fold contains the offset.
      • getDeepestOpenFoldContaining

        public Fold getDeepestOpenFoldContaining​(int offs)
        Returns the "deepest" open fold containing the specified offset.
        Parameters:
        offs - The offset.
        Returns:
        The fold, or null if no open fold contains the offset.
      • getFold

        public Fold getFold​(int index)
        Returns a specific top-level fold, which may have child folds.
        Parameters:
        index - The index of the fold.
        Returns:
        The fold.
        See Also:
        getFoldCount()
      • getFoldCount

        public int getFoldCount()
        Returns the number of top-level folds.
        Returns:
        The number of top-level folds.
        See Also:
        getFold(int)
      • getFoldForLine

        public Fold getFoldForLine​(int line)
        Returns the fold region that starts at the specified line.
        Parameters:
        line - The line number.
        Returns:
        The fold, or null if the line is not the start of a fold region.
        See Also:
        isFoldStartLine(int)
      • getHiddenLineCount

        public int getHiddenLineCount()
        Returns the total number of hidden (folded) lines.
        Returns:
        The total number of hidden (folded) lines.
        See Also:
        getHiddenLineCountAbove(int)
      • getHiddenLineCountAbove

        public int getHiddenLineCountAbove​(int line)
        Returns the number of lines "hidden" by collapsed folds above the specified line.
        Parameters:
        line - The line. This is the line number for a logical line. For the line number of a physical line (i.e. visible, not folded), use getHiddenLineCountAbove(int, true).
        Returns:
        The number of lines hidden in folds above line.
        See Also:
        getHiddenLineCountAbove(int, boolean)
      • getHiddenLineCountAbove

        public int getHiddenLineCountAbove​(int line,
                                           boolean physical)
        Returns the number of lines "hidden" by collapsed folds above the specified line.
        Parameters:
        line - The line.
        physical - Whether line is the number of a physical line (i.e. visible, not code-folded), or a logical one (i.e. any line from the model). If line was determined by a raw line calculation (i.e. (visibleTopY / lineHeight)), this value should be true. It should be false when it was calculated from an offset in the document (for example).
        Returns:
        The number of lines hidden in folds above line.
      • getLastVisibleLine

        public int getLastVisibleLine()
        Returns the last visible line in the text area, taking into account folds.
        Returns:
        The last visible line.
      • getVisibleLineAbove

        public int getVisibleLineAbove​(int line)
      • getVisibleLineBelow

        public int getVisibleLineBelow​(int line)
      • isCodeFoldingEnabled

        public boolean isCodeFoldingEnabled()
        Returns whether code folding is enabled. Note that only certain languages support code folding; those that do not will ignore this property.
        Returns:
        Whether code folding is enabled.
        See Also:
        setCodeFoldingEnabled(boolean)
      • isCodeFoldingSupportedAndEnabled

        public boolean isCodeFoldingSupportedAndEnabled()
        Returns true if and only if code folding is enabled for this text area, AND folding is supported for the language it is editing. Whether or not folding is supported for a language depends on whether a fold parser is registered for that language with the FoldParserManager.
        Returns:
        Whether folding is supported and enabled for this text area.
        See Also:
        FoldParserManager
      • isFoldStartLine

        public boolean isFoldStartLine​(int line)
        Returns whether the specified line contains the start of a fold region.
        Parameters:
        line - The line.
        Returns:
        Whether the line contains the start of a fold region.
        See Also:
        getFoldForLine(int)
      • isLineHidden

        public boolean isLineHidden​(int line)
        Returns whether a line is hidden in a collapsed fold.
        Parameters:
        line - The line to check.
        Returns:
        Whether the line is hidden in a collapsed fold.
      • reparse

        public void reparse()
        Forces an immediate reparsing for folds, if folding is enabled. This usually does not need to be called by the programmer, since fold parsing is done automatically by RSTA.
      • setCodeFoldingEnabled

        public void setCodeFoldingEnabled​(boolean enabled)
        Sets whether code folding is enabled. Note that only certain languages will support code folding out of the box. Those languages which do not support folding will ignore this property.
        Parameters:
        enabled - Whether code folding should be enabled.
        See Also:
        isCodeFoldingEnabled()
      • setFolds

        public void setFolds​(List<Fold> folds)
        Sets the folds for this fold manager.
        Parameters:
        folds - The new folds. This should not be null.