case class EditorConfiguration(rows: Int, columns: Int, font: Font, listener: TextListener, colorizer: Colorizer, additionalActions: Map[KeyStroke, TextAction], contextActions: Seq[Action], menuActions: Seq[Action], enableFocusTraversal: Boolean, highlightCurrentLine: Boolean, showLineNumbers: Boolean, is3Dlanguage: Boolean, menu: EditorMenu) extends Product with Serializable

Source
EditorConfiguration.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EditorConfiguration
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EditorConfiguration(rows: Int, columns: Int, font: Font, listener: TextListener, colorizer: Colorizer, additionalActions: Map[KeyStroke, TextAction], contextActions: Seq[Action], menuActions: Seq[Action], enableFocusTraversal: Boolean, highlightCurrentLine: Boolean, showLineNumbers: Boolean, is3Dlanguage: Boolean, menu: EditorMenu)

Value Members

  1. def addKeymap(key: KeyStroke, action: TextAction): EditorConfiguration
  2. val additionalActions: Map[KeyStroke, TextAction]
  3. val colorizer: Colorizer
  4. val columns: Int
  5. def configureAdvancedEditorArea(editor: AbstractEditorArea): Unit
  6. def configureEditorArea(editor: EditorArea): Unit
  7. val contextActions: Seq[Action]
  8. def editorOnlyActions: Seq[Action]
  9. val enableFocusTraversal: Boolean
  10. val font: Font
  11. def forThreeDLanguage(is3D: Boolean): EditorConfiguration
  12. val highlightCurrentLine: Boolean
  13. val is3Dlanguage: Boolean
  14. val listener: TextListener
  15. val menu: EditorMenu
  16. val menuActions: Seq[Action]
  17. def permanentActions: Seq[Action]
  18. val rows: Int
  19. val showLineNumbers: Boolean
  20. def withContextActions(actions: Seq[Action]): EditorConfiguration
  21. def withCurrentLineHighlighted(isHighlighted: Boolean): EditorConfiguration
  22. def withFocusTraversalEnabled(isEnabled: Boolean): EditorConfiguration
  23. def withFont(font: Font): EditorConfiguration
  24. def withKeymap(keymap: Map[KeyStroke, TextAction]): EditorConfiguration
  25. def withLineNumbers(show: Boolean): EditorConfiguration
  26. def withListener(listener: TextListener): EditorConfiguration
  27. def withMenu(newMenu: EditorMenu): EditorConfiguration
  28. def withMenuActions(actions: Seq[Action]): EditorConfiguration