src/Tools/jEdit/src/document_model.scala
author wenzelm
Tue, 17 Mar 2015 16:38:09 +0100
changeset 59737 c443ca40ef8d
parent 59736 5c1a0069b9d3
child 60272 4f72b00d9952
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43282
5d294220ca43 moved sources -- eliminated Netbeans artifact of jedit package directory;
wenzelm
parents: 40851
diff changeset
     1
/*  Title:      Tools/jEdit/src/document_model.scala
36760
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     2
    Author:     Fabian Immler, TU Munich
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     3
    Author:     Makarius
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     4
55778
e1fd8780f997 tuned comment;
wenzelm
parents: 55435
diff changeset
     5
Document model connected to jEdit buffer (node in theory graph or
e1fd8780f997 tuned comment;
wenzelm
parents: 55435
diff changeset
     6
auxiliary file).
36760
b82a698ef6c9 tuned headers;
wenzelm
parents: 36015
diff changeset
     7
*/
34407
aad6834ba380 added some headers and comments;
wenzelm
parents: 34406
diff changeset
     8
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
     9
package isabelle.jedit
34760
dc7f5e0d9d27 misc modernization of names;
wenzelm
parents: 34759
diff changeset
    10
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    11
36015
6111de7c916a adapted to Scala 2.8.0 Beta 1;
wenzelm
parents: 34871
diff changeset
    12
import isabelle._
6111de7c916a adapted to Scala 2.8.0 Beta 1;
wenzelm
parents: 34871
diff changeset
    13
34693
3e995f100ad2 sealed Edit;
wenzelm
parents: 34685
diff changeset
    14
import scala.collection.mutable
59736
5c1a0069b9d3 tight span for theory header, which is relevant for error positions (including semantic completion);
wenzelm
parents: 59715
diff changeset
    15
import scala.util.parsing.input.CharSequenceReader
34446
5c79f97ec1d1 superficial tuning;
wenzelm
parents: 34445
diff changeset
    16
59077
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    17
import org.gjt.sp.jedit.jEdit
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    18
import org.gjt.sp.jedit.Buffer
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
    19
import org.gjt.sp.jedit.buffer.{BufferAdapter, BufferListener, JEditBuffer, LineManager}
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    20
34760
dc7f5e0d9d27 misc modernization of names;
wenzelm
parents: 34759
diff changeset
    21
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    22
object Document_Model
34588
e8ac8794971f superficial tuning;
wenzelm
parents: 34583
diff changeset
    23
{
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    24
  /* document model of buffer */
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    25
50565
b00ea974613c tuned property name;
wenzelm
parents: 50363
diff changeset
    26
  private val key = "PIDE.document_model"
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    27
34788
3779c54a2d21 direct apply for Document_Model and Document_View;
wenzelm
parents: 34784
diff changeset
    28
  def apply(buffer: Buffer): Option[Document_Model] =
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    29
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
    30
    GUI_Thread.require {}
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    31
    buffer.getProperty(key) match {
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    32
      case model: Document_Model => Some(model)
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    33
      case _ => None
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    34
    }
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    35
  }
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    36
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    37
  def exit(buffer: Buffer)
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    38
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
    39
    GUI_Thread.require {}
34788
3779c54a2d21 direct apply for Document_Model and Document_View;
wenzelm
parents: 34784
diff changeset
    40
    apply(buffer) match {
39636
610dc743932c permissive exit;
wenzelm
parents: 39179
diff changeset
    41
      case None =>
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    42
      case Some(model) =>
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    43
        model.deactivate()
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
    44
        buffer.unsetProperty(key)
47058
34761733526c refined init_model: allow change of buffer name as caused by "Save as", for example;
wenzelm
parents: 46920
diff changeset
    45
        buffer.propertiesChanged
34653
2e033aaf128e commands carrying state-information
immler@in.tum.de
parents: 34652
diff changeset
    46
    }
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    47
  }
