package editor
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- abstract class Action extends AnyRef
Simple UI action.
- class Editor extends Publisher[EditorEvent]
Code input area of the console.
Code input area of the console. Creates MVC components and gives access to the view, and externally relevant parts of the model (selection and text) and controller (actions).
Publishes event ij_plugins.scala.console.editor.Editor.SourceFileEvent
- class EditorCodeArea extends AnyRef
Text area that provides Scala syntax highlighting.
Text area that provides Scala syntax highlighting.
Example use:
object ScalaKeywordsDemo extends JFXApp { val editorCodeArea = new EditorCodeArea() editorCodeArea.text = ... stage = new JFXApp.PrimaryStage { title = "Scala Keywords Demo" scene = new Scene(640, 480) { root = editorCodeArea.view } } }