src/Tools/jEdit/src/isabelle.scala
author wenzelm
Sun, 03 Jan 2021 23:06:37 +0100
changeset 73039 4b1cfbf96e36
parent 72976 51442c6dc296
child 73049 bef32cb5d26b
permissions -rw-r--r--
action isabelle.toggle-full-screen;
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
73039
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
    12
import java.awt.{Point, Frame, Rectangle}
57627
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
73039
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
    17
import org.gjt.sp.jedit.{jEdit, View, Buffer, EditBus}
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
    18
import org.gjt.sp.jedit.msg.ViewUpdate
59074
7836d927ffca tuned signature;
wenzelm
parents: 58804
diff changeset
    19
import org.gjt.sp.jedit.buffer.JEditBuffer
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
    20
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea, StructureMatcher, Selection}
58529
cd4439d8799c support for bibtex token markup;
wenzelm
parents: 57861
diff changeset
    21
import org.gjt.sp.jedit.syntax.TokenMarker
63421
3bf02e7fa8a3 basic setup for indentation;
wenzelm
parents: 63236
diff changeset
    22
import org.gjt.sp.jedit.indent.IndentRule
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
    23
import org.gjt.sp.jedit.gui.{DockableWindowManager, CompleteWord}
61024
7b7f01afab71 avoid deprecated PluginOptions with its unbounded window size;
wenzelm
parents: 60890
diff changeset
    24
import org.jedit.options.CombinedOptions
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    25
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    26
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
    27
object Isabelle
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
    28
{
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    29
  /* editor modes */
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    30
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    31
  val modes =
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    32
    List(
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    33
      "isabelle",         // theory source
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
    34
      "isabelle-ml",      // ML source
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    35
      "isabelle-news",    // NEWS
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    36
      "isabelle-options", // etc/options
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    37
      "isabelle-output",  // pretty text area output
56277
c4f75e733812 separate "sml" mode, suppress old "ml" mode altogether;
wenzelm
parents: 56170
diff changeset
    38
      "isabelle-root",    // session ROOT
c4f75e733812 separate "sml" mode, suppress old "ml" mode altogether;
wenzelm
parents: 56170
diff changeset
    39
      "sml")              // Standard ML (not Isabelle/ML)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    40
67004
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    41
  private val ml_syntax: Outer_Syntax =
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    42
    Outer_Syntax.empty.no_tokens.
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55666
diff changeset
    43
      set_language_context(Completion.Language_Context.ML_outer)
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    44
67004
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    45
  private val sml_syntax: Outer_Syntax =
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    46
    Outer_Syntax.empty.no_tokens.
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    47
      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
    48
67004
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    49
  private val news_syntax: Outer_Syntax =
af72fa58f71b clarified lazy Completion within Outer_Syntax: measurable speedup of Sessions.deps;
wenzelm
parents: 66984
diff changeset
    50
    Outer_Syntax.empty.no_tokens
53276
cbed0aa0b0db syntax for isabelle-news with symbol completion;
wenzelm
parents: 53274
diff changeset
    51
59076
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    52
  def mode_syntax(mode: String): Option[Outer_Syntax] =
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    53
    mode match {
66720
b07192253605 tuned signature;
wenzelm
parents: 66469
diff changeset
    54
      case "isabelle" => Some(PIDE.resources.session_base.overall_syntax)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    55
      case "isabelle-options" => Some(Options.options_syntax)
62631
c39614ddb80b clarified modules;
wenzelm
parents: 62104
diff changeset
    56
      case "isabelle-root" => Some(Sessions.root_syntax)
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    57
      case "isabelle-ml" => Some(ml_syntax)
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55558
diff changeset
    58
      case "isabelle-news" => Some(news_syntax)
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    59
      case "isabelle-output" => None
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56277
diff changeset
    60
      case "sml" => Some(sml_syntax)
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    61
      case _ => None
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    62
    }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    63
59074
7836d927ffca tuned signature;
wenzelm
parents: 58804
diff changeset
    64
  def buffer_syntax(buffer: JEditBuffer): Option[Outer_Syntax] =
63868
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    65
    if (buffer == null) None
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    66
    else
64813
7283f41d05ab manage buffer models as explicit global state;
wenzelm
parents: 64665
diff changeset
    67
      (JEdit_Lib.buffer_mode(buffer), Document_Model.get(buffer)) match {
63868
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    68
        case ("isabelle", Some(model)) =>
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    69
          Some(PIDE.session.recent_syntax(model.node_name))
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    70
        case (mode, _) => mode_syntax(mode)
22037a819276 more robust;
wenzelm
parents: 63865
diff changeset
    71
      }
59074
7836d927ffca tuned signature;
wenzelm
parents: 58804
diff changeset
    72
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53272
diff changeset
    73
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    74
  /* token markers */
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    75
59076
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    76
  private val mode_markers: Map[String, TokenMarker] =
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    77
    Map(modes.map(mode => (mode, new Token_Markup.Marker(mode, None))): _*) +
66120
e03ff7e831cc clarified modules;
wenzelm
parents: 66116
diff changeset
    78
      ("bibtex" -> new JEdit_Bibtex.Token_Marker)
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    79
59076
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    80
  def mode_token_marker(mode: String): Option[TokenMarker] = mode_markers.get(mode)
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    81
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    82
  def buffer_token_marker(buffer: Buffer): Option[TokenMarker] =
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    83
  {
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    84
    val mode = JEdit_Lib.buffer_mode(buffer)
60274
c2837a39da01 more conservative Document_Model.init: avoid Document.Node.Clear due to change of token marker (e.g. due to change of jEdit mode properties);
wenzelm
parents: 60074
diff changeset
    85
    if (mode == "isabelle") Some(new Token_Markup.Marker(mode, Some(buffer)))
c2837a39da01 more conservative Document_Model.init: avoid Document.Node.Clear due to change of token marker (e.g. due to change of jEdit mode properties);
wenzelm
parents: 60074
diff changeset
    86
    else mode_token_marker(mode)
59076
65babcd8b0e6 clarified token marker / syntax for mode vs. buffer;
wenzelm
parents: 59075
diff changeset
    87
  }
53277
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    88
6aa348237973 more uniform configuration of editor modes and token markers;
wenzelm
parents: 53276
diff changeset
    89
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 63421
diff changeset
    90
  /* text structure */
63421
3bf02e7fa8a3 basic setup for indentation;
wenzelm
parents: 63236
diff changeset
    91
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 63421
diff changeset
    92
  def indent_rule(mode: String): Option[IndentRule] =
63444
8191c3e9f2d3 support more modes;
wenzelm
parents: 63422
diff changeset
    93
    mode match {
8191c3e9f2d3 support more modes;
wenzelm
parents: 63422
diff changeset
    94
      case "isabelle" | "isabelle-options" | "isabelle-root" =>
8191c3e9f2d3 support more modes;
wenzelm
parents: 63422
diff changeset
    95
        Some(Text_Structure.Indent_Rule)
8191c3e9f2d3 support more modes;
wenzelm
parents: 63422
diff changeset
    96
      case _ => None
8191c3e9f2d3 support more modes;
wenzelm
parents: 63422
diff changeset
    97
    }
63421
3bf02e7fa8a3 basic setup for indentation;
wenzelm
parents: 63236
diff changeset
    98
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 63421
diff changeset
    99
  def structure_matchers(mode: String): List[StructureMatcher] =
5cf8dd98a717 clarified modules;
wenzelm
parents: 63421
diff changeset
   100
    if (mode == "isabelle") List(Text_Structure.Matcher) else Nil
58748
8f92f17d8781 support for structure matching;
wenzelm
parents: 58546
diff changeset
   101
8f92f17d8781 support for structure matching;
wenzelm
parents: 58546
diff changeset
   102
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   103
  /* dockable windows */
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   104
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   105
  private def wm(view: View): DockableWindowManager = view.getDockableWindowManager
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   106
60749
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   107
  def debugger_dockable(view: View): Option[Debugger_Dockable] =
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   108
    wm(view).getDockableWindow("isabelle-debugger") match {
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   109
      case dockable: Debugger_Dockable => Some(dockable)
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   110
      case _ => None
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   111
    }
f727b99faaf7 skeleton for interactive debugger;
wenzelm
parents: 60274
diff changeset
   112
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   113
  def documentation_dockable(view: View): Option[Documentation_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   114
    wm(view).getDockableWindow("isabelle-documentation") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   115
      case dockable: Documentation_Dockable => Some(dockable)
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   116
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   117
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   118
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   119
  def monitor_dockable(view: View): Option[Monitor_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   120
    wm(view).getDockableWindow("isabelle-monitor") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   121
      case dockable: Monitor_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   122
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   123
    }
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
  def output_dockable(view: View): Option[Output_Dockable] =
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   126
    wm(view).getDockableWindow("isabelle-output") match {
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   127
      case dockable: Output_Dockable => Some(dockable)
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   128
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   129
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   130
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   131
  def protocol_dockable(view: View): Option[Protocol_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   132
    wm(view).getDockableWindow("isabelle-protocol") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   133
      case dockable: Protocol_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   134
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   135
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   136
56879
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   137
  def query_dockable(view: View): Option[Query_Dockable] =
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   138
    wm(view).getDockableWindow("isabelle-query") match {
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   139
      case dockable: Query_Dockable => Some(dockable)
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   140
      case _ => None
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   141
    }
ee2b61f37ad9 renamed "Find" to "Query", with more general operations;
wenzelm
parents: 56662
diff changeset
   142
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   143
  def raw_output_dockable(view: View): Option[Raw_Output_Dockable] =
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   144
    wm(view).getDockableWindow("isabelle-raw-output") match {
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   145
      case dockable: Raw_Output_Dockable => Some(dockable)
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   146
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   147
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   148
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   149
  def simplifier_trace_dockable(view: View): Option[Simplifier_Trace_Dockable] =
55557
aa1adeca714b standardized action and panel names;
wenzelm
parents: 55500
diff changeset
   150
    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
   151
      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
   152
      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
   153
    }
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
   154
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   155
  def sledgehammer_dockable(view: View): Option[Sledgehammer_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   156
    wm(view).getDockableWindow("isabelle-sledgehammer") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   157
      case dockable: Sledgehammer_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   158
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   159
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   160
61208
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   161
  def state_dockable(view: View): Option[State_Dockable] =
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   162
    wm(view).getDockableWindow("isabelle-state") match {
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   163
      case dockable: State_Dockable => Some(dockable)
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   164
      case _ => None
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   165
    }
19118f9b939d separate panel for proof state output;
wenzelm
parents: 61024
diff changeset
   166
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   167
  def symbols_dockable(view: View): Option[Symbols_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   168
    wm(view).getDockableWindow("isabelle-symbols") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   169
      case dockable: Symbols_Dockable => Some(dockable)
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   170
      case _ => None
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   171
    }
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   172
55558
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   173
  def syslog_dockable(view: View): Option[Syslog_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   174
    wm(view).getDockableWindow("isabelle-syslog") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   175
      case dockable: Syslog_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   176
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   177
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   178
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   179
  def theories_dockable(view: View): Option[Theories_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   180
    wm(view).getDockableWindow("isabelle-theories") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   181
      case dockable: Theories_Dockable => Some(dockable)
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   182
      case _ => None
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   183
    }
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   184
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   185
  def timing_dockable(view: View): Option[Timing_Dockable] =
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   186
    wm(view).getDockableWindow("isabelle-timing") match {
298274c970b6 more uniform treatment of dockables and their standard actions;
wenzelm
parents: 55557
diff changeset
   187
      case dockable: Timing_Dockable => Some(dockable)
50433
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   188
      case _ => None
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   189
    }
9131dadb2bf7 basic monitor panel, using the powerful jfreechart library;
wenzelm
parents: 50341
diff changeset
   190
50208
1382ad6d4774 tuned signature;
wenzelm
parents: 50206
diff changeset
   191
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   192
  /* continuous checking */
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   193
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   194
  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
   195
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   196
  def continuous_checking: Boolean = PIDE.options.bool(CONTINUOUS_CHECKING)
60074
38a64cc17403 GUI controls for ML_statistics, for more digestible protocol dump;
wenzelm
parents: 59077
diff changeset
   197
  def continuous_checking_=(b: Boolean): Unit =
38a64cc17403 GUI controls for ML_statistics, for more digestible protocol dump;
wenzelm
parents: 59077
diff changeset
   198
    GUI_Thread.require {
38a64cc17403 GUI controls for ML_statistics, for more digestible protocol dump;
wenzelm
parents: 59077
diff changeset
   199
      if (continuous_checking != b) {
38a64cc17403 GUI controls for ML_statistics, for more digestible protocol dump;
wenzelm
parents: 59077
diff changeset
   200
        PIDE.options.bool(CONTINUOUS_CHECKING) = b
61725
1529c3eb6bac more thorough update of options;
wenzelm
parents: 61483
diff changeset
   201
        PIDE.session.update_options(PIDE.options.value)
60074
38a64cc17403 GUI controls for ML_statistics, for more digestible protocol dump;
wenzelm
parents: 59077
diff changeset
   202
      }
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   203
    }
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   204
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   205
  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
   206
  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
   207
  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
   208
53715
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   209
  class Continuous_Checking extends CheckBox("Continuous checking")
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   210
  {
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   211
    tooltip = "Continuous checking of proof document (visible and required parts)"
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   212
    reactions += { case ButtonClicked(_) => continuous_checking = selected }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   213
    def load() { selected = continuous_checking }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   214
    load()
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   215
  }
68c664737d04 added option "jedit_auto_load";
wenzelm
parents: 53497
diff changeset
   216
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   217
61211
8a5d5ca5d8bc added action "isabelle-update-state";
wenzelm
parents: 61208
diff changeset
   218
  /* update state */
8a5d5ca5d8bc added action "isabelle-update-state";
wenzelm
parents: 61208
diff changeset
   219
8a5d5ca5d8bc added action "isabelle-update-state";
wenzelm
parents: 61208
diff changeset
   220
  def update_state(view: View): Unit =
61802
1d81de0bddc4 more thorough update request: semantic state of command may have changed elsewise;
wenzelm
parents: 61725
diff changeset
   221
    state_dockable(view).foreach(_.update_request())
61211
8a5d5ca5d8bc added action "isabelle-update-state";
wenzelm
parents: 61208
diff changeset
   222
8a5d5ca5d8bc added action "isabelle-update-state";
wenzelm
parents: 61208
diff changeset
   223
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   224
  /* 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
   225
64817
0bb6b582bb4f separate Buffer_Model vs. File_Model;
wenzelm
parents: 64813
diff changeset
   226
  def set_node_required(view: View) { Document_Model.view_node_required(view, set = true) }
0bb6b582bb4f separate Buffer_Model vs. File_Model;
wenzelm
parents: 64813
diff changeset
   227
  def reset_node_required(view: View) { Document_Model.view_node_required(view, set = false) }
0bb6b582bb4f separate Buffer_Model vs. File_Model;
wenzelm
parents: 64813
diff changeset
   228
  def toggle_node_required(view: View) { Document_Model.view_node_required(view, toggle = true) }
52815
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   229
eaad5fe7bb1b actions and shortcuts to change node_required status, with painter that looks like CheckBox (non-clickable);
wenzelm
parents: 51533
diff changeset
   230
73039
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   231
  /* full screen */
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   232
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   233
  // see toggleFullScreen() method in jEdit/org/gjt/sp/jedit/View.java
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   234
  def toggle_full_screen(view: View)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   235
  {
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   236
    if (Untyped.get[Boolean](view, "fullScreenMode")) view.toggleFullScreen()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   237
    else {
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   238
      Untyped.set[Boolean](view, "fullScreenMode", true)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   239
      val screen = GUI.screen_size(view)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   240
      view.dispose()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   241
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   242
      view.updateFullScreenProps()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   243
      Untyped.set[Rectangle](view, "windowedBounds", view.getBounds)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   244
      view.setUndecorated(true)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   245
      view.setBounds(screen.full_screen_bounds)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   246
      view.validate()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   247
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   248
      view.setVisible(true)
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   249
      view.toFront()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   250
      view.closeAllMenus()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   251
      view.getEditPane.getTextArea.requestFocus()
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   252
      EditBus.send(new ViewUpdate(view, ViewUpdate.FULL_SCREEN_TOGGLED))
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   253
    }
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   254
  }
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   255
4b1cfbf96e36 action isabelle.toggle-full-screen;
wenzelm
parents: 72976
diff changeset
   256
50198
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   257
  /* font size */
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   258
55827
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   259
  def reset_font_size() {
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   260
    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
   261
  }
55827
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   262
  def increase_font_size() { Font_Info.main_change.step(1) }
8a881f83e206 clarified module structure;
wenzelm
parents: 55825
diff changeset
   263
  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
   264
0c7b351a6871 added convenience actions isabelle.increase-font-size and isabelle.decrease-font-size;
wenzelm
parents: 50187
diff changeset
   265
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   266
  /* structured edits */
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   267
66180
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   268
  def indent_enabled(buffer: JEditBuffer, option: String): Boolean =
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   269
    indent_rule(JEdit_Lib.buffer_mode(buffer)).isDefined &&
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   270
    buffer.getStringProperty("autoIndent") == "full" &&
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   271
    PIDE.options.bool(option)
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   272
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   273
  def indent_input(text_area: TextArea)
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   274
  {
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   275
    val buffer = text_area.getBuffer
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   276
    val line = text_area.getCaretLine
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   277
    val caret = text_area.getCaretPosition
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   278
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   279
    if (text_area.isEditable && indent_enabled(buffer, "jedit_indent_input")) {
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   280
      buffer_syntax(buffer) match {
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66182
diff changeset
   281
        case Some(syntax) =>
c67933ea9234 tuned signature;
wenzelm
parents: 66182
diff changeset
   282
          val nav = new Text_Structure.Navigator(syntax, buffer, true)
66180
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   283
          nav.iterator(line, 1).toStream.headOption match {
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   284
            case Some(Text.Info(range, tok))
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   285
            if range.stop == caret && syntax.keywords.is_indent_command(tok) =>
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   286
              buffer.indentLine(line, true)
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   287
            case _ =>
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   288
          }
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66182
diff changeset
   289
        case None =>
66180
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   290
      }
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   291
    }
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   292
  }
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   293
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   294
  def newline(text_area: TextArea)
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   295
  {
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   296
    if (!text_area.isEditable()) text_area.getToolkit().beep()
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   297
    else {
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   298
      val buffer = text_area.getBuffer
66182
wenzelm
parents: 66180
diff changeset
   299
      val line = text_area.getCaretLine
wenzelm
parents: 66180
diff changeset
   300
      val caret = text_area.getCaretPosition
wenzelm
parents: 66180
diff changeset
   301
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   302
      def nl { text_area.userInput('\n') }
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   303
66180
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   304
      if (indent_enabled(buffer, "jedit_indent_newline")) {
201d42f67bba indentation of keywords after input;
wenzelm
parents: 66174
diff changeset
   305
        buffer_syntax(buffer) match {
66182
wenzelm
parents: 66180
diff changeset
   306
          case Some(syntax) =>
63484
2033a3960c36 auto indentation of quasi commands;
wenzelm
parents: 63477
diff changeset
   307
            val keywords = syntax.keywords
2033a3960c36 auto indentation of quasi commands;
wenzelm
parents: 63477
diff changeset
   308
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 66120
diff changeset
   309
            val (toks1, toks2) = Text_Structure.split_line_content(buffer, keywords, line, caret)
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   310
66174
8903653fc22e avoid trailing spaces;
wenzelm
parents: 66173
diff changeset
   311
            if (toks1.isEmpty) buffer.removeTrailingWhiteSpace(Array(line))
8903653fc22e avoid trailing spaces;
wenzelm
parents: 66173
diff changeset
   312
            else if (keywords.is_indent_command(toks1.head)) buffer.indentLine(line, true)
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   313
66469
a6ec0172211a avoid compound edit: it causes confusion about the context of the last line, e.g. final "end";
wenzelm
parents: 66183
diff changeset
   314
            if (toks2.isEmpty || keywords.is_indent_command(toks2.head)) {
a6ec0172211a avoid compound edit: it causes confusion about the context of the last line, e.g. final "end";
wenzelm
parents: 66183
diff changeset
   315
              text_area.setSelectedText("\n")
a6ec0172211a avoid compound edit: it causes confusion about the context of the last line, e.g. final "end";
wenzelm
parents: 66183
diff changeset
   316
              if (!buffer.indentLine(line + 1, true)) text_area.goToStartOfWhiteSpace(false)
a6ec0172211a avoid compound edit: it causes confusion about the context of the last line, e.g. final "end";
wenzelm
parents: 66183
diff changeset
   317
            }
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   318
            else nl
66182
wenzelm
parents: 66180
diff changeset
   319
          case None => nl
63455
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   320
        }
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   321
      }
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   322
      else nl
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   323
    }
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   324
  }
019856db2bb6 added action "isabelle.newline" (shortcut ENTER);
wenzelm
parents: 63444
diff changeset
   325
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   326
  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
   327
  {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   328
    val buffer = text_area.getBuffer
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   329
    JEdit_Lib.buffer_edit(buffer) {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   330
      val text1 =
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   331
        if (text_area.getSelectionCount == 0) {
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   332
          def pad(range: Text.Range): String =
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 67004
diff changeset
   333
            if (JEdit_Lib.get_text(buffer, range) == Some("\n")) "" else "\n"
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   334
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56587
diff changeset
   335
          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
   336
          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
   337
          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
   338
        }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   339
        else text
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   340
      text_area.setSelectedText(text1)
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   341
    }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   342
  }
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   343
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   344
  def edit_command(
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   345
    snapshot: Document.Snapshot,
63508
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   346
    text_area: TextArea,
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   347
    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
   348
    id: Document_ID.Generic,
63508
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   349
    text: String)
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   350
  {
63508
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   351
    val buffer = text_area.getBuffer
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   352
    if (!snapshot.is_outdated && text != "") {
64813
7283f41d05ab manage buffer models as explicit global state;
wenzelm
parents: 64665
diff changeset
   353
      (snapshot.find_command(id), Document_Model.get(buffer)) match {
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
   354
        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
   355
          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
   356
            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
   357
              JEdit_Lib.buffer_edit(buffer) {
68728
c07f6fa02c59 tuned signature;
wenzelm
parents: 67148
diff changeset
   358
                val range = command.core_range + start
63508
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   359
                JEdit_Lib.buffer_edit(buffer) {
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   360
                  if (padding) {
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   361
                    text_area.moveCaretPosition(start + range.length)
64456
f630e9385d7e more accurate start_line: avoid changing the original command (e.g. 'try', 'sledgehammer');
wenzelm
parents: 63868
diff changeset
   362
                    val start_line = text_area.getCaretLine + 1
63508
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   363
                    text_area.setSelectedText("\n" + text)
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   364
                    val end_line = text_area.getCaretLine
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   365
                    buffer.indentLines(start_line, end_line)
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   366
                  }
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   367
                  else {
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   368
                    buffer.remove(start, range.length)
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   369
                    text_area.moveCaretPosition(start)
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   370
                    text_area.setSelectedText(text)
348599644887 more structured edit, including indentation;
wenzelm
parents: 63484
diff changeset
   371
                  }
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
   372
                }
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   373
              }
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
   374
            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
   375
          }
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
   376
        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
   377
      }
53497
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   378
    }
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   379
  }
07bb77881b8d tuned signature;
wenzelm
parents: 53322
diff changeset
   380
50341
0c65a7cfc0f3 provide general insert_line_padding as convenience operation, e.g. for BeanShell macros;
wenzelm
parents: 50299
diff changeset
   381
72930
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   382
  /* formal entities */
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   383
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   384
  def goto_entity(view: View)
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   385
  {
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   386
    val text_area = view.getTextArea
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   387
    for {
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   388
      doc_view <- Document_View.get(text_area)
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   389
      rendering = doc_view.get_rendering()
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   390
      caret_range = JEdit_Lib.caret_range(text_area)
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   391
      link <- rendering.hyperlink_entity(caret_range)
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   392
    } link.info.follow(view)
0cc298e29aff added action isabelle.goto-entity to follow links in a narrow formal sense;
wenzelm
parents: 72928
diff changeset
   393
  }
63236
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   394
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   395
  def select_entity(text_area: JEditTextArea)
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   396
  {
71495
wenzelm
parents: 68728
diff changeset
   397
    for (doc_view <- Document_View.get(text_area)) {
wenzelm
parents: 68728
diff changeset
   398
      val rendering = doc_view.get_rendering()
63236
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   399
      val caret_range = JEdit_Lib.caret_range(text_area)
72928
25cc8f5184e5 clarified select_entity (again): it is meant as approximation to "refactoring" and thus only makes sense for defs within the same buffer;
wenzelm
parents: 72927
diff changeset
   400
      val buffer_range = JEdit_Lib.buffer_range(text_area.getBuffer)
25cc8f5184e5 clarified select_entity (again): it is meant as approximation to "refactoring" and thus only makes sense for defs within the same buffer;
wenzelm
parents: 72927
diff changeset
   401
      val active_focus = rendering.caret_focus_ranges(caret_range, buffer_range)
63236
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   402
      if (active_focus.nonEmpty) {
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   403
        text_area.selectNone()
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   404
        for (r <- active_focus)
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   405
          text_area.addToSelection(new Selection.Range(r.start, r.stop))
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   406
      }
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   407
    }
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   408
  }
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   409
48bc9045866e added action "isabelle.select-entity";
wenzelm
parents: 62631
diff changeset
   410
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   411
  /* completion */
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   412
56586
5ef60881681d explicit menu action to complete word;
wenzelm
parents: 56578
diff changeset
   413
  def complete(view: View, word_only: Boolean)
53293
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   414
  {
57424
966b12f636b9 removed slightly odd fall-back on complete-word (NB: connection to default menu action is unclear);
wenzelm
parents: 56879
diff changeset
   415
    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
   416
  }
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   417
fd27b8f5a479 added action isabelle.complete, using standard jEdit keyboard shortcut;
wenzelm
parents: 53281
diff changeset
   418
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   419
  /* control styles */
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   420
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   421
  def control_sub(text_area: JEditTextArea)
65259
41d12227d5dc clarified modules;
wenzelm
parents: 65247
diff changeset
   422
  { Syntax_Style.edit_control_style(text_area, Symbol.sub) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   423
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   424
  def control_sup(text_area: JEditTextArea)
65259
41d12227d5dc clarified modules;
wenzelm
parents: 65247
diff changeset
   425
  { Syntax_Style.edit_control_style(text_area, Symbol.sup) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   426
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   427
  def control_bold(text_area: JEditTextArea)
65259
41d12227d5dc clarified modules;
wenzelm
parents: 65247
diff changeset
   428
  { Syntax_Style.edit_control_style(text_area, Symbol.bold) }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   429
61483
07c8d5d8acab added action "isabelle-emph";
wenzelm
parents: 61211
diff changeset
   430
  def control_emph(text_area: JEditTextArea)
65259
41d12227d5dc clarified modules;
wenzelm
parents: 65247
diff changeset
   431
  { Syntax_Style.edit_control_style(text_area, Symbol.emph) }
61483
07c8d5d8acab added action "isabelle-emph";
wenzelm
parents: 61211
diff changeset
   432
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   433
  def control_reset(text_area: JEditTextArea)
65259
41d12227d5dc clarified modules;
wenzelm
parents: 65247
diff changeset
   434
  { Syntax_Style.edit_control_style(text_area, "") }
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   435
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   436
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   437
  /* block styles */
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   438
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   439
  private def enclose_input(text_area: JEditTextArea, s1: String, s2: String)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   440
  {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71520
diff changeset
   441
    s1.foreach(text_area.userInput)
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71520
diff changeset
   442
    s2.foreach(text_area.userInput)
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   443
    s2.foreach(_ => text_area.goToPrevCharacter(false))
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   444
  }
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   445
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   446
  def input_bsub(text_area: JEditTextArea)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   447
  { enclose_input(text_area, Symbol.bsub_decoded, Symbol.esub_decoded) }
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   448
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   449
  def input_bsup(text_area: JEditTextArea)
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   450
  { enclose_input(text_area, Symbol.bsup_decoded, Symbol.esup_decoded) }
56574
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   451
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   452
67132
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   453
  /* antiquoted cartouche */
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   454
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   455
  def antiquoted_cartouche(text_area: TextArea)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   456
  {
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   457
    val buffer = text_area.getBuffer
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   458
    for {
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   459
      doc_view <- Document_View.get(text_area)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   460
      rendering = doc_view.get_rendering()
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   461
      caret_range = JEdit_Lib.caret_range(text_area)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   462
      antiq_range <- rendering.antiquoted(caret_range)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   463
      antiq_text <- JEdit_Lib.get_text(buffer, antiq_range)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   464
      body_text <- Antiquote.read_antiq_body(antiq_text)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   465
      (name, arg) <- Token.read_antiq_arg(Keyword.Keywords.empty, body_text)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   466
      if Symbol.is_ascii_identifier(name)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   467
    } {
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   468
      val op_text =
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   469
        Isabelle_Encoding.perhaps_decode(buffer,
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   470
          Symbol.control_prefix + name + Symbol.control_suffix)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   471
      val arg_text =
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   472
        if (arg.isEmpty) ""
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   473
        else if (Isabelle_Encoding.is_active(buffer)) Symbol.cartouche_decoded(arg.get)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   474
        else Symbol.cartouche(arg.get)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   475
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   476
      buffer.remove(antiq_range.start, antiq_range.length)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   477
      text_area.moveCaretPosition(antiq_range.start)
67148
d24dcac5eb4c more robust, e.g. when Sidekick produces multi-selection;
wenzelm
parents: 67132
diff changeset
   478
      text_area.selectNone
67132
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   479
      text_area.setSelectedText(op_text + arg_text)
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   480
    }
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   481
  }
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   482
336831647779 added action to make antiquoted cartouche;
wenzelm
parents: 67014
diff changeset
   483
56574
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   484
  /* spell-checker dictionary */
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   485
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   486
  def update_dictionary(text_area: JEditTextArea, include: Boolean, permanent: Boolean)
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   487
  {
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   488
    for {
65239
509a9b0ad02e avoid global variables with implicit initialization;
wenzelm
parents: 65224
diff changeset
   489
      spell_checker <- PIDE.plugin.spell_checker.get
64882
c3b42ac0cf81 tuned signature;
wenzelm
parents: 64854
diff changeset
   490
      doc_view <- Document_View.get(text_area)
56576
86148ca3c4fd added context menu for spell checker actions;
wenzelm
parents: 56575
diff changeset
   491
      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
   492
      range = JEdit_Lib.caret_range(text_area)
66116
dad409cd3423 clarified modules;
wenzelm
parents: 65361
diff changeset
   493
      Text.Info(_, word) <- Spell_Checker.current_word(rendering, range)
56575
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   494
    } {
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   495
      spell_checker.update(word, include, permanent)
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   496
      JEdit_Lib.jedit_views().foreach(_.repaint())
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   497
    }
56574
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   498
  }
2b38472a4695 some actions to maintain spell-checker dictionary;
wenzelm
parents: 56394
diff changeset
   499
56578
e73723b39c82 proper signature for dynamic BeanShell action;
wenzelm
parents: 56576
diff changeset
   500
  def reset_dictionary()
56575
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   501
  {
65239
509a9b0ad02e avoid global variables with implicit initialization;
wenzelm
parents: 65224
diff changeset
   502
    for (spell_checker <- PIDE.plugin.spell_checker.get)
56575
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   503
    {
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   504
      spell_checker.reset()
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   505
      JEdit_Lib.jedit_views().foreach(_.repaint())
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   506
    }
cdd609ea595d full repaint after dictionary update;
wenzelm
parents: 56574
diff changeset
   507
  }
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   508
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   509
60878
1f0d2bbcf38b added action to toggle breakpoints (on editor side);
wenzelm
parents: 60843
diff changeset
   510
  /* debugger */
1f0d2bbcf38b added action to toggle breakpoints (on editor side);
wenzelm
parents: 60843
diff changeset
   511
60890
e2aeaa397e93 GUI actions depend on active debugger;
wenzelm
parents: 60880
diff changeset
   512
  def toggle_breakpoint(text_area: JEditTextArea): Unit =
65224
wenzelm
parents: 65213
diff changeset
   513
  {
wenzelm
parents: 65213
diff changeset
   514
    GUI_Thread.require {}
wenzelm
parents: 65213
diff changeset
   515
65247
63d91d5de121 tuned signature;
wenzelm
parents: 65240
diff changeset
   516
    if (PIDE.session.debugger.is_active()) {
65224
wenzelm
parents: 65213
diff changeset
   517
      Debugger_Dockable.get_breakpoint(text_area, text_area.getCaretPosition) match {
wenzelm
parents: 65213
diff changeset
   518
        case Some((command, breakpoint)) =>
65247
63d91d5de121 tuned signature;
wenzelm
parents: 65240
diff changeset
   519
          PIDE.session.debugger.toggle_breakpoint(command, breakpoint)
65224
wenzelm
parents: 65213
diff changeset
   520
          jEdit.propertiesChanged()
wenzelm
parents: 65213
diff changeset
   521
        case None =>
wenzelm
parents: 65213
diff changeset
   522
      }
60890
e2aeaa397e93 GUI actions depend on active debugger;
wenzelm
parents: 60880
diff changeset
   523
    }
65224
wenzelm
parents: 65213
diff changeset
   524
  }
60878
1f0d2bbcf38b added action to toggle breakpoints (on editor side);
wenzelm
parents: 60843
diff changeset
   525
1f0d2bbcf38b added action to toggle breakpoints (on editor side);
wenzelm
parents: 60843
diff changeset
   526
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   527
  /* plugin options */
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   528
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   529
  def plugin_options(frame: Frame)
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   530
  {
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   531
    GUI_Thread.require {}
61024
7b7f01afab71 avoid deprecated PluginOptions with its unbounded window size;
wenzelm
parents: 60890
diff changeset
   532
    jEdit.setProperty("Plugin Options.last", "isabelle-general")
7b7f01afab71 avoid deprecated PluginOptions with its unbounded window size;
wenzelm
parents: 60890
diff changeset
   533
    new CombinedOptions(frame, 1)
57627
65fc7ae1bf66 added action "isabelle.options" (despite problems with initial window size);
wenzelm
parents: 57612
diff changeset
   534
  }
65240
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   535
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   536
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   537
  /* popups */
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   538
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   539
  def dismissed_popups(view: View): Boolean =
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   540
  {
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   541
    var dismissed = false
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   542
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   543
    JEdit_Lib.jedit_text_areas(view).foreach(text_area =>
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   544
      if (Completion_Popup.Text_Area.dismissed(text_area)) dismissed = true)
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   545
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   546
    if (Pretty_Tooltip.dismissed_all()) dismissed = true
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   547
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   548
    dismissed
fe5a96240749 clarified modules;
wenzelm
parents: 65239
diff changeset
   549
  }
71497
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   550
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   551
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   552
  /* tooltips */
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   553
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   554
  def show_tooltip(view: View, control: Boolean)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   555
  {
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   556
    GUI_Thread.require {}
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   557
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   558
    val text_area = view.getTextArea
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   559
    val painter = text_area.getPainter
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   560
    val caret_range = JEdit_Lib.caret_range(text_area)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   561
    for {
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   562
      doc_view <- Document_View.get(text_area)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   563
      rendering = doc_view.get_rendering()
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   564
      tip <- rendering.tooltip(caret_range, control)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   565
      loc0 <- Option(text_area.offsetToXY(caret_range.start))
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   566
    } {
71504
f2a79950748e tuned GUI;
wenzelm
parents: 71502
diff changeset
   567
      val loc = new Point(loc0.x, loc0.y + painter.getLineHeight * 3 / 4)
71497
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   568
      val results = rendering.snapshot.command_results(tip.range)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   569
      Pretty_Tooltip(view, painter, loc, rendering, results, tip)
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   570
    }
a80fa14bccb8 more Isabelle/jEdit actions;
wenzelm
parents: 71495
diff changeset
   571
  }
71499
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   572
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   573
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   574
  /* error navigation */
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   575
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   576
  private def goto_error(
71502
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   577
    view: View,
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   578
    range: Text.Range,
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   579
    avoid_range: Text.Range = Text.Range.offside,
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   580
    which: String = "")(get: List[Text.Markup] => Option[Text.Markup])
71499
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   581
  {
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   582
    GUI_Thread.require {}
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   583
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   584
    val text_area = view.getTextArea
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   585
    for (doc_view <- Document_View.get(text_area)) {
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   586
      val rendering = doc_view.get_rendering()
71502
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   587
      val errs = rendering.errors(range).filterNot(_.range.overlaps(avoid_range))
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   588
      get(errs) match {
71499
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   589
        case Some(err) =>
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   590
          PIDE.editor.goto_buffer(false, view, view.getBuffer, err.range.start)
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   591
        case None =>
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   592
          view.getStatus.setMessageAndClear("No " + which + "error in current document snapshot")
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   593
      }
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   594
    }
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   595
  }
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   596
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   597
  def goto_first_error(view: View): Unit =
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   598
    goto_error(view, JEdit_Lib.buffer_range(view.getBuffer))(_.headOption)
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   599
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   600
  def goto_last_error(view: View): Unit =
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   601
    goto_error(view, JEdit_Lib.buffer_range(view.getBuffer))(_.lastOption)
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   602
71502
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   603
  def goto_prev_error(view: View)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   604
  {
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   605
    val caret_range = JEdit_Lib.caret_range(view.getTextArea)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   606
    val range = Text.Range(0, caret_range.stop)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   607
    goto_error(view, range, avoid_range = caret_range, which = "previous ")(_.lastOption)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   608
  }
71499
29f37eb9bd0f more Isabelle/jEdit actions;
wenzelm
parents: 71497
diff changeset
   609
71502
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   610
  def goto_next_error(view: View)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   611
  {
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   612
    val caret_range = JEdit_Lib.caret_range(view.getTextArea)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   613
    val range = Text.Range(caret_range.start, view.getBuffer.getLength)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   614
    goto_error(view, range, avoid_range = caret_range, which = "next ")(_.headOption)
f61e55bab00c proper navigation wrt. caret;
wenzelm
parents: 71499
diff changeset
   615
  }
71520
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71504
diff changeset
   616
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71504
diff changeset
   617
72976
51442c6dc296 more robust Java monitor: avoid odd warning about insecure connection;
wenzelm
parents: 72930
diff changeset
   618
  /* java monitor */
71520
62755ec99671 support Java/VM monitoring via jconsole;
wenzelm
parents: 71504
diff changeset
   619
72976
51442c6dc296 more robust Java monitor: avoid odd warning about insecure connection;
wenzelm
parents: 72930
diff changeset
   620
  def java_monitor(view: View): Unit =
51442c6dc296 more robust Java monitor: avoid odd warning about insecure connection;
wenzelm
parents: 72930
diff changeset
   621
    Java_Monitor.java_monitor_external(view, look_and_feel = GUI.current_laf())
50183
2b3e24e1c9e7 improved editing support for control styles;
wenzelm
parents:
diff changeset
   622
}