43397
dba359c0ae3b more robust init;
wenzelm
parents: 43394
diff changeset
    48
59077
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    49
  def init(session: Session, buffer: Buffer, node_name: Document.Node.Name,
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    50
    old_model: Option[Document_Model]): Document_Model =
43397
dba359c0ae3b more robust init;
wenzelm
parents: 43394
diff changeset
    51
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
    52
    GUI_Thread.require {}
59077
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    53
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    54
    old_model match {
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    55
      case Some(old)
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    56
      if old.node_name == node_name && Isabelle.buffer_token_marker(buffer).isEmpty => old
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    57
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    58
      case _ =>
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    59
        apply(buffer).map(_.deactivate)
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    60
        val model = new Document_Model(session, buffer, node_name)
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    61
        buffer.setProperty(key, model)
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    62
        model.activate()
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    63
        buffer.propertiesChanged
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    64
        model
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
    65
    }
43397
dba359c0ae3b more robust init;
wenzelm
parents: 43394
diff changeset
    66
  }
34318
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    67
}
c13e168a8ae6 original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff changeset
    68
38151
2837c952ca31 explicit Change.Snapshot and Document.Node;
wenzelm
parents: 38150
diff changeset
    69
52973
d5f7fa1498b7 tuned signature;
wenzelm
parents: 52887
diff changeset
    70
class Document_Model(val session: Session, val buffer: Buffer, val node_name: Document.Node.Name)
34588
e8ac8794971f superficial tuning;
wenzelm
parents: 34583
diff changeset
    71
{
44385
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
    72
  /* header */
38222
dac5fa0ac971 replaced individual Document_Model history by all-inclusive one in Session;
wenzelm
parents: 38158
diff changeset
    73
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    74
  def is_theory: Boolean = node_name.is_theory
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    75
48707
ba531af91148 simplified Document.Node.Header -- internalized errors;
wenzelm
parents: 47393
diff changeset
    76
  def node_header(): Document.Node.Header =
46920
5f44c8bea84e more explicit indication of swing thread context;
wenzelm
parents: 46750
diff changeset
    77
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
    78
    GUI_Thread.require {}
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    79
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    80
    if (is_theory) {
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    81
      JEdit_Lib.buffer_lock(buffer) {
59737
wenzelm
parents: 59736
diff changeset
    82
        Token_Markup.line_token_iterator(
wenzelm
parents: 59736
diff changeset
    83
          Thy_Header.bootstrap_syntax, buffer, 0, buffer.getLineCount).collectFirst(
wenzelm
parents: 59736
diff changeset
    84
            {
wenzelm
parents: 59736
diff changeset
    85
              case Text.Info(range, tok)
wenzelm
parents: 59736
diff changeset
    86
              if tok.is_command && tok.source == Thy_Header.THEORY => range.start
wenzelm
parents: 59736
diff changeset
    87
            })
wenzelm
parents: 59736
diff changeset
    88
          match {
wenzelm
parents: 59736
diff changeset
    89
            case Some(offset) =>
wenzelm
parents: 59736
diff changeset
    90
              val length = buffer.getLength - offset
wenzelm
parents: 59736
diff changeset
    91
              PIDE.resources.check_thy_reader("", node_name,
wenzelm
parents: 59736
diff changeset
    92
                new CharSequenceReader(buffer.getSegment(offset, length)), Token.Pos.command)
wenzelm
parents: 59736
diff changeset
    93
            case None => Document.Node.no_header
wenzelm
parents: 59736
diff changeset
    94
          }
46748
8f3ae4d04a2d refined node_header -- more direct buffer access (again);
wenzelm
parents: 46740
diff changeset
    95
      }
8f3ae4d04a2d refined node_header -- more direct buffer access (again);
wenzelm
parents: 46740
diff changeset
    96
    }
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
    97
    else Document.Node.no_header
46920
5f44c8bea84e more explicit indication of swing thread context;
wenzelm
parents: 46750
diff changeset
    98
  }
44385
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
    99
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   100
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   101
  /* perspective */
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   102
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   103
  // owned by GUI thread
52816
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   104
  private var _node_required = false
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   105
  def node_required: Boolean = _node_required
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   106
  def node_required_=(b: Boolean)
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   107
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   108
    GUI_Thread.require {}
54531
8330faaeebd5 restrict node_required status and Theories panel to actual theories;
wenzelm
parents: 54530
diff changeset
   109
    if (_node_required != b && is_theory) {
52816
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   110
      _node_required = b
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   111
      PIDE.options_changed()
52974
908e8a36e975 tuned signature;
wenzelm
parents: 52973
diff changeset
   112
      PIDE.editor.flush()
52816
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   113
    }
c608e0ade554 home-grown mouse handling to pretend that the painted checkbox is actually a Swing component;
wenzelm
parents: 52815
diff changeset
   114
  }
52808
143f225e50f5 allow explicit indication of required node: full eval, no prints;
wenzelm
parents: 52807
diff changeset
   115
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   116
  def node_perspective(doc_blobs: Document.Blobs): (Boolean, Document.Node.Perspective_Text) =
44385
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   117
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   118
    GUI_Thread.require {}
52759
a20631db9c8a support declarative editor_execution_range, instead of old-style check/cancel buttons;
wenzelm
parents: 50565
diff changeset
   119
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
   120
    if (Isabelle.continuous_checking && is_theory) {
54325
2c4155003352 clarified Editor.current_command: allow outdated snapshot;
wenzelm
parents: 52977
diff changeset
   121
      val snapshot = this.snapshot()
54530
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   122
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   123
      val document_view_ranges =
57883
d50aeb916a4b tuned -- eliminated redundant check (see 1f77110c94ef);
wenzelm
parents: 57621
diff changeset
   124
        for {
d50aeb916a4b tuned -- eliminated redundant check (see 1f77110c94ef);
wenzelm
parents: 57621
diff changeset
   125
          doc_view <- PIDE.document_views(buffer)
d50aeb916a4b tuned -- eliminated redundant check (see 1f77110c94ef);
wenzelm
parents: 57621
diff changeset
   126
          range <- doc_view.perspective(snapshot).ranges
d50aeb916a4b tuned -- eliminated redundant check (see 1f77110c94ef);
wenzelm
parents: 57621
diff changeset
   127
        } yield range
54530
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   128
56314
9a513737a0b2 tuned signature;
wenzelm
parents: 56208
diff changeset
   129
      val load_ranges =
54530
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   130
        for {
56314
9a513737a0b2 tuned signature;
wenzelm
parents: 56208
diff changeset
   131
          cmd <- snapshot.node.load_commands
54530
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   132
          blob_name <- cmd.blobs_names
56457
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 56335
diff changeset
   133
          blob_buffer <- JEdit_Lib.jedit_buffer(blob_name)
59319
wenzelm
parents: 59080
diff changeset
   134
          if JEdit_Lib.jedit_text_areas(blob_buffer).nonEmpty
54530
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   135
          start <- snapshot.node.command_start(cmd)
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   136
          range = snapshot.convert(cmd.proper_range + start)
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   137
        } yield range
2c1440f70028 ranges of thy_load commands count as visible within perspective;
wenzelm
parents: 54521
diff changeset
   138
56314
9a513737a0b2 tuned signature;
wenzelm
parents: 56208
diff changeset
   139
      val reparse = snapshot.node.load_commands.exists(_.blobs_changed(doc_blobs))
55781
b3a4207fb9a6 proper update of text perspective for nodes with changed blobs, which is important to refresh the corresponding command perspective (otherwise it might refer to invalid thy_load commands and cause full execution of the node by the prover);
wenzelm
parents: 55778
diff changeset
   140
b3a4207fb9a6 proper update of text perspective for nodes with changed blobs, which is important to refresh the corresponding command perspective (otherwise it might refer to invalid thy_load commands and cause full execution of the node by the prover);
wenzelm
parents: 55778
diff changeset
   141
      (reparse,
b3a4207fb9a6 proper update of text perspective for nodes with changed blobs, which is important to refresh the corresponding command perspective (otherwise it might refer to invalid thy_load commands and cause full execution of the node by the prover);
wenzelm
parents: 55778
diff changeset
   142
        Document.Node.Perspective(node_required,
56314
9a513737a0b2 tuned signature;
wenzelm
parents: 56208
diff changeset
   143
          Text.Perspective(document_view_ranges ::: load_ranges),
55781
b3a4207fb9a6 proper update of text perspective for nodes with changed blobs, which is important to refresh the corresponding command perspective (otherwise it might refer to invalid thy_load commands and cause full execution of the node by the prover);
wenzelm
parents: 55778
diff changeset
   144
          PIDE.editor.node_overlays(node_name)))
52849
199e9fa5a5c2 maintain overlays within node perspective;
wenzelm
parents: 52816
diff changeset
   145
    }
