All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.ui.rtextarea.CaretStyle Maven / Gradle / Ivy

Go to download

RSyntaxTextArea is the syntax highlighting text editor for Swing applications. Features include syntax highlighting for 40+ languages, code folding, code completion, regex find and replace, macros, code templates, undo/redo, line numbering and bracket matching.

There is a newer version: 3.5.1
Show newest version
/*
 * 04/23/2014
 *
 * This library is distributed under a modified BSD license.  See the included
 * RSyntaxTextArea.License.txt file for details.
 */
package org.fife.ui.rtextarea;


/**
 * Provides various ways to render a caret such as {@link ConfigurableCaret}..
 *
 * Currently supported renderings include:
 *
 * 
    *
  1. As a vertical line (like DefaultCaret)
  2. *
  3. As a slightly thicker vertical line (like Eclipse)
  4. *
  5. As an underline
  6. *
  7. As a "block caret"
  8. *
  9. As a rectangle around the current character
  10. *
* * @author Robert Futrell * @version 1.0 */ public enum CaretStyle { VERTICAL_LINE_STYLE, UNDERLINE_STYLE, BLOCK_STYLE, BLOCK_BORDER_STYLE, THICK_VERTICAL_LINE_STYLE; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy