src/Tools/jEdit/src/jedit_lib.scala
author wenzelm
Fri, 15 Nov 2024 16:01:41 +0100
changeset 81450 0c29878ae48f
parent 81444 cd685e2291fa
child 81453 b99b531f13e6
permissions -rw-r--r--
more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     1
/*  Title:      Tools/jEdit/src/jedit_lib.scala
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     3
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     4
Misc library functions for jEdit.
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     5
*/
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     6
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     7
package isabelle.jedit
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     8
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
     9
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    10
import isabelle._
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    11
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    12
import java.io.{File => JFile}
72899
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
    13
import java.awt.{Component, Container, GraphicsEnvironment, Point, Rectangle, Dimension, Toolkit}
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
    14
import java.awt.event.{InputEvent, KeyEvent, KeyListener}
81450
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
    15
import java.awt.font.FontRenderContext
81434
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
    16
import javax.swing.{Icon, ImageIcon, JScrollBar, JWindow, SwingUtilities}
49710
21d88a631fcc refer to parent frame -- relevant for floating dockables in particular;
wenzelm
parents: 49409
diff changeset
    17
56823
37be55461dbe more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents: 56774
diff changeset
    18
import scala.util.parsing.input.CharSequenceReader
73354
79b120d1c1a3 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
    19
import scala.jdk.CollectionConverters._
81426
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
    20
import scala.annotation.tailrec
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    21
62264
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
    22
import org.gjt.sp.jedit.{jEdit, Buffer, View, GUIUtilities, Debug, EditPane}
72927
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
    23
import org.gjt.sp.jedit.io.{FileVFS, VFSManager}
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
    24
import org.gjt.sp.jedit.gui.{KeyEventWorkaround, KeyEventTranslator}
61192
98eba31c51f8 tuned signature;
wenzelm
parents: 60992
diff changeset
    25
import org.gjt.sp.jedit.buffer.{JEditBuffer, LineManager}
81450
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
    26
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea, TextAreaPainter, Selection, AntiAlias}
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    27
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    28
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
    29
object JEdit_Lib {
71861
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    30
  /* jEdit directories */
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    31
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    32
  def directories: List[JFile] =
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    33
    (Option(jEdit.getSettingsDirectory).toList ::: List(jEdit.getJEditHome)).map(new JFile(_))
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    34
1330fa4a2b85 clarified signature;
wenzelm
parents: 71601
diff changeset
    35
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    36
  /* window geometry measurement */
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    37
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    38
  private lazy val dummy_window = new JWindow
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    39
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
    40
  final case class Window_Geometry(width: Int, height: Int, inner_width: Int, inner_height: Int) {
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    41
    def deco_width: Int = width - inner_width
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    42
    def deco_height: Int = height - inner_height
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    43
  }
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    44
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
    45
  def window_geometry(outer: Container, inner: Component): Window_Geometry = {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56930
diff changeset
    46
    GUI_Thread.require {}
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    47
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    48
    val old_content = dummy_window.getContentPane
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    49
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    50
    dummy_window.setContentPane(outer)
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
    51
    dummy_window.pack()
73367
77ef8bef0593 clarified signature --- fewer warnings;
wenzelm
parents: 73354
diff changeset
    52
    dummy_window.revalidate()
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    53
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    54
    val geometry =
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    55
      Window_Geometry(
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    56
        dummy_window.getWidth, dummy_window.getHeight, inner.getWidth, inner.getHeight)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    57
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    58
    dummy_window.setContentPane(old_content)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    59
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    60
    geometry
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    61
  }
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    62
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    63
76782
a62a609b5db2 more robust;
wenzelm
parents: 75701
diff changeset
    64
  /* plain files */
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    65
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    66
  def is_file(name: String): Boolean =
76782
a62a609b5db2 more robust;
wenzelm
parents: 75701
diff changeset
    67
    name != null && name.nonEmpty && VFSManager.getVFSForPath(name).isInstanceOf[FileVFS]
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    68
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    69
  def check_file(name: String): Option[JFile] =
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    70
    if (is_file(name)) Some(new JFile(name)) else None
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    71
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    72
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    73
  /* buffers */
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    74
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    75
  def buffer_text(buffer: JEditBuffer): String =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    76
    buffer_lock(buffer) { buffer.getText(0, buffer.getLength) }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    77
56823
37be55461dbe more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents: 56774
diff changeset
    78
  def buffer_reader(buffer: JEditBuffer): CharSequenceReader =
64824
330ec9bc4b75 tuned signature;
wenzelm
parents: 64770
diff changeset
    79
    Scan.char_reader(buffer.getSegment(0, buffer.getLength))
56823
37be55461dbe more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents: 56774
diff changeset
    80
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
    81
  def buffer_mode(buffer: JEditBuffer): String = {
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    82
    val mode = buffer.getMode
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    83
    if (mode == null) ""
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    84
    else {
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    85
      val name = mode.getName
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    86
      if (name == null) "" else name
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    87
    }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    88
  }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
    89
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    90
  def buffer_line_manager(buffer: JEditBuffer): LineManager =
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    91
    Untyped.get[LineManager](buffer, "lineMgr")
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    92
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    93
  def buffer_name(buffer: Buffer): String = buffer.getSymlinkPath
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    94
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    95
  def buffer_file(buffer: Buffer): Option[JFile] = check_file(buffer_name(buffer))
61192
98eba31c51f8 tuned signature;
wenzelm
parents: 60992
diff changeset
    96
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    97
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    98
  /* main jEdit components */
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    99
73354
79b120d1c1a3 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   100
  def jedit_buffers(): Iterator[Buffer] =
79b120d1c1a3 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   101
    jEdit.getBufferManager().getBuffers().asScala.iterator
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   102
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   103
  def jedit_buffer(name: String): Option[Buffer] =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   104
    jedit_buffers().find(buffer => buffer_name(buffer) == name)
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   105
56457
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   106
  def jedit_buffer(name: Document.Node.Name): Option[Buffer] =
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   107
    jedit_buffer(name.node)
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   108
73354
79b120d1c1a3 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   109
  def jedit_views(): Iterator[View] =
79b120d1c1a3 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   110
    jEdit.getViewManager().getViews().asScala.iterator
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   111
69636
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   112
  def jedit_view(view: View = null): View =
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   113
    if (view == null) jEdit.getActiveView() else view
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   114
62264
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   115
  def jedit_edit_panes(view: View): Iterator[EditPane] =
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   116
    if (view == null) Iterator.empty
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   117
    else view.getEditPanes().iterator.filter(_ != null)
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   118
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   119
  def jedit_text_areas(view: View): Iterator[JEditTextArea] =
56587
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   120
    if (view == null) Iterator.empty
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   121
    else view.getEditPanes().iterator.filter(_ != null).map(_.getTextArea).filter(_ != null)
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   122
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   123
  def jedit_text_areas(): Iterator[JEditTextArea] =
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71502
diff changeset
   124
    jedit_views().flatMap(jedit_text_areas)
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   125
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   126
  def jedit_text_areas(buffer: JEditBuffer): Iterator[JEditTextArea] =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   127
    jedit_text_areas().filter(_.getBuffer == buffer)
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   128
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   129
  def buffer_lock[A](buffer: JEditBuffer)(body: => A): A = {
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   130
    try { buffer.readLock(); body }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   131
    finally { buffer.readUnlock() }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   132
  }
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   133
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   134
  def buffer_edit[A](buffer: JEditBuffer)(body: => A): A = {
50195
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   135
    try { buffer.beginCompoundEdit(); body }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   136
    finally { buffer.endCompoundEdit() }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   137
  }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   138
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   139
81423
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   140
  /* buffer text */
50215
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   141
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 66592
diff changeset
   142
  def get_text(buffer: JEditBuffer, range: Text.Range): Option[String] =
50215
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   143
    try { Some(buffer.getText(range.start, range.length)) }
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   144
    catch { case _: ArrayIndexOutOfBoundsException => None }
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   145
81435
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   146
  def set_text(buffer: JEditBuffer, text: List[String]): Int = {
81423
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   147
    val old = buffer.isUndoInProgress
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   148
    def set(b: Boolean): Unit = Untyped.set[Boolean](buffer, "undoInProgress", b)
81426
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   149
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   150
    val length = buffer.getLength
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   151
    var offset = 0
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   152
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   153
    @tailrec def drop_common_prefix(list: List[String]): List[String] =
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   154
      list match {
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   155
        case s :: rest
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   156
          if offset + s.length <= length &&
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   157
          CharSequence.compare(buffer.getSegment(offset, s.length), s) == 0 =>
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   158
            offset += s.length
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   159
            drop_common_prefix(rest)
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   160
        case _ => list
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   161
      }
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   162
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   163
    def insert(list: List[String]): Unit =
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   164
      for (s <- list) {
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   165
        buffer.insert(offset, s)
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   166
        offset += s.length
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   167
      }
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   168
81423
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   169
    try {
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   170
      set(true)
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   171
      buffer.beginCompoundEdit()
81426
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   172
      val rest = drop_common_prefix(text)
81435
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   173
      val update_start = offset
81426
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   174
      if (offset < length) buffer.remove(offset, length - offset)
56bab51e02c1 performance tuning: more incremental update of buffer content;
wenzelm
parents: 81423
diff changeset
   175
      insert(rest)
81435
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   176
      update_start
81423
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   177
    }
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   178
    finally {
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   179
      buffer.endCompoundEdit()
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   180
      set(old)
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   181
    }
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   182
  }
056657540039 clarified signature: inline org.gjt.sp.jedit.textarea.TextArea.setText();
wenzelm
parents: 81417
diff changeset
   183
50215
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   184
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   185
  /* point range */
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   186
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   187
  def point_range(buffer: JEditBuffer, offset: Text.Offset): Text.Range =
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   188
    if (offset < 0) Text.Range.offside
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   189
    else
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   190
      buffer_lock(buffer) {
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   191
        def text(i: Text.Offset): Char = buffer.getText(i, 1).charAt(0)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   192
        try {
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   193
          val c = text(offset)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   194
          if (Character.isHighSurrogate(c) && Character.isLowSurrogate(text(offset + 1)))
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   195
            Text.Range(offset, offset + 2)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   196
          else if (Character.isLowSurrogate(c) && Character.isHighSurrogate(text(offset - 1)))
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   197
            Text.Range(offset - 1, offset + 1)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   198
          else
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   199
            Text.Range(offset, offset + 1)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   200
        }
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   201
        catch { case _: ArrayIndexOutOfBoundsException => Text.Range(offset, offset + 1) }
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   202
      }
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   203
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   204
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   205
  /* text ranges */
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   206
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   207
  def buffer_range(buffer: JEditBuffer): Text.Range =
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   208
    Text.Range(0, buffer.getLength)
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   209
56587
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   210
  def line_range(buffer: JEditBuffer, line: Int): Text.Range =
56589
71c5d1f516c0 more robust JEdit_Lib.line_range, according to usual jEdit confusion at end of last line;
wenzelm
parents: 56587
diff changeset
   211
    Text.Range(buffer.getLineStartOffset(line), buffer.getLineEndOffset(line) min buffer.getLength)
56587
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   212
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   213
  def caret_range(text_area: TextArea): Text.Range =
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   214
    point_range(text_area.getBuffer, text_area.getCaretPosition)
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   215
81299
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   216
  def selection_ranges(text_area: TextArea): List[Text.Range] = {
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   217
    val buffer = text_area.getBuffer
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   218
    text_area.getSelection.toList.flatMap(
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   219
      {
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   220
        case rect: Selection.Rect =>
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   221
          List.from(
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   222
            for {
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   223
              l <- (rect.getStartLine to rect.getEndLine).iterator
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   224
              r = Text.Range(rect.getStart(buffer, l), rect.getEnd(buffer, l))
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   225
              if !r.is_singularity
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   226
            } yield r)
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   227
        case sel: Selection => List(Text.Range(sel.getStart, sel.getEnd))
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   228
      })
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   229
  }
e45d6575f893 more operations;
wenzelm
parents: 80554
diff changeset
   230
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   231
  def visible_range(text_area: TextArea): Option[Text.Range] = {
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   232
    val buffer = text_area.getBuffer
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   233
    val n = text_area.getVisibleLines
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   234
    if (n > 0) {
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   235
      val start = text_area.getScreenLineStartOffset(0)
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   236
      val raw_end = text_area.getScreenLineEndOffset(n - 1)
49843
afddf4e26fac further refinement of jEdit line range, avoiding lack of final \n;
wenzelm
parents: 49712
diff changeset
   237
      val end = if (raw_end >= 0) raw_end min buffer.getLength else buffer.getLength
afddf4e26fac further refinement of jEdit line range, avoiding lack of final \n;
wenzelm
parents: 49712
diff changeset
   238
      Some(Text.Range(start, end))
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   239
    }
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   240
    else None
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   241
  }
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   242
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   243
  def invalidate_range(text_area: TextArea, range: Text.Range): Unit = {
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   244
    val buffer = text_area.getBuffer
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   245
    buffer_range(buffer).try_restrict(range) match {
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   246
      case Some(range1) if !range1.is_singularity =>
56699
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   247
        try {
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   248
          text_area.invalidateLineRange(
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   249
            buffer.getLineOfOffset(range1.start),
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   250
            buffer.getLineOfOffset(range1.stop))
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   251
        }
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   252
        catch { case _: ArrayIndexOutOfBoundsException => }
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   253
      case _ =>
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   254
    }
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   255
  }
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   256
80554
2ee3d05afb22 clarified signature: more arguments;
wenzelm
parents: 80551
diff changeset
   257
  def invalidate_screen(text_area: TextArea, start: Int = -1, end: Int = -1): Unit = {
62986
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   258
    val visible_lines = text_area.getVisibleLines
80551
1638e980f737 clarified signature;
wenzelm
parents: 76782
diff changeset
   259
    if (visible_lines > 0) {
80554
2ee3d05afb22 clarified signature: more arguments;
wenzelm
parents: 80551
diff changeset
   260
      val start_line = if (start >= 0) start else 0
2ee3d05afb22 clarified signature: more arguments;
wenzelm
parents: 80551
diff changeset
   261
      val end_line = if (end >= 0) end else visible_lines
2ee3d05afb22 clarified signature: more arguments;
wenzelm
parents: 80551
diff changeset
   262
      text_area.invalidateScreenLineRange(start_line, end_line)
80551
1638e980f737 clarified signature;
wenzelm
parents: 76782
diff changeset
   263
    }
62986
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   264
  }
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   265
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   266
81434
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   267
  /* scrolling */
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   268
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   269
  def vertical_scrollbar(text_area: TextArea): JScrollBar =
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   270
    Untyped.get[JScrollBar](text_area, "vertical")
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   271
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   272
  def horizontal_scrollbar(text_area: TextArea): JScrollBar =
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   273
    Untyped.get[JScrollBar](text_area, "horizontal")
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   274
81435
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   275
  def scrollbar_at_end(scrollbar: JScrollBar): Boolean =
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   276
    scrollbar.getValue > 0 &&
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   277
      scrollbar.getValue + scrollbar.getVisibleAmount == scrollbar.getMaximum
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   278
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   279
  def scrollbar_bottom(text_area: TextArea): Boolean =
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   280
    scrollbar_at_end(vertical_scrollbar(text_area))
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   281
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   282
  def scrollbar_start(text_area: TextArea): Int =
839c4b2b01fa more ambitious scrolling: retain original scroll position if possible;
wenzelm
parents: 81434
diff changeset
   283
    text_area.getBuffer.getLineStartOffset(vertical_scrollbar(text_area).getValue)
81434
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   284
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   285
  def bottom_line_offset(buffer: JEditBuffer): Int =
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   286
    buffer.getLineStartOffset(buffer.getLineOfOffset(buffer.getLength))
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   287
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   288
  def scroll_to_caret(text_area: TextArea): Unit = {
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   289
    val caret_line = text_area.getCaretLine()
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   290
    val display_manager = text_area.getDisplayManager
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   291
    if (!display_manager.isLineVisible(caret_line)) {
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   292
      display_manager.expandFold(caret_line, true)
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   293
    }
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   294
    text_area.scrollToCaret(true)
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   295
  }
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   296
1935ed4fe9c2 more ambitious scrolling: retain bottom position after output;
wenzelm
parents: 81426
diff changeset
   297
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   298
  /* graphics range */
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   299
81450
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   300
  def init_font_context(view: View, painter: TextAreaPainter): Unit = {
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   301
    painter.setAntiAlias(new AntiAlias(jEdit.getProperty("view.antiAlias")))
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   302
    painter.setFractionalFontMetricsEnabled(jEdit.getBooleanProperty("view.fracFontMetrics"))
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   303
    val old = painter.getFontRenderContext
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   304
    Untyped.set[FontRenderContext](painter, "fontRenderContext",
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   305
      new FontRenderContext(view.getGraphicsConfiguration.getDefaultTransform,
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   306
        old.getAntiAliasingHint, old.getFractionalMetricsHint))
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   307
  }
0c29878ae48f more accurate initial FontRenderContext, notably on macOS, Windows, or Linux with "env GDK_SCALE=2";
wenzelm
parents: 81444
diff changeset
   308
81340
30f7eb65d679 clarified signature;
wenzelm
parents: 81299
diff changeset
   309
  def font_metric(painter: TextAreaPainter): Font_Metric =
81412
4794576828df clarified signature: include standard margin in object equality;
wenzelm
parents: 81401
diff changeset
   310
    new Font_Metric(
4794576828df clarified signature: include standard margin in object equality;
wenzelm
parents: 81401
diff changeset
   311
      font = painter.getFont,
81417
964b85e04f1f clarified margin operations (again, reverting 4794576828df);
wenzelm
parents: 81412
diff changeset
   312
      context = painter.getFontRenderContext)
81340
30f7eb65d679 clarified signature;
wenzelm
parents: 81299
diff changeset
   313
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 59571
diff changeset
   314
  case class Gfx_Range(x: Int, y: Int, length: Int)
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   315
49843
afddf4e26fac further refinement of jEdit line range, avoiding lack of final \n;
wenzelm
parents: 49712
diff changeset
   316
  // NB: jEdit always normalizes \r\n and \r to \n
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   317
  // NB: last line lacks \n
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   318
  def gfx_range(text_area: TextArea, range: Text.Range): Option[Gfx_Range] = {
81340
30f7eb65d679 clarified signature;
wenzelm
parents: 81299
diff changeset
   319
    val metric = font_metric(text_area.getPainter)
30f7eb65d679 clarified signature;
wenzelm
parents: 81299
diff changeset
   320
    val char_width = metric.average_width.round.toInt
50849
70f7483df9cb more uniform Pretty.char_width;
wenzelm
parents: 50658
diff changeset
   321
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   322
    val buffer = text_area.getBuffer
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   323
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   324
    val end = buffer.getLength
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   325
    val stop = range.stop
51078
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   326
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   327
    val (p, q, r) =
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   328
      try {
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   329
        val p = text_area.offsetToXY(range.start)
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   330
        val (q, r) =
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   331
          if (get_text(buffer, Text.Range(stop - 1, stop)).contains("\n")) {
51078
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   332
            (text_area.offsetToXY(stop - 1), char_width)
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   333
          }
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   334
          else if (stop >= end) {
55549
5c40782f68b3 clarified special eol treatment (amending 3d55ef732cd7): allow last line to be empty, which means stop == end for second-last line;
wenzelm
parents: 53786
diff changeset
   335
            (text_area.offsetToXY(end), char_width * (stop - end))
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   336
          }
51078
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   337
          else (text_area.offsetToXY(stop), 0)
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   338
        (p, q, r)
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   339
      }
4e1c940b1fb2 more robust JEdit_Lib.pixel_range, which could crash via Rich_Text_Area.tooltip_painter with bad mouse coordinates;
wenzelm
parents: 50849
diff changeset
   340
      catch { case _: ArrayIndexOutOfBoundsException => (null, null, 0) }
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   341
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   342
    if (p != null && q != null && p.x < q.x + r && p.y == q.y) {
50115
8cde6f1a0106 tuned signature;
wenzelm
parents: 49941
diff changeset
   343
      Some(Gfx_Range(p.x, p.y, q.x + r - p.x))
81401
874e12fb6c3d tuned: fewer warnings in IntelliJ IDEA;
wenzelm
parents: 81340
diff changeset
   344
    }
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   345
    else None
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   346
  }
49941
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   347
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   348
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   349
  /* pixel range */
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   350
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   351
  def pixel_range(text_area: TextArea, x: Int, y: Int): Option[Text.Range] = {
53183
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   352
    // coordinates wrt. inner painter component
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   353
    val painter = text_area.getPainter
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   354
    if (0 <= x && x < painter.getWidth && 0 <= y && y < painter.getHeight) {
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   355
      val offset = text_area.xyToOffset(x, y, false)
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   356
      if (offset >= 0) {
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   357
        val range = point_range(text_area.getBuffer, offset)
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   358
        gfx_range(text_area, range) match {
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 59571
diff changeset
   359
          case Some(g) if g.x <= x && x < g.x + g.length => Some(range)
53183
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   360
          case _ => None
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   361
        }
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   362
      }
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   363
      else None
49941
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   364
    }
53183
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   365
    else None
49941
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   366
  }
51492
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51469
diff changeset
   367
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51469
diff changeset
   368
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   369
  /* icons */
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   370
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   371
  def load_icon(name: String): Icon = {
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   372
    val name1 =
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   373
      if (name.startsWith("idea-icons/")) {
75701
84990c95712d clarified signature;
wenzelm
parents: 75696
diff changeset
   374
        val file = File.uri(Path.explode("$ISABELLE_IDEA_ICONS")).toASCIIString
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   375
        "jar:" + file + "!/" + name
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   376
      }
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   377
      else name
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   378
    val icon = GUIUtilities.loadIcon(name1)
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   379
    if (icon.getIconWidth < 0 || icon.getIconHeight < 0) error("Bad icon: " + name)
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   380
    else icon
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   381
  }
52874
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   382
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   383
  def load_image_icon(name: String): ImageIcon =
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   384
    load_icon(name) match {
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   385
      case icon: ImageIcon => icon
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   386
      case _ => error("Bad image icon: " + name)
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   387
    }
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   388
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   389
53231
423e29f1f304 avoid complication and event duplication due to KeyEventInterceptor -- NB: popup has focus within root window, it is closed on loss of focus;
wenzelm
parents: 53226
diff changeset
   390
  /* key event handling */
423e29f1f304 avoid complication and event duplication due to KeyEventInterceptor -- NB: popup has focus within root window, it is closed on loss of focus;
wenzelm
parents: 53226
diff changeset
   391
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   392
  def request_focus_view(alt_view: View = null): Unit = {
73987
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   393
    val view = if (alt_view != null) alt_view else jEdit.getActiveView()
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   394
    if (view != null) {
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   395
      val text_area = view.getTextArea
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   396
      if (text_area != null) text_area.requestFocus()
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   397
    }
fc363a3b690a build.props for isabelle.jar, including isabelle.jedit;
wenzelm
parents: 73652
diff changeset
   398
  }
66592
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   399
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   400
  def propagate_key(view: View, evt: KeyEvent): Unit = {
53231
423e29f1f304 avoid complication and event duplication due to KeyEventInterceptor -- NB: popup has focus within root window, it is closed on loss of focus;
wenzelm
parents: 53226
diff changeset
   401
    if (view != null && !evt.isConsumed)
423e29f1f304 avoid complication and event duplication due to KeyEventInterceptor -- NB: popup has focus within root window, it is closed on loss of focus;
wenzelm
parents: 53226
diff changeset
   402
      view.getInputHandler().processKeyEvent(evt, View.ACTION_BAR, false)
423e29f1f304 avoid complication and event duplication due to KeyEventInterceptor -- NB: popup has focus within root window, it is closed on loss of focus;
wenzelm
parents: 53226
diff changeset
   403
  }
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   404
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   405
  def key_listener(
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   406
    key_typed: KeyEvent => Unit = _ => (),
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   407
    key_pressed: KeyEvent => Unit = _ => (),
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   408
    key_released: KeyEvent => Unit = _ => ()
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   409
  ): KeyListener = {
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   410
    def process_key_event(evt0: KeyEvent, handle: KeyEvent => Unit): Unit = {
53237
6bfe54791591 enable jEdit KeyEventWorkaround uniformly;
wenzelm
parents: 53231
diff changeset
   411
      val evt = KeyEventWorkaround.processKeyEvent(evt0)
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   412
      if (evt != null) handle(evt)
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   413
    }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   414
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   415
    new KeyListener {
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72974
diff changeset
   416
      def keyTyped(evt: KeyEvent): Unit = process_key_event(evt, key_typed)
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72974
diff changeset
   417
      def keyPressed(evt: KeyEvent): Unit = process_key_event(evt, key_pressed)
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 72974
diff changeset
   418
      def keyReleased(evt: KeyEvent): Unit = process_key_event(evt, key_released)
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   419
    }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   420
  }
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   421
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73987
diff changeset
   422
  def special_key(evt: KeyEvent): Boolean = {
59571
1081f91c0662 updated to jedit-5.2.0;
wenzelm
parents: 59077
diff changeset
   423
    // cf. 5.2.0/jEdit/org/gjt/sp/jedit/gui/KeyEventWorkaround.java
71500
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   424
    val mod = evt.getModifiersEx
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   425
    (mod & InputEvent.CTRL_DOWN_MASK) != 0 && (mod & InputEvent.ALT_DOWN_MASK) == 0 ||
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   426
    (mod & InputEvent.CTRL_DOWN_MASK) == 0 && (mod & InputEvent.ALT_DOWN_MASK) != 0 &&
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   427
      !Debug.ALT_KEY_PRESSED_DISABLED ||
71500
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   428
    (mod & InputEvent.META_DOWN_MASK) != 0
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   429
  }
72899
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   430
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   431
  def command_modifier(evt: InputEvent): Boolean =
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   432
    (evt.getModifiersEx & Toolkit.getDefaultToolkit.getMenuShortcutKeyMaskEx) != 0
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   433
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   434
  def shift_modifier(evt: InputEvent): Boolean =
8732315dfafa tuned signature;
wenzelm
parents: 71861
diff changeset
   435
    (evt.getModifiersEx & InputEvent.SHIFT_DOWN_MASK) != 0
72927
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   436
81444
cd685e2291fa clarified mouse selection, avoid conflict of double-click with single-click (follow hyperlink);
wenzelm
parents: 81435
diff changeset
   437
  def alt_modifier(evt: InputEvent): Boolean =
cd685e2291fa clarified mouse selection, avoid conflict of double-click with single-click (follow hyperlink);
wenzelm
parents: 81435
diff changeset
   438
    (evt.getModifiersEx & InputEvent.ALT_DOWN_MASK) != 0
cd685e2291fa clarified mouse selection, avoid conflict of double-click with single-click (follow hyperlink);
wenzelm
parents: 81435
diff changeset
   439
72927
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   440
  def modifier_string(evt: InputEvent): String =
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   441
    KeyEventTranslator.getModifierString(evt) match {
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   442
      case null => ""
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   443
      case s => s
69f768aff611 clarified caret focus modifier, depending on option "jedit_focus_modifier";
wenzelm
parents: 72899
diff changeset
   444
    }
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   445
}