57615
df1b3452d71c more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents: 57612
diff changeset
   146
    else (false, Document.Node.no_perspective_text)
44385
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   147
  }
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   148
e7fdb008aa7d propagate editor perspective through document model;
wenzelm
parents: 44379
diff changeset
   149
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
   150
  /* blob */
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
   151
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   152
  private var _blob: Option[(Bytes, Symbol.Text_Chunk)] = None  // owned by GUI thread
54511
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   153
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   154
  private def reset_blob(): Unit = GUI_Thread.require { _blob = None }
54511
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   155
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   156
  def get_blob(): Option[Document.Blob] =
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   157
    GUI_Thread.require {
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   158
      if (is_theory) None
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   159
      else {
56473
5b5c750e9763 simplified Text.Chunk -- eliminated ooddities;
wenzelm
parents: 56469
diff changeset
   160
        val (bytes, chunk) =
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   161
          _blob match {
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   162
            case Some(x) => x
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   163
            case None =>
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 55791
diff changeset
   164
              val bytes = PIDE.resources.file_content(buffer)
56746
d37a5d09a277 tuned signature;
wenzelm
parents: 56662
diff changeset
   165
              val chunk = Symbol.Text_Chunk(buffer.getSegment(0, buffer.getLength))
56473
5b5c750e9763 simplified Text.Chunk -- eliminated ooddities;
wenzelm
parents: 56469
diff changeset
   166
              _blob = Some((bytes, chunk))
5b5c750e9763 simplified Text.Chunk -- eliminated ooddities;
wenzelm
parents: 56469
diff changeset
   167
              (bytes, chunk)
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   168
          }
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   169
        val changed = pending_edits.is_pending()
56473
5b5c750e9763 simplified Text.Chunk -- eliminated ooddities;
wenzelm
parents: 56469
diff changeset
   170
        Some(Document.Blob(bytes, chunk, changed))
54511
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   171
      }
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   172
    }
54509
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
   173
1f77110c94ef maintain document model for all files, with document view for theory only, and special blob for non-theory files;
wenzelm
parents: 54464
diff changeset
   174
