author | wenzelm |
Thu, 07 Nov 2024 15:42:35 +0100 | |
changeset 81390 | 71e66ebbc632 |
parent 81389 | 5c8c94d5211a |
child 81398 | f92ea68473f2 |
permissions | -rw-r--r-- |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
1 |
/* Title: Tools/jEdit/src/pretty_text_area.scala |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
3 |
|
50160 | 4 |
GUI component for pretty-printed text with markup, rendered like jEdit |
5 |
text area. |
|
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
6 |
*/ |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
7 |
|
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
8 |
package isabelle.jedit |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
9 |
|
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
10 |
|
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
11 |
import isabelle._ |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
12 |
|
58766 | 13 |
import java.awt.{Color, Font, Toolkit, Window} |
71501
248402f42cac
clarified modifier: avoid confusion of CS+a as C+a;
wenzelm
parents:
71500
diff
changeset
|
14 |
import java.awt.event.{InputEvent, KeyEvent} |
62214
451bd09b8277
bypass input method for better imitation of read-only mode (cf. f26a4d5e82b5): e.g. relevant for composition of ALT-u u on Mac OS X;
wenzelm
parents:
61570
diff
changeset
|
15 |
import java.awt.im.InputMethodRequests |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
16 |
import javax.swing.JTextField |
56885
3020f6bbd119
clarified GUI events, e.g. relevant for insert via completion;
wenzelm
parents:
56883
diff
changeset
|
17 |
import javax.swing.event.{DocumentListener, DocumentEvent} |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
18 |
|
56907
0f3c375fd27c
enable "PIDE" docking framework by default, and rely on its "Detach" menu item;
wenzelm
parents:
56885
diff
changeset
|
19 |
import scala.swing.{Label, Component} |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
20 |
import scala.util.matching.Regex |
56881 | 21 |
|
61570
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
22 |
import org.gjt.sp.jedit.{jEdit, View, Registers, JEditBeanShellAction} |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
23 |
import org.gjt.sp.jedit.input.{DefaultInputHandlerProvider, TextAreaInputHandler} |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
24 |
import org.gjt.sp.jedit.textarea.{AntiAlias, JEditEmbeddedTextArea} |
50542
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
25 |
import org.gjt.sp.jedit.syntax.SyntaxStyle |
61570
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
26 |
import org.gjt.sp.jedit.gui.KeyEventTranslator |
50640 | 27 |
import org.gjt.sp.util.{SyntaxUtilities, Log} |
49412 | 28 |
|
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
29 |
|
50538
48cb76b785da
init gutter according to view properties, which improves symmetry of windows and allows use of folds etc;
wenzelm
parents:
50507
diff
changeset
|
30 |
class Pretty_Text_Area( |
48cb76b785da
init gutter according to view properties, which improves symmetry of windows and allows use of folds etc;
wenzelm
parents:
50507
diff
changeset
|
31 |
view: View, |
50915
12de8ea66f54
close tooltip after Active.action, to make it look more interactive (notably due to lack of dynamic update);
wenzelm
parents:
50849
diff
changeset
|
32 |
close_action: () => Unit = () => (), |
75393 | 33 |
propagate_keys: Boolean = false |
34 |
) extends JEditEmbeddedTextArea { |
|
49446 | 35 |
text_area => |
36 |
||
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
37 |
GUI_Thread.require {} |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
38 |
|
55826 | 39 |
private var current_font_info: Font_Info = Font_Info.main() |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
40 |
private var current_body: XML.Body = Nil |
52972 | 41 |
private var current_base_snapshot = Document.Snapshot.init |
50507 | 42 |
private var current_base_results = Command.Results.empty |
64621 | 43 |
private var current_rendering: JEdit_Rendering = |
72718 | 44 |
JEdit_Rendering.text(current_base_snapshot, Nil)._2 |
61561 | 45 |
private var future_refresh: Option[Future[Unit]] = None |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
46 |
|
50306 | 47 |
private val rich_text_area = |
50915
12de8ea66f54
close tooltip after Active.action, to make it look more interactive (notably due to lack of dynamic update);
wenzelm
parents:
50849
diff
changeset
|
48 |
new Rich_Text_Area(view, text_area, () => current_rendering, close_action, |
63028 | 49 |
get_search_pattern _, () => (), caret_visible = false, enable_hovering = true) |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
50 |
|
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
51 |
private var current_search_pattern: Option[Regex] = None |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
52 |
def get_search_pattern(): Option[Regex] = GUI_Thread.require { current_search_pattern } |
49416
1053a564dd25
some actual rich text markup via XML.content_markup;
wenzelm
parents:
49414
diff
changeset
|
53 |
|
51451
e4203ebfe750
recovered special background handling from 8d6e478934dc, particularly relevant for gutter border;
wenzelm
parents:
51449
diff
changeset
|
54 |
def get_background(): Option[Color] = None |
e4203ebfe750
recovered special background handling from 8d6e478934dc, particularly relevant for gutter border;
wenzelm
parents:
51449
diff
changeset
|
55 |
|
75393 | 56 |
def refresh(): Unit = { |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
57 |
GUI_Thread.require {} |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
58 |
|
55825 | 59 |
val font = current_font_info.font |
50168
4a575ef46466
always refresh font metrics, to help window size calculation (amending 2585c81d840a);
wenzelm
parents:
50166
diff
changeset
|
60 |
getPainter.setFont(font) |
4a575ef46466
always refresh font metrics, to help window size calculation (amending 2585c81d840a);
wenzelm
parents:
50166
diff
changeset
|
61 |
getPainter.setAntiAlias(new AntiAlias(jEdit.getProperty("view.antiAlias"))) |
51497
7e8968c9a549
no censorship of "view.fracFontMetrics", although it often degrades rendering quality;
wenzelm
parents:
51495
diff
changeset
|
62 |
getPainter.setFractionalFontMetricsEnabled(jEdit.getBooleanProperty("view.fracFontMetrics")) |
55825 | 63 |
getPainter.setStyles( |
64 |
SyntaxUtilities.loadStyles(current_font_info.family, current_font_info.size.round)) |
|
56789 | 65 |
getPainter.setLineExtraSpacing(jEdit.getIntegerProperty("options.textarea.lineSpacing", 0)) |
50168
4a575ef46466
always refresh font metrics, to help window size calculation (amending 2585c81d840a);
wenzelm
parents:
50166
diff
changeset
|
66 |
|
50542
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
67 |
val fold_line_style = new Array[SyntaxStyle](4) |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
68 |
for (i <- 0 to 3) { |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
69 |
fold_line_style(i) = |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
70 |
SyntaxUtilities.parseStyle( |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
71 |
jEdit.getProperty("view.style.foldLine." + i), |
55825 | 72 |
current_font_info.family, current_font_info.size.round, true) |
50542
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
73 |
} |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
74 |
getPainter.setFoldLineStyle(fold_line_style) |
58bd88159f8f
fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents:
50538
diff
changeset
|
75 |
|
51439
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
76 |
getGutter.setForeground(jEdit.getColorProperty("view.gutter.fgColor")) |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
77 |
getGutter.setBackground(jEdit.getColorProperty("view.gutter.bgColor")) |
75394 | 78 |
get_background().foreach { bg => getPainter.setBackground(bg); getGutter.setBackground(bg) } |
51439
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
79 |
getGutter.setHighlightedForeground(jEdit.getColorProperty("view.gutter.highlightColor")) |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
80 |
getGutter.setFoldColor(jEdit.getColorProperty("view.gutter.foldColor")) |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
81 |
getGutter.setFont(jEdit.getFontProperty("view.gutter.font")) |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
82 |
getGutter.setBorder(0, |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
83 |
jEdit.getColorProperty("view.gutter.focusBorderColor"), |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
84 |
jEdit.getColorProperty("view.gutter.noFocusBorderColor"), |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
85 |
getPainter.getBackground) |
60250
baf2c8fddaa4
proper fold painter according to jEdit options, not the hardwired default of JEditEmbeddedTextArea;
wenzelm
parents:
59286
diff
changeset
|
86 |
getGutter.setFoldPainter(view.getTextArea.getFoldPainter) |
51439
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
87 |
getGutter.setGutterEnabled(jEdit.getBooleanProperty("view.gutter.enabled")) |
b10b64679c5b
more precise tooltip window size (NB: dimensions are known after layout pack, before making content visible);
wenzelm
parents:
50915
diff
changeset
|
88 |
|
50166
2585c81d840a
take component width as indication if it is already visible/layed-out, to avoid multiple formatting with minimal margin;
wenzelm
parents:
50160
diff
changeset
|
89 |
if (getWidth > 0) { |
81340 | 90 |
val metric = JEdit_Lib.font_metric(getPainter) |
73122
cd0cd534f927
clarified pretty margin: attempt to avoid scrollbar;
wenzelm
parents:
73120
diff
changeset
|
91 |
val margin = ((getPainter.getWidth.toDouble / metric.unit) max 20.0).floor |
49471
97964515a676
text_rendering as managed task, with cancellation;
wenzelm
parents:
49446
diff
changeset
|
92 |
|
72718 | 93 |
val snapshot = current_base_snapshot |
94 |
val results = current_base_results |
|
67547
aefe7a7b330a
clarified breakgain: keeping it constant avoids margin fluctuation in Pretty_Tooltip vs. Pretty_Text_Area;
wenzelm
parents:
66114
diff
changeset
|
95 |
val formatted_body = Pretty.formatted(current_body, margin = margin, metric = metric) |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
96 |
|
73367 | 97 |
future_refresh.foreach(_.cancel()) |
61193 | 98 |
future_refresh = |
61561 | 99 |
Some(Future.fork { |
51498
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
100 |
val (text, rendering) = |
72718 | 101 |
try { JEdit_Rendering.text(snapshot, formatted_body, results = results) } |
51498
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
102 |
catch { case exn: Throwable => Log.log(Log.ERROR, this, exn); throw exn } |
56860 | 103 |
Exn.Interrupt.expose() |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
104 |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
105 |
GUI_Thread.later { |
51498
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
106 |
current_rendering = rendering |
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
107 |
JEdit_Lib.buffer_edit(getBuffer) { |
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
108 |
rich_text_area.active_reset() |
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
109 |
getBuffer.setFoldHandler(new Fold_Handling.Document_Fold_Handler(rendering)) |
68060
3931ed905e93
avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents:
67547
diff
changeset
|
110 |
JEdit_Lib.buffer_undo_in_progress(getBuffer, setText(text)) |
51498
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
111 |
setCaretPosition(0) |
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
112 |
} |
979592b765f8
reverted most of 5944b20c41bf -- tends to cause race condition of synchronous vs. asynchronous version;
wenzelm
parents:
51497
diff
changeset
|
113 |
} |
56730
e723f041b6d0
tuned signature -- separate pool for JFuture tasks, which can be canceled;
wenzelm
parents:
56711
diff
changeset
|
114 |
}) |
50166
2585c81d840a
take component width as indication if it is already visible/layed-out, to avoid multiple formatting with minimal margin;
wenzelm
parents:
50160
diff
changeset
|
115 |
} |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
116 |
} |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
117 |
|
81384 | 118 |
def resize(font_info: Font_Info): Unit = GUI_Thread.require { |
55825 | 119 |
current_font_info = font_info |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
120 |
refresh() |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
121 |
} |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
122 |
|
73340 | 123 |
def update( |
75393 | 124 |
base_snapshot: Document.Snapshot, |
125 |
base_results: Command.Results, |
|
126 |
body: XML.Body |
|
127 |
): Unit = { |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
128 |
GUI_Thread.require {} |
73120
c3589f2dff31
more informative errors: simplify diagnosis of spurious failures reported by users;
wenzelm
parents:
72899
diff
changeset
|
129 |
require(!base_snapshot.is_outdated, "document snapshot outdated") |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
130 |
|
49419
e2726211f834
pass base_snapshot to enable hyperlinks into other nodes;
wenzelm
parents:
49416
diff
changeset
|
131 |
current_base_snapshot = base_snapshot |
50501
6f41f1646617
more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents:
50306
diff
changeset
|
132 |
current_base_results = base_results |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
133 |
current_body = body |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
134 |
refresh() |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
135 |
} |
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
136 |
|
75808 | 137 |
def detach(): Unit = { |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57042
diff
changeset
|
138 |
GUI_Thread.require {} |
56880 | 139 |
Info_Dockable(view, current_base_snapshot, current_base_results, current_body) |
140 |
} |
|
141 |
||
56918 | 142 |
def detach_operation: Option[() => Unit] = |
75808 | 143 |
if (current_body.isEmpty) None else Some(() => detach()) |
56918 | 144 |
|
49422
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
145 |
|
81387
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
146 |
/* search */ |
56881 | 147 |
|
81390 | 148 |
private val search_label: Component = new Label("Search:") { |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
149 |
tooltip = "Search and highlight output via regular expression" |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
150 |
} |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
151 |
|
81390 | 152 |
private val search_field: Component = |
75393 | 153 |
Component.wrap(new Completion_Popup.History_Text_Field("isabelle-search") { |
154 |
private val input_delay = |
|
76610 | 155 |
Delay.last(PIDE.session.input_delay, gui = true) { search_action(this) } |
75393 | 156 |
getDocument.addDocumentListener(new DocumentListener { |
157 |
def changedUpdate(e: DocumentEvent): Unit = input_delay.invoke() |
|
158 |
def insertUpdate(e: DocumentEvent): Unit = input_delay.invoke() |
|
159 |
def removeUpdate(e: DocumentEvent): Unit = input_delay.invoke() |
|
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
160 |
}) |
75393 | 161 |
setColumns(20) |
162 |
setToolTipText(search_label.tooltip) |
|
163 |
setFont(GUI.imitate_font(getFont, scale = 1.2)) |
|
164 |
}) |
|
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
165 |
|
57042 | 166 |
private val search_field_foreground = search_field.foreground |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
167 |
|
75393 | 168 |
private def search_action(text_field: JTextField): Unit = { |
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
169 |
val (pattern, ok) = |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
170 |
text_field.getText match { |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
171 |
case null | "" => (None, true) |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
172 |
case s => |
59224 | 173 |
val re = Library.make_regex(s) |
174 |
(re, re.isDefined) |
|
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
175 |
} |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
176 |
if (current_search_pattern != pattern) { |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
177 |
current_search_pattern = pattern |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
178 |
text_area.getPainter.repaint() |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
179 |
} |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
180 |
text_field.setForeground( |
65911 | 181 |
if (ok) search_field_foreground |
182 |
else current_rendering.color(Rendering.Color.error)) |
|
56883
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
183 |
} |
38c6b70e5e53
common support for search field, which is actually a light-weight Highlighter;
wenzelm
parents:
56881
diff
changeset
|
184 |
|
56881 | 185 |
|
81387
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
186 |
/* zoom */ |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
187 |
|
81389 | 188 |
val zoom_component: Font_Info.Zoom = |
81387
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
189 |
new Font_Info.Zoom { override def changed(): Unit = zoom() } |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
190 |
|
81389 | 191 |
def zoom(zoom: Font_Info.Zoom = zoom_component): Unit = |
81387
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
192 |
resize(Font_Info.main(scale = PIDE.options.real("jedit_font_scale"), zoom = zoom)) |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
193 |
|
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
194 |
|
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
195 |
/* common GUI components */ |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
196 |
|
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
197 |
def search_components: List[Component] = List(search_label, search_field) |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
198 |
|
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
199 |
def search_zoom_components: List[Component] = List(search_label, search_field, zoom_component) |
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
200 |
|
c677755779f5
more uniform pretty_text_area.zoom via its zoom_component;
wenzelm
parents:
81384
diff
changeset
|
201 |
|
50726
27478c11f63c
more elementary key handling: listen to low-level KEY_PRESSED events (without consuming);
wenzelm
parents:
50640
diff
changeset
|
202 |
/* key handling */ |
49422
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
203 |
|
62214
451bd09b8277
bypass input method for better imitation of read-only mode (cf. f26a4d5e82b5): e.g. relevant for composition of ALT-u u on Mac OS X;
wenzelm
parents:
61570
diff
changeset
|
204 |
override def getInputMethodRequests: InputMethodRequests = null |
451bd09b8277
bypass input method for better imitation of read-only mode (cf. f26a4d5e82b5): e.g. relevant for composition of ALT-u u on Mac OS X;
wenzelm
parents:
61570
diff
changeset
|
205 |
|
61570
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
206 |
inputHandlerProvider = |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
207 |
new DefaultInputHandlerProvider(new TextAreaInputHandler(text_area) { |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
208 |
override def getAction(action: String): JEditBeanShellAction = |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
209 |
text_area.getActionContext.getAction(action) |
73340 | 210 |
override def processKeyEvent(evt: KeyEvent, from: Int, global: Boolean): Unit = {} |
61570
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
211 |
override def handleKey(key: KeyEventTranslator.Key, dry_run: Boolean): Boolean = false |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
212 |
}) |
f26a4d5e82b5
dummy input handler to imitate former read-only mode, which has changed its meaning in jedit-5.3.0 as mere hint for saving;
wenzelm
parents:
61561
diff
changeset
|
213 |
|
53226
9cf8e2263ca7
more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents:
53179
diff
changeset
|
214 |
addKeyListener(JEdit_Lib.key_listener( |
75394 | 215 |
key_pressed = { (evt: KeyEvent) => |
75393 | 216 |
val strict_control = |
217 |
JEdit_Lib.command_modifier(evt) && !JEdit_Lib.shift_modifier(evt) |
|
71501
248402f42cac
clarified modifier: avoid confusion of CS+a as C+a;
wenzelm
parents:
71500
diff
changeset
|
218 |
|
75393 | 219 |
evt.getKeyCode match { |
220 |
case KeyEvent.VK_C | KeyEvent.VK_INSERT |
|
221 |
if strict_control && text_area.getSelectionCount != 0 => |
|
222 |
Registers.copy(text_area, '$') |
|
75807
b0394e7d43ea
tuned signature, following hints by IntelliJ IDEA;
wenzelm
parents:
75394
diff
changeset
|
223 |
evt.consume() |
53227
68cc55ceb7f6
more standard key handling according to jEdit (with workaround);
wenzelm
parents:
53226
diff
changeset
|
224 |
|
75393 | 225 |
case KeyEvent.VK_A |
226 |
if strict_control => |
|
81390 | 227 |
text_area.selectAll() |
75807
b0394e7d43ea
tuned signature, following hints by IntelliJ IDEA;
wenzelm
parents:
75394
diff
changeset
|
228 |
evt.consume() |
53227
68cc55ceb7f6
more standard key handling according to jEdit (with workaround);
wenzelm
parents:
53226
diff
changeset
|
229 |
|
75393 | 230 |
case KeyEvent.VK_ESCAPE => |
75807
b0394e7d43ea
tuned signature, following hints by IntelliJ IDEA;
wenzelm
parents:
75394
diff
changeset
|
231 |
if (Isabelle.dismissed_popups(view)) evt.consume() |
53227
68cc55ceb7f6
more standard key handling according to jEdit (with workaround);
wenzelm
parents:
53226
diff
changeset
|
232 |
|
75393 | 233 |
case _ => |
49422
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
234 |
} |
75393 | 235 |
if (propagate_keys) JEdit_Lib.propagate_key(view, evt) |
236 |
}, |
|
75394 | 237 |
key_typed = { (evt: KeyEvent) => |
75393 | 238 |
if (propagate_keys) JEdit_Lib.propagate_key(view, evt) |
239 |
}) |
|
53226
9cf8e2263ca7
more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents:
53179
diff
changeset
|
240 |
) |
49422
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
241 |
|
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
242 |
|
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
243 |
/* init */ |
21f77309d93a
minimal clipboard support (similar to org.lobobrowser.html.gui.HtmlBlockPanel);
wenzelm
parents:
49421
diff
changeset
|
244 |
|
49472 | 245 |
getPainter.setStructureHighlightEnabled(false) |
49475 | 246 |
getPainter.setLineHighlightEnabled(false) |
247 |
||
59076
65babcd8b0e6
clarified token marker / syntax for mode vs. buffer;
wenzelm
parents:
58835
diff
changeset
|
248 |
getBuffer.setTokenMarker(Isabelle.mode_token_marker("isabelle-output").get) |
63261
90a44d271683
proper noWordSep as in "isabelle" mode (cf. 5024d0c48e02);
wenzelm
parents:
63028
diff
changeset
|
249 |
getBuffer.setStringProperty("noWordSep", "_'?⇩") |
49475 | 250 |
|
49412 | 251 |
rich_text_area.activate() |
49398
0fa4389c04f9
alternative output panel, based on Pretty_Text_Area, based on JEditEmbeddedTextArea;
wenzelm
parents:
diff
changeset
|
252 |
} |