author | wenzelm |
Mon, 29 Aug 2011 21:55:49 +0200 | |
changeset 44574 | 24444588fddd |
parent 44573 | 51f8895b9ad9 |
child 44577 | 96b6388d06c4 |
permissions | -rw-r--r-- |
43282
5d294220ca43
moved sources -- eliminated Netbeans artifact of jedit package directory;
wenzelm
parents:
41537
diff
changeset
|
1 |
/* Title: Tools/jEdit/src/plugin.scala |
36760 | 2 |
Author: Makarius |
3 |
||
4 |
Main Isabelle/jEdit plugin setup. |
|
5 |
*/ |
|
34407 | 6 |
|
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle.jedit |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
8 |
|
34429 | 9 |
|
36015 | 10 |
import isabelle._ |
11 |
||
43520
cec9b95fa35d
explicit import java.lang.System to prevent odd scope problems;
wenzelm
parents:
43513
diff
changeset
|
12 |
import java.lang.System |
43645 | 13 |
import java.io.{File, FileInputStream, IOException} |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
14 |
import java.awt.Font |
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
15 |
import javax.swing.JOptionPane |
44574 | 16 |
import javax.swing.text.Segment |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
17 |
|
34497 | 18 |
import scala.collection.mutable |
39517 | 19 |
import scala.swing.ComboBox |
44574 | 20 |
import scala.util.Sorting |
34406
f81cd75ae331
restructured: independent provers in different buffers
immler@in.tum.de
parents:
34337
diff
changeset
|
21 |
|
39241 | 22 |
import org.gjt.sp.jedit.{jEdit, GUIUtilities, EBMessage, EBPlugin, |
43645 | 23 |
Buffer, EditPane, MiscUtilities, ServiceManager, View} |
34406
f81cd75ae331
restructured: independent provers in different buffers
immler@in.tum.de
parents:
34337
diff
changeset
|
24 |
import org.gjt.sp.jedit.buffer.JEditBuffer |
39043 | 25 |
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea} |
43452
5cf548485529
avoid setTokenMarker fluctuation on buffer reload etc. via static isabelle_token_marker, which is installed by hijacking the jEdit ModeProvider;
wenzelm
parents:
43449
diff
changeset
|
26 |
import org.gjt.sp.jedit.syntax.{Token => JEditToken, ModeProvider} |
39633 | 27 |
import org.gjt.sp.jedit.msg.{EditorStarted, BufferUpdate, EditPaneUpdate, PropertiesChanged} |
37068 | 28 |
import org.gjt.sp.jedit.gui.DockableWindowManager |
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
29 |
import org.gjt.sp.jedit.io.{VFS, FileVFS, VFSManager} |
34429 | 30 |
|
43443
5d9693c2337e
basic support for extended syntax styles: sub/superscript;
wenzelm
parents:
43390
diff
changeset
|
31 |
import org.gjt.sp.util.SyntaxUtilities |
39241 | 32 |
import org.gjt.sp.util.Log |
33 |
||
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
34 |
import scala.actors.Actor |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
35 |
import Actor._ |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
36 |
|
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
37 |
|
34618 | 38 |
object Isabelle |
39 |
{ |
|
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
40 |
/* plugin instance */ |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
41 |
|
43443
5d9693c2337e
basic support for extended syntax styles: sub/superscript;
wenzelm
parents:
43390
diff
changeset
|
42 |
var plugin: Plugin = null |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
43 |
var session: Session = null |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
44 |
|
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
45 |
|
34618 | 46 |
/* properties */ |
47 |
||
48 |
val OPTION_PREFIX = "options.isabelle." |
|
49 |
||
50 |
object Property |
|
51 |
{ |
|
36814
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
52 |
def apply(name: String): String = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
53 |
jEdit.getProperty(OPTION_PREFIX + name) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
54 |
def apply(name: String, default: String): String = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
55 |
jEdit.getProperty(OPTION_PREFIX + name, default) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
56 |
def update(name: String, value: String) = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
57 |
jEdit.setProperty(OPTION_PREFIX + name, value) |
34468
9d4b4f290676
maintain Isabelle properties via object Isabelle.Property with apply/update methods;
wenzelm
parents:
34463
diff
changeset
|
58 |
} |
34433 | 59 |
|
34618 | 60 |
object Boolean_Property |
61 |
{ |
|
36814
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
62 |
def apply(name: String): Boolean = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
63 |
jEdit.getBooleanProperty(OPTION_PREFIX + name) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
64 |
def apply(name: String, default: Boolean): Boolean = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
65 |
jEdit.getBooleanProperty(OPTION_PREFIX + name, default) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
66 |
def update(name: String, value: Boolean) = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
67 |
jEdit.setBooleanProperty(OPTION_PREFIX + name, value) |
34618 | 68 |
} |
69 |
||
70 |
object Int_Property |
|
71 |
{ |
|
36814
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
72 |
def apply(name: String): Int = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
73 |
jEdit.getIntegerProperty(OPTION_PREFIX + name) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
74 |
def apply(name: String, default: Int): Int = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
75 |
jEdit.getIntegerProperty(OPTION_PREFIX + name, default) |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
76 |
def update(name: String, value: Int) = |
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
77 |
jEdit.setIntegerProperty(OPTION_PREFIX + name, value) |
34618 | 78 |
} |
79 |
||
40848
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
80 |
object Double_Property |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
81 |
{ |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
82 |
def apply(name: String): Double = |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
83 |
jEdit.getDoubleProperty(OPTION_PREFIX + name, 0.0) |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
84 |
def apply(name: String, default: Double): Double = |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
85 |
jEdit.getDoubleProperty(OPTION_PREFIX + name, default) |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
86 |
def update(name: String, value: Double) = |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
87 |
jEdit.setDoubleProperty(OPTION_PREFIX + name, value) |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
88 |
} |
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
89 |
|
40850 | 90 |
object Time_Property |
91 |
{ |
|
92 |
def apply(name: String): Time = |
|
93 |
Time.seconds(Double_Property(name)) |
|
94 |
def apply(name: String, default: Time): Time = |
|
95 |
Time.seconds(Double_Property(name, default.seconds)) |
|
96 |
def update(name: String, value: Time) = |
|
97 |
Double_Property.update(name, value.seconds) |
|
98 |
} |
|
99 |
||
40848
8662b9b1f123
more abstract/uniform handling of time, preferring seconds as Double;
wenzelm
parents:
40474
diff
changeset
|
100 |
|
37164 | 101 |
/* font */ |
102 |
||
103 |
def font_family(): String = jEdit.getProperty("view.font") |
|
104 |
||
37019 | 105 |
def font_size(): Float = |
106 |
(jEdit.getIntegerProperty("view.fontsize", 16) * |
|
107 |
Int_Property("relative-font-size", 100)).toFloat / 100 |
|
36814
dc85664dbf6d
support Isabelle plugin properties with defaults;
wenzelm
parents:
36760
diff
changeset
|
108 |
|
34618 | 109 |
|
39043 | 110 |
/* text area ranges */ |
111 |
||
43714 | 112 |
sealed case class Gfx_Range(val x: Int, val y: Int, val length: Int) |
39043 | 113 |
|
114 |
def gfx_range(text_area: TextArea, range: Text.Range): Option[Gfx_Range] = |
|
115 |
{ |
|
116 |
val p = text_area.offsetToXY(range.start) |
|
117 |
val q = text_area.offsetToXY(range.stop) |
|
118 |
if (p != null && q != null && p.y == q.y) Some(new Gfx_Range(p.x, p.y, q.x - p.x)) |
|
119 |
else None |
|
120 |
} |
|
121 |
||
122 |
||
37201
8517a650cfdc
control tooltip font via Swing HTML, with tooltip-font-size property;
wenzelm
parents:
37177
diff
changeset
|
123 |
/* tooltip markup */ |
8517a650cfdc
control tooltip font via Swing HTML, with tooltip-font-size property;
wenzelm
parents:
37177
diff
changeset
|
124 |
|
8517a650cfdc
control tooltip font via Swing HTML, with tooltip-font-size property;
wenzelm
parents:
37177
diff
changeset
|
125 |
def tooltip(text: String): String = |
37203
c4261f3bbdd7
more flexibile font size via CSS <style> instead of old <font> element;
wenzelm
parents:
37201
diff
changeset
|
126 |
"<html><pre style=\"font-family: " + font_family() + "; font-size: " + |
c4261f3bbdd7
more flexibile font size via CSS <style> instead of old <font> element;
wenzelm
parents:
37201
diff
changeset
|
127 |
Int_Property("tooltip-font-size", 10).toString + "px; \">" + // FIXME proper scaling (!?) |
c4261f3bbdd7
more flexibile font size via CSS <style> instead of old <font> element;
wenzelm
parents:
37201
diff
changeset
|
128 |
HTML.encode(text) + "</pre></html>" |
37201
8517a650cfdc
control tooltip font via Swing HTML, with tooltip-font-size property;
wenzelm
parents:
37177
diff
changeset
|
129 |
|
40849 | 130 |
def tooltip_dismiss_delay(): Time = |
40852 | 131 |
Time_Property("tooltip-dismiss-delay", Time.seconds(8.0)) max Time.seconds(0.5) |
38854
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
132 |
|
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
133 |
def setup_tooltips() |
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
134 |
{ |
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
135 |
Swing_Thread.now { |
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
136 |
val manager = javax.swing.ToolTipManager.sharedInstance |
40849 | 137 |
manager.setDismissDelay(tooltip_dismiss_delay().ms.toInt) |
38854
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
138 |
} |
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
139 |
} |
eb6a35be18ca
Isabelle/jEdit property for global tooltip dismiss delay;
wenzelm
parents:
38843
diff
changeset
|
140 |
|
37201
8517a650cfdc
control tooltip font via Swing HTML, with tooltip-font-size property;
wenzelm
parents:
37177
diff
changeset
|
141 |
|
39241 | 142 |
/* icons */ |
143 |
||
144 |
def load_icon(name: String): javax.swing.Icon = |
|
145 |
{ |
|
146 |
val icon = GUIUtilities.loadIcon(name) |
|
147 |
if (icon.getIconWidth < 0 || icon.getIconHeight < 0) |
|
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
148 |
Log.log(Log.ERROR, icon, "Bad icon: " + name) |
39241 | 149 |
icon |
150 |
} |
|
151 |
||
152 |
||
41382 | 153 |
/* check JVM */ |
154 |
||
155 |
def check_jvm() |
|
156 |
{ |
|
157 |
if (!Platform.is_hotspot) { |
|
158 |
Library.warning_dialog(jEdit.getActiveView, "Bad Java Virtual Machine", |
|
159 |
"This is " + Platform.jvm_name, |
|
160 |
"Isabelle/jEdit requires Java Hotspot from Sun/Oracle/Apple!") |
|
161 |
} |
|
162 |
} |
|
163 |
||
164 |
||
38221 | 165 |
/* main jEdit components */ |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
166 |
|
37177 | 167 |
def jedit_buffers(): Iterator[Buffer] = jEdit.getBuffers().iterator |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
168 |
|
37177 | 169 |
def jedit_views(): Iterator[View] = jEdit.getViews().iterator |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
170 |
|
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
171 |
def jedit_text_areas(view: View): Iterator[JEditTextArea] = |
37177 | 172 |
view.getEditPanes().iterator.map(_.getTextArea) |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
173 |
|
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
174 |
def jedit_text_areas(): Iterator[JEditTextArea] = |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
175 |
jedit_views().flatMap(jedit_text_areas(_)) |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
176 |
|
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
177 |
def jedit_text_areas(buffer: JEditBuffer): Iterator[JEditTextArea] = |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
178 |
jedit_text_areas().filter(_.getBuffer == buffer) |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
179 |
|
38843 | 180 |
def buffer_lock[A](buffer: JEditBuffer)(body: => A): A = |
38640 | 181 |
{ |
182 |
try { buffer.readLock(); body } |
|
183 |
finally { buffer.readUnlock() } |
|
184 |
} |
|
185 |
||
38843 | 186 |
def swing_buffer_lock[A](buffer: JEditBuffer)(body: => A): A = |
187 |
Swing_Thread.now { buffer_lock(buffer) { body } } |
|
188 |
||
40474
576b88b1dce9
added buffer_text convenience, with explicit locking;
wenzelm
parents:
39741
diff
changeset
|
189 |
def buffer_text(buffer: JEditBuffer): String = |
576b88b1dce9
added buffer_text convenience, with explicit locking;
wenzelm
parents:
39741
diff
changeset
|
190 |
buffer_lock(buffer) { buffer.getText(0, buffer.getLength) } |
576b88b1dce9
added buffer_text convenience, with explicit locking;
wenzelm
parents:
39741
diff
changeset
|
191 |
|
44574 | 192 |
def buffer_name(buffer: Buffer): String = buffer.getSymlinkPath |
193 |
||
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
194 |
def buffer_path(buffer: Buffer): (String, String) = |
44574 | 195 |
(buffer.getDirectory, buffer_name(buffer)) |
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
196 |
|
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
197 |
|
43449 | 198 |
/* document model and view */ |
199 |
||
200 |
def document_model(buffer: Buffer): Option[Document_Model] = Document_Model(buffer) |
|
201 |
def document_view(text_area: JEditTextArea): Option[Document_View] = Document_View(text_area) |
|
202 |
||
44379 | 203 |
def document_views(buffer: Buffer): List[Document_View] = |
204 |
for { |
|
205 |
text_area <- jedit_text_areas(buffer).toList |
|
206 |
val doc_view = document_view(text_area) |
|
207 |
if doc_view.isDefined |
|
208 |
} yield doc_view.get |
|
209 |
||
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
210 |
def init_model(buffer: Buffer) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
211 |
{ |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
212 |
swing_buffer_lock(buffer) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
213 |
val opt_model = |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
214 |
document_model(buffer) match { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
215 |
case Some(model) => Some(model) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
216 |
case None => |
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
217 |
val (master_dir, path) = buffer_path(buffer) |
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
218 |
Thy_Header.thy_name(path) match { |
44222
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44221
diff
changeset
|
219 |
case Some(name) => |
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44221
diff
changeset
|
220 |
Some(Document_Model.init(session, buffer, master_dir, path, name)) |
44160
8848867501fb
clarified document model header: master_dir (native wrt. editor, potentially URL) and node_name (full canonical path);
wenzelm
parents:
43714
diff
changeset
|
221 |
case None => None |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
222 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
223 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
224 |
if (opt_model.isDefined) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
225 |
for (text_area <- jedit_text_areas(buffer)) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
226 |
if (document_view(text_area).map(_.model) != opt_model) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
227 |
Document_View.init(opt_model.get, text_area) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
228 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
229 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
230 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
231 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
232 |
|
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
233 |
def exit_model(buffer: Buffer) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
234 |
{ |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
235 |
swing_buffer_lock(buffer) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
236 |
jedit_text_areas(buffer).foreach(Document_View.exit) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
237 |
Document_Model.exit(buffer) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
238 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
239 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
240 |
|
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
241 |
def init_view(buffer: Buffer, text_area: JEditTextArea) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
242 |
{ |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
243 |
swing_buffer_lock(buffer) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
244 |
document_model(buffer) match { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
245 |
case Some(model) => Document_View.init(model, text_area) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
246 |
case None => |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
247 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
248 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
249 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
250 |
|
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
251 |
def exit_view(buffer: Buffer, text_area: JEditTextArea) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
252 |
{ |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
253 |
swing_buffer_lock(buffer) { |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
254 |
Document_View.exit(text_area) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
255 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
256 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
257 |
|
43449 | 258 |
|
37068 | 259 |
/* dockable windows */ |
260 |
||
261 |
private def wm(view: View): DockableWindowManager = view.getDockableWindowManager |
|
262 |
||
39515 | 263 |
def docked_session(view: View): Option[Session_Dockable] = |
264 |
wm(view).getDockableWindow("isabelle-session") match { |
|
265 |
case dockable: Session_Dockable => Some(dockable) |
|
266 |
case _ => None |
|
267 |
} |
|
268 |
||
37068 | 269 |
def docked_output(view: View): Option[Output_Dockable] = |
270 |
wm(view).getDockableWindow("isabelle-output") match { |
|
271 |
case dockable: Output_Dockable => Some(dockable) |
|
272 |
case _ => None |
|
273 |
} |
|
274 |
||
275 |
def docked_raw_output(view: View): Option[Raw_Output_Dockable] = |
|
276 |
wm(view).getDockableWindow("isabelle-raw-output") match { |
|
277 |
case dockable: Raw_Output_Dockable => Some(dockable) |
|
278 |
case _ => None |
|
279 |
} |
|
280 |
||
281 |
def docked_protocol(view: View): Option[Protocol_Dockable] = |
|
282 |
wm(view).getDockableWindow("isabelle-protocol") match { |
|
283 |
case dockable: Protocol_Dockable => Some(dockable) |
|
284 |
case _ => None |
|
285 |
} |
|
286 |
||
287 |
||
39517 | 288 |
/* logic image */ |
289 |
||
290 |
def default_logic(): String = |
|
291 |
{ |
|
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
292 |
val logic = Isabelle_System.getenv("JEDIT_LOGIC") |
39517 | 293 |
if (logic != "") logic |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
294 |
else Isabelle_System.getenv_strict("ISABELLE_LOGIC") |
39517 | 295 |
} |
296 |
||
297 |
class Logic_Entry(val name: String, val description: String) |
|
298 |
{ |
|
299 |
override def toString = description |
|
300 |
} |
|
301 |
||
302 |
def logic_selector(logic: String): ComboBox[Logic_Entry] = |
|
303 |
{ |
|
304 |
val entries = |
|
305 |
new Logic_Entry("", "default (" + default_logic() + ")") :: |
|
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
306 |
Isabelle_System.find_logics().map(name => new Logic_Entry(name, name)) |
39517 | 307 |
val component = new ComboBox(entries) |
308 |
entries.find(_.name == logic) match { |
|
309 |
case None => |
|
310 |
case Some(entry) => component.selection.item = entry |
|
311 |
} |
|
39702 | 312 |
component.tooltip = "Isabelle logic image" |
39517 | 313 |
component |
314 |
} |
|
39702 | 315 |
|
316 |
def start_session() |
|
317 |
{ |
|
40852 | 318 |
val timeout = Time_Property("startup-timeout", Time.seconds(10)) max Time.seconds(5) |
43670
7f933761764b
prefer space_explode/split_lines as in Isabelle/ML;
wenzelm
parents:
43661
diff
changeset
|
319 |
val modes = space_explode(',', Isabelle_System.getenv("JEDIT_PRINT_MODE")).map("-m" + _) |
39702 | 320 |
val logic = { |
321 |
val logic = Property("logic") |
|
322 |
if (logic != null && logic != "") logic |
|
323 |
else Isabelle.default_logic() |
|
324 |
} |
|
40850 | 325 |
session.start(timeout, modes ::: List(logic)) |
39702 | 326 |
} |
44238
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
327 |
|
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
328 |
|
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
329 |
/* convenience actions */ |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
330 |
|
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
331 |
private def user_input(text_area: JEditTextArea, s1: String, s2: String = "") |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
332 |
{ |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
333 |
s1.foreach(text_area.userInput(_)) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
334 |
s2.foreach(text_area.userInput(_)) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
335 |
s2.foreach(_ => text_area.goToPrevCharacter(false)) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
336 |
} |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
337 |
|
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
338 |
def input_sub(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.sub_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
339 |
def input_sup(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.sup_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
340 |
def input_isub(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.isub_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
341 |
def input_isup(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.isup_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
342 |
def input_bsub(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.bsub_decoded, Symbol.esub_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
343 |
def input_bsup(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.bsup_decoded, Symbol.esup_decoded) |
36120feb70ed
some convenience actions/shortcuts for control symbols;
wenzelm
parents:
44225
diff
changeset
|
344 |
def input_bold(text_area: JEditTextArea): Unit = user_input(text_area, Symbol.bold_decoded) |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
345 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
346 |
|
34429 | 347 |
|
34618 | 348 |
class Plugin extends EBPlugin |
349 |
{ |
|
44574 | 350 |
/* theory files via editor document model */ |
351 |
||
352 |
val thy_load = new Thy_Load |
|
353 |
{ |
|
354 |
private var loaded_theories: Set[String] = Set() |
|
43645 | 355 |
|
44574 | 356 |
def register_thy(thy_name: String) |
357 |
{ |
|
358 |
synchronized { loaded_theories += thy_name } |
|
359 |
} |
|
360 |
def is_loaded(thy_name: String): Boolean = |
|
361 |
synchronized { loaded_theories.contains(thy_name) } |
|
362 |
||
44185 | 363 |
def append(master_dir: String, source_path: Path): String = |
43645 | 364 |
{ |
44185 | 365 |
val path = source_path.expand |
366 |
if (path.is_absolute) Isabelle_System.platform_path(path) |
|
367 |
else { |
|
368 |
val vfs = VFSManager.getVFSForPath(master_dir) |
|
369 |
if (vfs.isInstanceOf[FileVFS]) |
|
44222
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44221
diff
changeset
|
370 |
MiscUtilities.resolveSymlinks( |
9d5ef6cd4ee1
use full .thy file name as node name, which makes MiscUtilities.resolveSymlinks/File.getCanonicalPath more predictable;
wenzelm
parents:
44221
diff
changeset
|
371 |
vfs.constructPath(master_dir, Isabelle_System.platform_path(path))) |
44185 | 372 |
else vfs.constructPath(master_dir, Isabelle_System.standard_path(path)) |
373 |
} |
|
44163 | 374 |
} |
43645 | 375 |
|
44574 | 376 |
def check_thy(node_name: String): Thy_Header = |
44163 | 377 |
{ |
44574 | 378 |
Swing_Thread.now { |
379 |
Isabelle.jedit_buffers().find(buffer => Isabelle.buffer_name(buffer) == node_name) match { |
|
380 |
case Some(buffer) => |
|
381 |
Isabelle.buffer_lock(buffer) { |
|
382 |
val text = new Segment |
|
383 |
buffer.getText(0, buffer.getLength, text) |
|
384 |
Some(Thy_Header.read(text)) |
|
385 |
} |
|
386 |
case None => None |
|
387 |
} |
|
388 |
} getOrElse { |
|
389 |
val file = new File(node_name) // FIXME load URL via jEdit VFS (!?) |
|
390 |
if (!file.exists || !file.isFile) error("No such file: " + quote(file.toString)) |
|
391 |
Thy_Header.read(file) |
|
43645 | 392 |
} |
393 |
} |
|
394 |
} |
|
395 |
||
44574 | 396 |
val thy_info = new Thy_Info(thy_load) |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
397 |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
398 |
private lazy val delay_load = |
44574 | 399 |
Swing_Thread.delay_last(Isabelle.session.load_delay) |
400 |
{ |
|
401 |
val buffers = Isabelle.jedit_buffers().toList |
|
402 |
def loaded_buffer(name: String): Boolean = |
|
403 |
buffers.exists(buffer => Isabelle.buffer_name(buffer) == name) |
|
404 |
||
405 |
val thys = |
|
406 |
for (buffer <- buffers; model <- Isabelle.document_model(buffer)) |
|
407 |
yield (model.master_dir, model.thy_name) |
|
408 |
val files = thy_info.dependencies(thys).map(_._1).filterNot(loaded_buffer _) |
|
409 |
||
410 |
val do_load = !files.isEmpty && |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
411 |
{ |
44574 | 412 |
val files_sorted = { val a = files.toArray; Sorting.quickSort(a); a.toList } |
413 |
val files_text = new scala.swing.TextArea(files_sorted.mkString("\n")) |
|
414 |
files_text.editable = false |
|
415 |
Library.confirm_dialog(jEdit.getActiveView(), |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
416 |
"Auto loading of required files", |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
417 |
JOptionPane.YES_NO_OPTION, |
44574 | 418 |
"The following files are required to resolve theory imports. Reload now?", |
419 |
files_text) == 0 |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
420 |
} |
44574 | 421 |
if (do_load) |
422 |
for (file <- files if !loaded_buffer(file)) |
|
423 |
jEdit.openFile(null: View, file) |
|
424 |
} |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
425 |
|
44574 | 426 |
|
427 |
/* session manager */ |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
428 |
|
39633 | 429 |
private val session_manager = actor { |
430 |
loop { |
|
431 |
react { |
|
39735
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
432 |
case phase: Session.Phase => |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
433 |
phase match { |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
434 |
case Session.Failed => |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
435 |
Swing_Thread.now { |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
436 |
val text = new scala.swing.TextArea(Isabelle.session.syslog()) |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
437 |
text.editable = false |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
438 |
Library.error_dialog(jEdit.getActiveView, "Failed to start Isabelle process", text) |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
439 |
} |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
440 |
|
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
441 |
case Session.Ready => |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
442 |
Isabelle.jedit_buffers.foreach(Isabelle.init_model) |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
443 |
delay_load() |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
444 |
|
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
445 |
case Session.Shutdown => Isabelle.jedit_buffers.foreach(Isabelle.exit_model) |
39735
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
446 |
case _ => |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
447 |
} |
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
448 |
case bad => System.err.println("session_manager: ignoring bad message " + bad) |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
449 |
} |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
450 |
} |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
451 |
} |
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
452 |
|
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
453 |
|
34618 | 454 |
/* main plugin plumbing */ |
34433 | 455 |
|
34767 | 456 |
override def handleMessage(message: EBMessage) |
34618 | 457 |
{ |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
458 |
Swing_Thread.assert() |
34767 | 459 |
message match { |
41383
514bb82514df
check JVM later, to avoid potential conflict with jEdit splash screen;
wenzelm
parents:
41382
diff
changeset
|
460 |
case msg: EditorStarted => |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
461 |
Isabelle.check_jvm() |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
462 |
if (Isabelle.Boolean_Property("auto-start")) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
463 |
Isabelle.start_session() |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
464 |
|
37557
1ae272fd4082
refresh Isabelle token marker after buffer properties changed, e.g. when fold mode is switched;
wenzelm
parents:
37241
diff
changeset
|
465 |
case msg: BufferUpdate |
44434
3b9b684bfa6f
handle potentially more approriate BufferUpdate.LOADED event;
wenzelm
parents:
44379
diff
changeset
|
466 |
if msg.getWhat == BufferUpdate.LOADED => |
44573
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
467 |
if (Isabelle.session.is_ready) { |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
468 |
val buffer = msg.getBuffer |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
469 |
if (buffer != null) Isabelle.init_model(buffer) |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
470 |
delay_load() |
51f8895b9ad9
some dialog for auto loading of required files (still inactive);
wenzelm
parents:
44434
diff
changeset
|
471 |
} |
37557
1ae272fd4082
refresh Isabelle token marker after buffer properties changed, e.g. when fold mode is switched;
wenzelm
parents:
37241
diff
changeset
|
472 |
|
39634 | 473 |
case msg: EditPaneUpdate |
39735
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
474 |
if (msg.getWhat == EditPaneUpdate.BUFFER_CHANGING || |
39637
cc3452317b5f
slightly more robust EditBus plumbing wrt. Document_View/Document_Model;
wenzelm
parents:
39634
diff
changeset
|
475 |
msg.getWhat == EditPaneUpdate.BUFFER_CHANGED || |
39634 | 476 |
msg.getWhat == EditPaneUpdate.CREATED || |
477 |
msg.getWhat == EditPaneUpdate.DESTROYED) => |
|
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
478 |
val edit_pane = msg.getEditPane |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
479 |
val buffer = edit_pane.getBuffer |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
480 |
val text_area = edit_pane.getTextArea |
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
481 |
|
39637
cc3452317b5f
slightly more robust EditBus plumbing wrt. Document_View/Document_Model;
wenzelm
parents:
39634
diff
changeset
|
482 |
if (buffer != null && text_area != null) { |
39735
969ede84aac0
more uniform init/exit model/view in session_manager, trading race wrt. session.phase for race wrt. global editor state;
wenzelm
parents:
39702
diff
changeset
|
483 |
if (msg.getWhat == EditPaneUpdate.BUFFER_CHANGED || |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
484 |
msg.getWhat == EditPaneUpdate.CREATED) { |
43643 | 485 |
if (Isabelle.session.is_ready) |
43510
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
486 |
Isabelle.init_view(buffer, text_area) |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
487 |
} |
17d431c92575
init/exit model/view synchronously within the swing thread -- EditBus.send in jedit-4.4.1 always runs there;
wenzelm
parents:
43487
diff
changeset
|
488 |
else Isabelle.exit_view(buffer, text_area) |
34671 | 489 |
} |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
490 |
|
34777
91d6089cef88
class Session models full session, with or without prover process (cf. heaps, browser_info);
wenzelm
parents:
34774
diff
changeset
|
491 |
case msg: PropertiesChanged => |
43390 | 492 |
Swing_Thread.now { Isabelle.setup_tooltips() } |
34791 | 493 |
Isabelle.session.global_settings.event(Session.Global_Settings) |
34784
02959dcea756
split Theory_View into Document_Model (connected to Buffer) and Document_View (connected to JEditTextArea);
wenzelm
parents:
34782
diff
changeset
|
494 |
|
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
495 |
case _ => |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
496 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
497 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
498 |
|
34618 | 499 |
override def start() |
500 |
{ |
|
43443
5d9693c2337e
basic support for extended syntax styles: sub/superscript;
wenzelm
parents:
43390
diff
changeset
|
501 |
Isabelle.plugin = this |
39630
44181423183a
explicit Session.Phase indication with associated event bus;
wenzelm
parents:
39628
diff
changeset
|
502 |
Isabelle.setup_tooltips() |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
503 |
Isabelle_System.init() |
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
504 |
Isabelle_System.install_fonts() |
44574 | 505 |
Isabelle.session = new Session(thy_load) |
43661
39fdbd814c7f
quasi-static Isabelle_System -- reduced tendency towards "functorial style";
wenzelm
parents:
43648
diff
changeset
|
506 |
SyntaxUtilities.setStyleExtender(new Token_Markup.Style_Extender) |
43513 | 507 |
if (ModeProvider.instance.isInstanceOf[ModeProvider]) |
508 |
ModeProvider.instance = new Token_Markup.Mode_Provider(ModeProvider.instance) |
|
39633 | 509 |
Isabelle.session.phase_changed += session_manager |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
510 |
} |
34618 | 511 |
|
39628
f6e82967b5cd
Plugin.stop: refrain from invalidating Isabelle.session -- some actors/dockables out there might still refer to it;
wenzelm
parents:
39518
diff
changeset
|
512 |
override def stop() |
34618 | 513 |
{ |
43513 | 514 |
Isabelle.session.phase_changed -= session_manager |
515 |
Isabelle.jedit_buffers.foreach(Isabelle.exit_model) |
|
39628
f6e82967b5cd
Plugin.stop: refrain from invalidating Isabelle.session -- some actors/dockables out there might still refer to it;
wenzelm
parents:
39518
diff
changeset
|
516 |
Isabelle.session.stop() |
34318
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
517 |
} |
c13e168a8ae6
original sources from Johannes Hölzl a48e0c6ab1aea77c52d596f7efc007a543d3d10c with minor modifications of directory layout;
wenzelm
parents:
diff
changeset
|
518 |
} |