58543
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   175
  /* bibtex entries */
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   176
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   177
  private var _bibtex: Option[List[(String, Text.Offset)]] = None  // owned by GUI thread
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   178
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   179
  private def reset_bibtex(): Unit = GUI_Thread.require { _bibtex = None }
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   180
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   181
  def bibtex_entries(): List[(String, Text.Offset)] =
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   182
    GUI_Thread.require {
58546
72e2b2a609c4 clarified modules;
wenzelm
parents: 58543
diff changeset
   183
      if (Bibtex_JEdit.check(buffer)) {
58543
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   184
        _bibtex match {
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   185
          case Some(entries) => entries
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   186
          case None =>
58547
6080615b8b96 clarified modules;
wenzelm
parents: 58546
diff changeset
   187
            val entries = Bibtex_JEdit.parse_buffer_entries(buffer)
58543
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   188
            _bibtex = Some(entries)
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   189
            entries
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   190
        }
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   191
      }
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   192
      else Nil
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   193
    }
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   194
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   195
50363
2f8dc9e65401 tuned signature in accordance to document operations;
wenzelm
parents: 50344
diff changeset
   196
  /* edits */
50344
608265769ce0 emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents: 50207
diff changeset
   197
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   198
  def node_edits(
56335
8953d4cc060a store blob content within document node: aux. files that were once open are made persistent;
wenzelm
parents: 56314
diff changeset
   199
      clear: Boolean,
8953d4cc060a store blob content within document node: aux. files that were once open are made persistent;
wenzelm
parents: 56314
diff changeset
   200
      text_edits: List[Text.Edit],
8953d4cc060a store blob content within document node: aux. files that were once open are made persistent;
wenzelm
parents: 56314
diff changeset
   201
      perspective: Document.Node.Perspective_Text): List[Document.Edit_Text] =
57621
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   202
  {
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   203
    val edits: List[Document.Edit_Text] =
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   204
      get_blob() match {
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   205
        case None =>
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   206
          val header_edit = session.header_edit(node_name, node_header())
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   207
          if (clear)
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   208
            List(header_edit,
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   209
              node_name -> Document.Node.Clear(),
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   210
              node_name -> Document.Node.Edits(text_edits),
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   211
              node_name -> perspective)
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   212
          else
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   213
            List(header_edit,
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   214
              node_name -> Document.Node.Edits(text_edits),
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   215
              node_name -> perspective)
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   216
        case Some(blob) =>
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   217
          List(node_name -> Document.Node.Blob(blob),
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   218
            node_name -> Document.Node.Edits(text_edits))
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   219
      }
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   220
    edits.filterNot(_._2.is_void)
caa37976801f more frugal edits;
wenzelm
parents: 57615
diff changeset
   221
  }
50363
2f8dc9e65401 tuned signature in accordance to document operations;
wenzelm
parents: 50344
diff changeset
   222
50344
608265769ce0 emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents: 50207
diff changeset
   223
608265769ce0 emit bulk edits on initialization of multiple buffers, which greatly improves performance when starting big sessions (e.g. JinjaThreads);
wenzelm
parents: 50207
diff changeset
   224
  /* pending edits */
43648
e32de528b5ef more explicit edit_node vs. init_node;
wenzelm
parents: 43644
diff changeset
   225
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   226
  private object pending_edits  // owned by GUI thread
