src/Tools/jEdit/src/isabelle.scala
author wenzelm
Tue, 05 Aug 2014 12:42:38 +0200
changeset 57861 287e3b1298b3
parent 57627 65fc7ae1bf66
child 58529 cd4439d8799c
permissions -rw-r--r--
restrict edit_command (for sendback) to current node -- no attempt to goto target buffer first, which might not be loaded;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
     1
/*  Title:      Tools/jEdit/src/isabelle.scala
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     3
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
     4
Global configuration and convenience operations for Isabelle/jEdit.
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     5
*/
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     6
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     7
package isabelle.jedit
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     8
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
     9
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    10
import isabelle._
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    11
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
    12
import java.awt.Frame
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
    13
53715
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
    14
import scala.swing.CheckBox
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
    15
import scala.swing.event.ButtonClicked
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
    16
50198
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
    17
import org.gjt.sp.jedit.{jEdit, View, Buffer}
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    18
import org.gjt.sp.jedit.textarea.JEditTextArea
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
    19
import org.gjt.sp.jedit.gui.{DockableWindowManager, CompleteWord}
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
    20
import org.gjt.sp.jedit.options.PluginOptions
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    21
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    22
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    23
object Isabelle
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    24
{
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    25
  /* editor modes */
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    26
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    27
  val modes =
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    28
    List(
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    29
      "isabelle",         // theory source
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
    30
      "isabelle-ml",      // ML source
53281
251e1a2aa792 clarified SideKick parser name, which serves as quasi "mode" here;
wenzelm
parents: 53280
diff changeset
    31
      "isabelle-markup",  // SideKick markup tree
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    32
      "isabelle-news",    // NEWS
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    33
      "isabelle-options", // etc/options
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    34
      "isabelle-output",  // pretty text area output
56277
c4f75e733812 separate "sml" mode, suppress old "ml" mode altogether;
wenzelm
parents: 56170
diff changeset
    35
      "isabelle-root",    // session ROOT
c4f75e733812 separate "sml" mode, suppress old "ml" mode altogether;
wenzelm
parents: 56170
diff changeset
    36
      "sml")              // Standard ML (not Isabelle/ML)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    37
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    38
  private lazy val ml_syntax: Outer_Syntax =
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    39
    Outer_Syntax.init().no_tokens.
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55666
diff changeset
    40
      set_language_context(Completion.Language_Context.ML_outer)
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    41
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    42
  private lazy val sml_syntax: Outer_Syntax =
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    43
    Outer_Syntax.init().no_tokens.
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    44
      set_language_context(Completion.Language_Context.SML_outer)
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    45
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    46
  private lazy val news_syntax: Outer_Syntax =
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    47
    Outer_Syntax.init().no_tokens
53276
cbed0aa0b0db syntax for isabelle-news with symbol completion;
wenzelm
parents: 53274
diff changeset
    48
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    49
  def mode_syntax(name: String): Option[Outer_Syntax] =
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    50
    name match {
53281
251e1a2aa792 clarified SideKick parser name, which serves as quasi "mode" here;
wenzelm
parents: 53280
diff changeset
    51
      case "isabelle" | "isabelle-markup" =>
56393
22f533e6a049 more abstract Prover.Syntax, as proposed by Carst Tankink;
wenzelm
parents: 56278
diff changeset
    52
        PIDE.session.recent_syntax match {
56394
bbf4d512f395 clarified Version.syntax -- avoid guessing initial situation;
wenzelm
parents: 56393
diff changeset
    53
          case syntax: Outer_Syntax if syntax != Outer_Syntax.empty => Some(syntax)
56393
22f533e6a049 more abstract Prover.Syntax, as proposed by Carst Tankink;
wenzelm
parents: 56278
diff changeset
    54
          case _ => None
22f533e6a049 more abstract Prover.Syntax, as proposed by Carst Tankink;
wenzelm
parents: 56278
diff changeset
    55
        }
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    56
      case "isabelle-options" => Some(Options.options_syntax)
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    57
      case "isabelle-root" => Some(Build.root_syntax)
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    58
      case "isabelle-ml" => Some(ml_syntax)
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    59
      case "isabelle-news" => Some(news_syntax)
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    60
      case "isabelle-output" => None
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    61
      case "sml" => Some(sml_syntax)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    62
      case _ => None
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    63
    }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    64
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    65
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    66
  /* token markers */
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    67
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    68
  private val markers =
53280
c63a016805b9 explicit indication of outer syntax with no tokens;
wenzelm
parents: 53277
diff changeset
    69
    Map(modes.map(name => (name, new Token_Markup.Marker(name))): _*)
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    70
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    71
  def token_marker(name: String): Option[Token_Markup.Marker] = markers.get(name)
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    72
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    73
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    74
  /* dockable windows */
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    75
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    76
  private def wm(view: View): DockableWindowManager = view.getDockableWindowManager
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    77
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    78
  def documentation_dockable(view: View): Option[Documentation_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    79
    wm(view).getDockableWindow("isabelle-documentation") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    80
      case dockable: Documentation_Dockable => Some(dockable)
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    81
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    82
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    83
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    84
  def monitor_dockable(view: View): Option[Monitor_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    85
    wm(view).getDockableWindow("isabelle-monitor") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    86
      case dockable: Monitor_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    87
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    88
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    89
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    90
  def output_dockable(view: View): Option[Output_Dockable] =
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    91
    wm(view).getDockableWindow("isabelle-output") match {
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    92
      case dockable: Output_Dockable => Some(dockable)
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    93
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    94
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    95
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    96
  def protocol_dockable(view: View): Option[Protocol_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    97
    wm(view).getDockableWindow("isabelle-protocol") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    98
      case dockable: Protocol_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
    99
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   100
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   101
56879
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   102
  def query_dockable(view: View): Option[Query_Dockable] =
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   103
    wm(view).getDockableWindow("isabelle-query") match {
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   104
      case dockable: Query_Dockable => Some(dockable)
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   105
      case _ => None
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   106
    }
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   107
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   108
  def raw_output_dockable(view: View): Option[Raw_Output_Dockable] =
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   109
    wm(view).getDockableWindow("isabelle-raw-output") match {
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   110
      case dockable: Raw_Output_Dockable => Some(dockable)
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   111
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   112
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   113
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   114
  def simplifier_trace_dockable(view: View): Option[Simplifier_Trace_Dockable] =
55557
aa1adeca714b standardized action and panel names;
wenzelm
parents: 55500
diff changeset
   115
    wm(view).getDockableWindow("isabelle-simplifier-trace") match {
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 54640
diff changeset
   116
      case dockable: Simplifier_Trace_Dockable => Some(dockable)
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 54640
diff changeset
   117
      case _ => None
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 54640
diff changeset
   118
    }
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 54640
diff changeset
   119
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   120
  def sledgehammer_dockable(view: View): Option[Sledgehammer_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   121
    wm(view).getDockableWindow("isabelle-sledgehammer") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   122
      case dockable: Sledgehammer_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   123
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   124
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   125
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   126
  def symbols_dockable(view: View): Option[Symbols_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   127
    wm(view).getDockableWindow("isabelle-symbols") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   128
      case dockable: Symbols_Dockable => Some(dockable)
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   129
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   130
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   131
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   132
  def syslog_dockable(view: View): Option[Syslog_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   133
    wm(view).getDockableWindow("isabelle-syslog") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   134
      case dockable: Syslog_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   135
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   136
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   137
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   138
  def theories_dockable(view: View): Option[Theories_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   139
    wm(view).getDockableWindow("isabelle-theories") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   140
      case dockable: Theories_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   141
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   142
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   143
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   144
  def timing_dockable(view: View): Option[Timing_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   145
    wm(view).getDockableWindow("isabelle-timing") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   146
      case dockable: Timing_Dockable => Some(dockable)
50433
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   147
      case _ => None
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   148
    }
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   149
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   150
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   151
  /* continuous checking */
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   152
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   153
  private val CONTINUOUS_CHECKING = "editor_continuous_checking"
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   154
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   155
  def continuous_checking: Boolean = PIDE.options.bool(CONTINUOUS_CHECKING)
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   156
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   157
  def continuous_checking_=(b: Boolean)
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   158
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57424
diff changeset
   159
    GUI_Thread.require {}
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   160
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   161
    if (continuous_checking != b) {
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   162
      PIDE.options.bool(CONTINUOUS_CHECKING) = b
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   163
      PIDE.options_changed()
52974
908e8a36e975 tuned signature;
wenzelm
parents: 52816
diff changeset
   164
      PIDE.editor.flush()
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   165
    }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   166
  }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   167
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   168
  def set_continuous_checking() { continuous_checking = true }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   169
  def reset_continuous_checking() { continuous_checking = false }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   170
  def toggle_continuous_checking() { continuous_checking = !continuous_checking }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   171
53715
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   172
  class Continuous_Checking extends CheckBox("Continuous checking")
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   173
  {
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   174
    tooltip = "Continuous checking of proof document (visible and required parts)"
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   175
    reactions += { case ButtonClicked(_) => continuous_checking = selected }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   176
    def load() { selected = continuous_checking }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   177
    load()
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   178
  }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   179
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   180
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   181
  /* required document nodes */
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   182
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   183
  private def node_required_update(view: View, toggle: Boolean = false, set: Boolean = false)
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   184
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57424
diff changeset
   185
    GUI_Thread.require {}
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   186
    PIDE.document_model(view.getBuffer) match {
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   187
      case Some(model) =>
52816
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   188
        model.node_required = (if (toggle) !model.node_required else set)
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   189
      case None =>
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   190
    }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   191
  }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   192
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   193
  def set_node_required(view: View) { node_required_update(view, set = true) }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   194
  def reset_node_required(view: View) { node_required_update(view, set = false) }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   195
  def toggle_node_required(view: View) { node_required_update(view, toggle = true) }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   196
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   197
50198
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   198
  /* font size */
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   199
55827
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   200
  def reset_font_size() {
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   201
    Font_Info.main_change.reset(PIDE.options.int("jedit_reset_font_size").toFloat)
55823
0331b6d2ab0c font size change with delay, to avoid GUI lagging behind user input;
wenzelm
parents: 55749
diff changeset
   202
  }
55827
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   203
  def increase_font_size() { Font_Info.main_change.step(1) }
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   204
  def decrease_font_size() { Font_Info.main_change.step(-1) }
50198
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   205
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   206
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   207
  /* structured edits */
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   208
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   209
  def insert_line_padding(text_area: JEditTextArea, text: String)
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   210
  {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   211
    val buffer = text_area.getBuffer
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   212
    JEdit_Lib.buffer_edit(buffer) {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   213
      val text1 =
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   214
        if (text_area.getSelectionCount == 0) {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   215
          def pad(range: Text.Range): String =
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   216
            if (JEdit_Lib.try_get_text(buffer, range) == Some("\n")) "" else "\n"
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   217
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56587
diff changeset
   218
          val caret = JEdit_Lib.caret_range(text_area)
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   219
          val before_caret = JEdit_Lib.point_range(buffer, caret.start - 1)
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   220
          pad(before_caret) + text + pad(caret)
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   221
        }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   222
        else text
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   223
      text_area.setSelectedText(text1)
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   224
    }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   225
  }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   226
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   227
  def edit_command(
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   228
    snapshot: Document.Snapshot,
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   229
    buffer: Buffer,
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   230
    padding: Boolean,
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   231
    id: Document_ID.Generic,
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   232
    s: String)
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   233
  {
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   234
    if (!snapshot.is_outdated) {
57861
287e3b1298b3 restrict edit_command (for sendback) to current node -- no attempt to goto target buffer first, which might not be loaded;
wenzelm
parents: 57627
diff changeset
   235
      (snapshot.state.find_command(snapshot.version, id), PIDE.document_model(buffer)) match {
287e3b1298b3 restrict edit_command (for sendback) to current node -- no attempt to goto target buffer first, which might not be loaded;
wenzelm
parents: 57627
diff changeset
   236
        case (Some((node, command)), Some(model)) if command.node_name == model.node_name =>
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   237
          node.command_start(command) match {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   238
            case Some(start) =>
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   239
              JEdit_Lib.buffer_edit(buffer) {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   240
                val range = command.proper_range + start
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   241
                if (padding) {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   242
                  buffer.insert(start + range.length, "\n" + s)
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   243
                }
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   244
                else {
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   245
                  buffer.remove(start, range.length)
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   246
                  buffer.insert(start, s)
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   247
                }
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   248
              }
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   249
            case None =>
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   250
          }
57861
287e3b1298b3 restrict edit_command (for sendback) to current node -- no attempt to goto target buffer first, which might not be loaded;
wenzelm
parents: 57627
diff changeset
   251
        case _ =>
54640
bbd2fa353809 back to Status.FINISHED and immediate remove_overlay (reverting 6e69f9ca8f1c), which is important to avoid restart of print function after edits + re-assignment of located command;
wenzelm
parents: 53843
diff changeset
   252
      }
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   253
    }
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   254
  }
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   255
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   256
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   257
  /* completion */
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   258
56586
5ef60881681d explicit menu action to complete word;
wenzelm
parents: 56578
diff changeset
   259
  def complete(view: View, word_only: Boolean)
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   260
  {
57424
966b12f636b9 removed slightly odd fall-back on complete-word (NB: connection to default menu action is unclear);
wenzelm
parents: 56879
diff changeset
   261
    Completion_Popup.Text_Area.action(view.getTextArea, word_only)
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   262
  }
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   263
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   264
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   265
  /* control styles */
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   266
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   267
  def control_sub(text_area: JEditTextArea)
50187
b5a09812abc4 special handling of control symbols in Symbols dockable;
wenzelm
parents: 50183
diff changeset
   268
  { Token_Markup.edit_control_style(text_area, Symbol.sub_decoded) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   269
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   270
  def control_sup(text_area: JEditTextArea)
50187
b5a09812abc4 special handling of control symbols in Symbols dockable;
wenzelm
parents: 50183
diff changeset
   271
  { Token_Markup.edit_control_style(text_area, Symbol.sup_decoded) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   272
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   273
  def control_bold(text_area: JEditTextArea)
50187
b5a09812abc4 special handling of control symbols in Symbols dockable;
wenzelm
parents: 50183
diff changeset
   274
  { Token_Markup.edit_control_style(text_area, Symbol.bold_decoded) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   275
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   276
  def control_reset(text_area: JEditTextArea)
50187
b5a09812abc4 special handling of control symbols in Symbols dockable;
wenzelm
parents: 50183
diff changeset
   277
  { Token_Markup.edit_control_style(text_area, "") }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   278
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   279
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   280
  /* block styles */
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   281
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   282
  private def enclose_input(text_area: JEditTextArea, s1: String, s2: String)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   283
  {
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   284
    s1.foreach(text_area.userInput(_))
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   285
    s2.foreach(text_area.userInput(_))
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   286
    s2.foreach(_ => text_area.goToPrevCharacter(false))
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   287
  }
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   288
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   289
  def input_bsub(text_area: JEditTextArea)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   290
  { enclose_input(text_area, Symbol.bsub_decoded, Symbol.esub_decoded) }
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   291
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   292
  def input_bsup(text_area: JEditTextArea)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   293
  { enclose_input(text_area, Symbol.bsup_decoded, Symbol.esup_decoded) }
56574
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   294
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   295
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   296
  /* spell-checker dictionary */
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   297
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   298
  def update_dictionary(text_area: JEditTextArea, include: Boolean, permanent: Boolean)
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   299
  {
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   300
    for {
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   301
      spell_checker <- PIDE.spell_checker.get
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   302
      doc_view <- PIDE.document_view(text_area)
56576
86148ca3c4fd added context menu for spell checker actions;
wenzelm
parents: 56575
diff changeset
   303
      rendering = doc_view.get_rendering()
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56587
diff changeset
   304
      range = JEdit_Lib.caret_range(text_area)
56576
86148ca3c4fd added context menu for spell checker actions;
wenzelm
parents: 56575
diff changeset
   305
      Text.Info(_, word) <- Spell_Checker.current_word(text_area, rendering, range)
56575
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   306
    } {
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   307
      spell_checker.update(word, include, permanent)
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   308
      JEdit_Lib.jedit_views().foreach(_.repaint())
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   309
    }
56574
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   310
  }
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   311
56578
e73723b39c82 proper signature for dynamic BeanShell action;
wenzelm
parents: 56576
diff changeset
   312
  def reset_dictionary()
56575
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   313
  {
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   314
    for (spell_checker <- PIDE.spell_checker.get)
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   315
    {
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   316
      spell_checker.reset()
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   317
      JEdit_Lib.jedit_views().foreach(_.repaint())
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   318
    }
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   319
  }
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   320
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   321
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   322
  /* plugin options */
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   323
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   324
  def plugin_options(frame: Frame)
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   325
  {
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   326
    GUI_Thread.require {}
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   327
    new org.gjt.sp.jedit.options.PluginOptions(frame, "plugin.isabelle.jedit.Plugin")
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   328
  }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   329
}
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   330