38224
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   227
  {
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   228
    private var pending_clear = false
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38417
diff changeset
   229
    private val pending = new mutable.ListBuffer[Text.Edit]
57615
df1b3452d71c more explicit discrimination of empty nodes -- suppress from Theories panel;
wenzelm
parents: 57612
diff changeset
   230
    private var last_perspective = Document.Node.no_perspective_text
44438
0fc38897248a early filtering of unchanged perspective;
wenzelm
parents: 44436
diff changeset
   231
59319
wenzelm
parents: 59080
diff changeset
   232
    def is_pending(): Boolean = pending_clear || pending.nonEmpty
38425
e467db701d78 moved Text_Edit to Text.Edit;
wenzelm
parents: 38417
diff changeset
   233
    def snapshot(): List[Text.Edit] = pending.toList
38224
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   234
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   235
    def flushed_edits(doc_blobs: Document.Blobs): List[Document.Edit_Text] =
38224
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   236
    {
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   237
      val clear = pending_clear
47393
d760049b2d18 more robust update_perspective, e.g. required after reload of buffer that is not at start position;
wenzelm
parents: 47058
diff changeset
   238
      val edits = snapshot()
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   239
      val (reparse, perspective) = node_perspective(doc_blobs)
59319
wenzelm
parents: 59080
diff changeset
   240
      if (clear || reparse || edits.nonEmpty || last_perspective != perspective) {
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   241
        pending_clear = false
47393
d760049b2d18 more robust update_perspective, e.g. required after reload of buffer that is not at start position;
wenzelm
parents: 47058
diff changeset
   242
        pending.clear
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   243
        last_perspective = perspective
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   244
        node_edits(clear, edits, perspective)
43648
e32de528b5ef more explicit edit_node vs. init_node;
wenzelm
parents: 43644
diff changeset
   245
      }
52759
a20631db9c8a support declarative editor_execution_range, instead of old-style check/cancel buttons;
wenzelm
parents: 50565
diff changeset
   246
      else Nil
38224
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   247
    }
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   248
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   249
    def edit(clear: Boolean, e: Text.Edit)
38224
809578d7f6af more explicit model of pending text edits;
wenzelm
parents: 38223
diff changeset
   250
    {
54511
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   251
      reset_blob()
58543
9c1389befa56 maintain Document_Model.bibtex_entries;
wenzelm
parents: 57883
diff changeset
   252
      reset_bibtex()
54511
1fd24c96ce9b caching of blob;
wenzelm
parents: 54509
diff changeset
   253
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   254
      if (clear) {
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   255
        pending_clear = true
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   256
        pending.clear
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   257
      }
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   258
      pending += e
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   259
      PIDE.editor.invoke()
44436
546adfa8a6fc update_perspective without actual edits, bypassing the full state assignment protocol;
wenzelm
parents: 44385
diff changeset
   260
    }
546adfa8a6fc update_perspective without actual edits, bypassing the full state assignment protocol;
wenzelm
parents: 44385
diff changeset
   261
  }
546adfa8a6fc update_perspective without actual edits, bypassing the full state assignment protocol;
wenzelm
parents: 44385
diff changeset
   262
54464
wenzelm
parents: 54461
diff changeset
   263
  def snapshot(): Document.Snapshot =
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   264
    GUI_Thread.require { session.snapshot(node_name, pending_edits.snapshot()) }
34731
c0cb6bd10eec keep BufferListener and TextAreaExtension private;
wenzelm
parents: 34724
diff changeset
   265
55783
da0513d95155 more formal Document.Blobs;
wenzelm
parents: 55781
diff changeset
   266
  def flushed_edits(doc_blobs: Document.Blobs): List[Document.Edit_Text] =
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 57610
diff changeset
   267
    GUI_Thread.require { pending_edits.flushed_edits(doc_blobs) }
34828
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   268
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   269
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   270
  /* buffer listener */
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   271
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   272
  private val buffer_listener: BufferListener = new BufferAdapter
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   273
  {
40478
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   274
    override def bufferLoaded(buffer: JEditBuffer)
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   275
    {
55791
5821b1937fa5 clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents: 55785
diff changeset
   276
      pending_edits.edit(true, Text.Edit.insert(0, JEdit_Lib.buffer_text(buffer)))
40478
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   277
    }
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   278
34828
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   279
    override def contentInserted(buffer: JEditBuffer,
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   280
      start_line: Int, offset: Int, num_lines: Int, length: Int)
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   281
    {
40478
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   282
      if (!buffer.isLoading)
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   283
        pending_edits.edit(false, Text.Edit.insert(offset, buffer.getText(offset, length)))
34828
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   284
    }
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   285
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   286
    override def preContentRemoved(buffer: JEditBuffer,
38426
2858ec7b6dd8 specific types Text.Offset and Text.Range;
wenzelm
parents: 38425
diff changeset
   287
      start_line: Int, offset: Int, num_lines: Int, removed_length: Int)
34828
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   288
    {
40478
4bae781b8f7c replaced Document.Node_Text_Edit by Document.Text_Edit, with treatment of deleted nodes;
wenzelm
parents: 40474
diff changeset
   289
      if (!buffer.isLoading)
54461
6c360a6ade0e centralized management of pending buffer edits;
wenzelm
parents: 54441
diff changeset
   290
        pending_edits.edit(false, Text.Edit.remove(offset, buffer.getText(offset, removed_length)))
34828
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   291
    }
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   292
  }
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   293
c2308b317244 misc tuning;
wenzelm
parents: 34827
diff changeset
   294
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   295
  /* syntax */
37557
1ae272fd4082 refresh Isabelle token marker after buffer properties changed, e.g. when fold mode is switched;
wenzelm
parents: 37555
diff changeset
   296
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   297
  def syntax_changed()
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   298
  {
59079
12a689755c3d tuned signature -- more explicit types;
wenzelm
parents: 59078
diff changeset
   299
    Untyped.get[LineManager](buffer, "lineMgr").setFirstInvalidLineContext(0)
59080
611914621edb added Untyped.method convenience (for *this* class only);
wenzelm
parents: 59079
diff changeset
   300
    for (text_area <- JEdit_Lib.jedit_text_areas(buffer))
611914621edb added Untyped.method convenience (for *this* class only);
wenzelm
parents: 59079
diff changeset
   301
      Untyped.method(Class.forName("org.gjt.sp.jedit.textarea.TextArea"), "foldStructureChanged").
611914621edb added Untyped.method convenience (for *this* class only);
wenzelm
parents: 59079
diff changeset
   302
        invoke(text_area)
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   303
  }
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   304
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   305
  private def init_token_marker()
59077
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   306
  {
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   307
    Isabelle.buffer_token_marker(buffer) match {
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   308
      case Some(marker) if marker != buffer.getTokenMarker =>
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   309
        buffer.setTokenMarker(marker)
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   310
        syntax_changed()
59077
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   311
      case _ =>
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   312
    }
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   313
  }
7e0d3da6e6d8 node-specific syntax, with base_syntax as default;
wenzelm
parents: 59076
diff changeset
   314
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   315
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   316
  /* activation */
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   317
43512
270ce5ff2086 clarified init/exit procedure;
wenzelm
parents: 43452
diff changeset
   318
  private def activate()
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
   319
  {
55791
5821b1937fa5 clarified init_models: simultaneous initialization of all document models, before flushing edits by regular means (via PIDE.editor.invoke) -- important for consolidated doc_blobs when determining initial edits;
wenzelm
parents: 55785
diff changeset
   320
    pending_edits.edit(true, Text.Edit.insert(0, JEdit_Lib.buffer_text(buffer)))
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
   321
    buffer.addBufferListener(buffer_listener)
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   322
    init_token_marker()
34680
1f1f6c95de64 clarified structure of TheoryView
immler@in.tum.de
parents: 34679
diff changeset
   323
  }
1f1f6c95de64 clarified structure of TheoryView
immler@in.tum.de
parents: 34679
diff changeset
   324
43512
270ce5ff2086 clarified init/exit procedure;
wenzelm
parents: 43452
diff changeset
   325
  private def deactivate()
34680
1f1f6c95de64 clarified structure of TheoryView
immler@in.tum.de
parents: 34679
diff changeset
   326
  {
34784
02959dcea756 split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents: 34783
diff changeset
   327
    buffer.removeBufferListener(buffer_listener)
59078
cf255dc2b48f more careful syntax_changed propagation -- avoid global jEdit.propertiesChanged;
wenzelm
parents: 59077
diff changeset
   328
    init_token_marker()
34680
1f1f6c95de64 clarified structure of TheoryView
immler@in.tum.de
parents: 34679
diff changeset
   329
  }
34447
wenzelm
parents: 34446
diff changeset
   330
}