src/Tools/jEdit/src/jedit_lib.scala
author wenzelm
Sun, 01 Mar 2020 22:32:10 +0100
changeset 71502 f61e55bab00c
parent 71500 a3ed1b0a132f
child 71601 97ccf48c2f0c
permissions -rw-r--r--
proper navigation wrt. caret; tuned signature;
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}
53712
ea51046be71b tuned signature;
wenzelm
parents: 53274
diff changeset
    13
import java.awt.{Component, Container, GraphicsEnvironment, Point, Rectangle, Dimension}
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
    14
import java.awt.event.{InputEvent, KeyEvent, KeyListener}
53247
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    15
import javax.swing.{Icon, ImageIcon, JWindow, SwingUtilities}
49710
21d88a631fcc refer to parent frame -- relevant for floating dockables in particular;
wenzelm
parents: 49409
diff changeset
    16
56823
37be55461dbe more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents: 56774
diff changeset
    17
import scala.util.parsing.input.CharSequenceReader
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    18
62264
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
    19
import org.gjt.sp.jedit.{jEdit, Buffer, View, GUIUtilities, Debug, EditPane}
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    20
import org.gjt.sp.jedit.io.{VFS, FileVFS, VFSManager}
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
    21
import org.gjt.sp.jedit.gui.KeyEventWorkaround
61192
98eba31c51f8 tuned signature;
wenzelm
parents: 60992
diff changeset
    22
import org.gjt.sp.jedit.buffer.{JEditBuffer, LineManager}
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
    23
import org.gjt.sp.jedit.textarea.{JEditTextArea, TextArea, TextAreaPainter}
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    24
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    25
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    26
object JEdit_Lib
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
    27
{
53247
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    28
  /* location within multi-screen environment */
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    29
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    30
  final case class Screen_Location(point: Point, bounds: Rectangle)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    31
  {
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    32
    def relative(parent: Component, size: Dimension): Point =
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    33
    {
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    34
      val w = size.width
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    35
      val h = size.height
50554
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    36
53247
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    37
      val x0 = parent.getLocationOnScreen.x
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    38
      val y0 = parent.getLocationOnScreen.y
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    39
      val x1 = x0 + parent.getWidth - w
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    40
      val y1 = y0 + parent.getHeight - h
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    41
      val x2 = point.x min (bounds.x + bounds.width - w)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    42
      val y2 = point.y min (bounds.y + bounds.height - h)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    43
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    44
      val location = new Point((x2 min x1) max x0, (y2 min y1) max y0)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    45
      SwingUtilities.convertPointFromScreen(location, parent)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    46
      location
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    47
    }
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    48
  }
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    49
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    50
  def screen_location(component: Component, point: Point): Screen_Location =
50554
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    51
  {
53247
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    52
    val screen_point = new Point(point.x, point.y)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    53
    SwingUtilities.convertPointToScreen(screen_point, component)
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    54
50554
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    55
    val ge = GraphicsEnvironment.getLocalGraphicsEnvironment
53247
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    56
    val screen_bounds =
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    57
      (for {
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    58
        device <- ge.getScreenDevices.iterator
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    59
        config <- device.getConfigurations.iterator
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    60
        bounds = config.getBounds
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    61
      } yield bounds).find(_.contains(screen_point)) getOrElse ge.getMaximumWindowBounds
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    62
bd595338ca18 uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents: 53237
diff changeset
    63
    Screen_Location(screen_point, screen_bounds)
50554
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    64
  }
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    65
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50363
diff changeset
    66
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    67
  /* window geometry measurement */
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    68
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    69
  private lazy val dummy_window = new JWindow
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    70
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    71
  final case class Window_Geometry(width: Int, height: Int, inner_width: Int, inner_height: Int)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    72
  {
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    73
    def deco_width: Int = width - inner_width
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    74
    def deco_height: Int = height - inner_height
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    75
  }
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    76
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    77
  def window_geometry(outer: Container, inner: Component): Window_Geometry =
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    78
  {
57612
990ffb84489b clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents: 56930
diff changeset
    79
    GUI_Thread.require {}
53019
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    80
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    81
    val old_content = dummy_window.getContentPane
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    82
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    83
    dummy_window.setContentPane(outer)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    84
    dummy_window.pack
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    85
    dummy_window.revalidate
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    86
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    87
    val geometry =
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    88
      Window_Geometry(
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    89
        dummy_window.getWidth, dummy_window.getHeight, inner.getWidth, inner.getHeight)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    90
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    91
    dummy_window.setContentPane(old_content)
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    92
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    93
    geometry
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    94
  }
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    95
be9e94594b96 more general window_geometry;
wenzelm
parents: 53003
diff changeset
    96
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    97
  /* files */
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    98
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
    99
  def is_file(name: String): Boolean =
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   100
    VFSManager.getVFSForPath(name).isInstanceOf[FileVFS]
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   101
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   102
  def check_file(name: String): Option[JFile] =
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   103
    if (is_file(name)) Some(new JFile(name)) else None
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   104
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   105
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   106
  /* buffers */
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   107
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   108
  def buffer_text(buffer: JEditBuffer): String =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   109
    buffer_lock(buffer) { buffer.getText(0, buffer.getLength) }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   110
56823
37be55461dbe more frugal access to theory text via Reader, reduced costs for I/O text decoding;
wenzelm
parents: 56774
diff changeset
   111
  def buffer_reader(buffer: JEditBuffer): CharSequenceReader =
64824
330ec9bc4b75 tuned signature;
wenzelm
parents: 64770
diff changeset
   112
    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
   113
53274
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   114
  def buffer_mode(buffer: JEditBuffer): String =
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   115
  {
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   116
    val mode = buffer.getMode
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   117
    if (mode == null) ""
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   118
    else {
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   119
      val name = mode.getName
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   120
      if (name == null) "" else name
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   121
    }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   122
  }
1760c01f1c78 maintain Completion_Popup.Text_Area as client property like Document_View;
wenzelm
parents: 53247
diff changeset
   123
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   124
  def buffer_line_manager(buffer: JEditBuffer): LineManager =
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   125
    Untyped.get[LineManager](buffer, "lineMgr")
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   126
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   127
  def buffer_name(buffer: Buffer): String = buffer.getSymlinkPath
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   128
65469
78ace4a14975 more explicit jEdit file operations;
wenzelm
parents: 64824
diff changeset
   129
  def buffer_file(buffer: Buffer): Option[JFile] = check_file(buffer_name(buffer))
61192
98eba31c51f8 tuned signature;
wenzelm
parents: 60992
diff changeset
   130
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: 67014
diff changeset
   131
  def buffer_undo_in_progress[A](buffer: JEditBuffer, body: => A): A =
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   132
  {
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   133
    val undo_in_progress = buffer.isUndoInProgress
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   134
    def set(b: Boolean) { Untyped.set[Boolean](buffer, "undoInProgress", b) }
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   135
    try { set(true); body } finally { set(undo_in_progress) }
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   136
  }
3931ed905e93 avoid output showing up in kill ring (via TextArea.setText, JEditBuffer.remove, UndoManager.contentRemoved), e.g. relevant for action "paste-deleted";
wenzelm
parents: 67014
diff changeset
   137
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   138
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   139
  /* main jEdit components */
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   140
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   141
  def jedit_buffers(): Iterator[Buffer] = jEdit.getBuffers().iterator
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   142
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   143
  def jedit_buffer(name: String): Option[Buffer] =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   144
    jedit_buffers().find(buffer => buffer_name(buffer) == name)
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   145
56457
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   146
  def jedit_buffer(name: Document.Node.Name): Option[Buffer] =
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   147
    jedit_buffer(name.node)
eea4bbe15745 tuned signature -- prefer static type Document.Node.Name;
wenzelm
parents: 55812
diff changeset
   148
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   149
  def jedit_views(): Iterator[View] = jEdit.getViews().iterator
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   150
69636
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   151
  def jedit_view(view: View = null): View =
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   152
    if (view == null) jEdit.getActiveView() else view
dd1e0e1570d2 clarified signature;
wenzelm
parents: 69380
diff changeset
   153
62264
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   154
  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
   155
    if (view == null) Iterator.empty
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   156
    else view.getEditPanes().iterator.filter(_ != null)
340f98836fd9 re-init document views for the sake of Text_Overview size;
wenzelm
parents: 61865
diff changeset
   157
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   158
  def jedit_text_areas(view: View): Iterator[JEditTextArea] =
56587
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   159
    if (view == null) Iterator.empty
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   160
    else view.getEditPanes().iterator.filter(_ != null).map(_.getTextArea).filter(_ != null)
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   161
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   162
  def jedit_text_areas(): Iterator[JEditTextArea] =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   163
    jedit_views().flatMap(jedit_text_areas(_))
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   164
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   165
  def jedit_text_areas(buffer: JEditBuffer): Iterator[JEditTextArea] =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   166
    jedit_text_areas().filter(_.getBuffer == buffer)
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   167
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   168
  def buffer_lock[A](buffer: JEditBuffer)(body: => A): A =
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   169
  {
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   170
    try { buffer.readLock(); body }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   171
    finally { buffer.readUnlock() }
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   172
  }
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   173
50195
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   174
  def buffer_edit[A](buffer: JEditBuffer)(body: => A): A =
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   175
  {
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   176
    try { buffer.beginCompoundEdit(); body }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   177
    finally { buffer.endCompoundEdit() }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   178
  }
863b1dfc396c prefer buffer_edit combinator over Java-style boilerplate;
wenzelm
parents: 50186
diff changeset
   179
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   180
50215
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   181
  /* get text */
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   182
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 66592
diff changeset
   183
  def get_text(buffer: JEditBuffer, range: Text.Range): Option[String] =
50215
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   184
    try { Some(buffer.getText(range.start, range.length)) }
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   185
    catch { case _: ArrayIndexOutOfBoundsException => None }
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   186
97959912840a more general sendback properties;
wenzelm
parents: 50195
diff changeset
   187
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   188
  /* point range */
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   189
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   190
  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
   191
    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
   192
    else
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   193
      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
   194
        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
   195
        try {
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   196
          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
   197
          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
   198
            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
   199
          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
   200
            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
   201
          else
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   202
            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
   203
        }
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   204
        catch { case _: ArrayIndexOutOfBoundsException => Text.Range(offset, offset + 1) }
49407
215ba6884bdf tuned signature;
wenzelm
parents: 49406
diff changeset
   205
      }
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   206
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   207
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   208
  /* text ranges */
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   209
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   210
  def buffer_range(buffer: JEditBuffer): Text.Range =
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   211
    Text.Range(0, buffer.getLength)
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   212
56587
83777a91f5de clarified before_caret_range: prevent continuation on next line;
wenzelm
parents: 56574
diff changeset
   213
  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
   214
    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
   215
56592
5157f7615e99 prefer direct caret_range for update_dictionary actions, which usually happen outside the flow of editing;
wenzelm
parents: 56589
diff changeset
   216
  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
   217
    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
   218
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   219
  def visible_range(text_area: TextArea): Option[Text.Range] =
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   220
  {
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   221
    val buffer = text_area.getBuffer
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   222
    val n = text_area.getVisibleLines
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   223
    if (n > 0) {
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   224
      val start = text_area.getScreenLineStartOffset(0)
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   225
      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
   226
      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
   227
      Some(Text.Range(start, end))
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   228
    }
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   229
    else None
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   230
  }
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   231
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   232
  def invalidate_range(text_area: TextArea, range: Text.Range)
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   233
  {
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   234
    val buffer = text_area.getBuffer
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   235
    buffer_range(buffer).try_restrict(range) match {
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   236
      case Some(range1) if !range1.is_singularity =>
56699
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   237
        try {
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   238
          text_area.invalidateLineRange(
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   239
            buffer.getLineOfOffset(range1.start),
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   240
            buffer.getLineOfOffset(range1.stop))
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   241
        }
60ad80f5cb62 further robustification wrt. unclear ranges;
wenzelm
parents: 56662
diff changeset
   242
        catch { case _: ArrayIndexOutOfBoundsException => }
55812
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   243
      case _ =>
59fcd209cc0c more regular buffer_range, despite 47e8c8daccae;
wenzelm
parents: 55767
diff changeset
   244
    }
49408
3cfc114acd05 tuned signature;
wenzelm
parents: 49407
diff changeset
   245
  }
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   246
62986
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   247
  def invalidate(text_area: TextArea)
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   248
  {
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   249
    val visible_lines = text_area.getVisibleLines
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   250
    if (visible_lines > 0) text_area.invalidateScreenLineRange(0, visible_lines)
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   251
  }
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62264
diff changeset
   252
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   253
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   254
  /* graphics range */
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   255
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 59571
diff changeset
   256
  case class Gfx_Range(x: Int, y: Int, length: Int)
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   257
49843
afddf4e26fac further refinement of jEdit line range, avoiding lack of final \n;
wenzelm
parents: 49712
diff changeset
   258
  // NB: jEdit always normalizes \r\n and \r to \n
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   259
  // NB: last line lacks \n
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   260
  def gfx_range(text_area: TextArea, range: Text.Range): Option[Gfx_Range] =
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   261
  {
51507
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   262
    val metric = pretty_metric(text_area.getPainter)
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
   263
    val char_width = (metric.unit * metric.average).round.toInt
50849
70f7483df9cb more uniform Pretty.char_width;
wenzelm
parents: 50658
diff changeset
   264
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   265
    val buffer = text_area.getBuffer
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   266
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   267
    val end = buffer.getLength
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   268
    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
   269
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
   270
    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
   271
      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
   272
        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
   273
        val (q, r) =
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 66592
diff changeset
   274
          if (get_text(buffer, Text.Range(stop - 1, stop)) == Some("\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
   275
            (text_area.offsetToXY(stop - 1), char_width)
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
   276
          else if (stop >= end)
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
   277
            (text_area.offsetToXY(end), char_width * (stop - end))
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
   278
          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
   279
        (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
   280
      }
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
   281
      catch { case _: ArrayIndexOutOfBoundsException => (null, null, 0) }
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   282
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   283
    if (p != null && q != null && p.x < q.x + r && p.y == q.y)
50115
8cde6f1a0106 tuned signature;
wenzelm
parents: 49941
diff changeset
   284
      Some(Gfx_Range(p.x, p.y, q.x + r - p.x))
49409
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   285
    else None
7140a738aa49 tuned signature;
wenzelm
parents: 49408
diff changeset
   286
  }
49941
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   287
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   288
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   289
  /* pixel range */
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   290
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   291
  def pixel_range(text_area: TextArea, x: Int, y: Int): Option[Text.Range] =
f2db0596bd61 more precise pixel_range: avoid popup when pointing into empty space after actual end-of-line;
wenzelm
parents: 49843
diff changeset
   292
  {
53183
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   293
    // coordinates wrt. inner painter component
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   294
    val painter = text_area.getPainter
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   295
    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
   296
      val offset = text_area.xyToOffset(x, y, false)
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   297
      if (offset >= 0) {
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   298
        val range = point_range(text_area.getBuffer, offset)
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   299
        gfx_range(text_area, range) match {
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 59571
diff changeset
   300
          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
   301
          case _ => None
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   302
        }
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   303
      }
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   304
      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
   305
    }
53183
018d71bee930 strict checking of coordinates wrt. inner painter component;
wenzelm
parents: 53019
diff changeset
   306
    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
   307
  }
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
   308
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
   309
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
   310
  /* pretty text metric */
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
   311
51507
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   312
  abstract class Pretty_Metric extends Pretty.Metric
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   313
  {
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   314
    def average: Double
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   315
  }
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
   316
51507
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   317
  def pretty_metric(painter: TextAreaPainter): Pretty_Metric =
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   318
    new Pretty_Metric {
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   319
      def string_width(s: String): Double =
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   320
        painter.getFont.getStringBounds(s, painter.getFontRenderContext).getWidth
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   321
61865
6dcc9e4f1aa6 tuned signature;
wenzelm
parents: 61192
diff changeset
   322
      val unit = string_width(Symbol.space) max 1.0
51507
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   323
      val average = string_width("mix") / (3 * unit)
ebd5366e7a42 tuned signature;
wenzelm
parents: 51492
diff changeset
   324
      def apply(s: String): Double = if (s == "\n") 1.0 else string_width(s) / unit
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
   325
    }
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   326
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   327
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   328
  /* icons */
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   329
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   330
  def load_icon(name: String): Icon =
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   331
  {
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   332
    val name1 =
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   333
      if (name.startsWith("idea-icons/")) {
64770
1ddc262514b8 more robust, notably on Windows;
wenzelm
parents: 64730
diff changeset
   334
        val file = Path.explode("$JEDIT_HOME/dist/jars/idea-icons.jar").file.toURI.toASCIIString
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   335
        "jar:" + file + "!/" + name
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   336
      }
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   337
      else name
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   338
    val icon = GUIUtilities.loadIcon(name1)
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   339
    if (icon.getIconWidth < 0 || icon.getIconHeight < 0) error("Bad icon: " + name)
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   340
    else icon
9e934d4fff00 tuned signature;
wenzelm
parents: 52478
diff changeset
   341
  }
52874
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   342
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   343
  def load_image_icon(name: String): ImageIcon =
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   344
    load_icon(name) match {
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   345
      case icon: ImageIcon => icon
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   346
      case _ => error("Bad image icon: " + name)
91032244e4ca query process animation;
wenzelm
parents: 52873
diff changeset
   347
    }
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   348
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   349
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
   350
  /* 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
   351
66592
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   352
  def request_focus_view(alt_view: View = null)
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   353
  {
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   354
    isabelle.jedit_base.JEdit_Lib.request_focus_view(alt_view)
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   355
  }
cc93f86e005f tuned signature;
wenzelm
parents: 66591
diff changeset
   356
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
   357
  def propagate_key(view: View, evt: KeyEvent)
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
   358
  {
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
   359
    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
   360
      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
   361
  }
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   362
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   363
  def key_listener(
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   364
    key_typed: KeyEvent => Unit = _ => (),
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   365
    key_pressed: KeyEvent => Unit = _ => (),
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   366
    key_released: KeyEvent => Unit = _ => ()): KeyListener =
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   367
  {
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   368
    def process_key_event(evt0: KeyEvent, handle: KeyEvent => Unit)
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   369
    {
53237
6bfe54791591 enable jEdit KeyEventWorkaround uniformly;
wenzelm
parents: 53231
diff changeset
   370
      val evt = KeyEventWorkaround.processKeyEvent(evt0)
53226
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   371
      if (evt != null) handle(evt)
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   372
    }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   373
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   374
    new KeyListener
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   375
    {
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   376
      def keyTyped(evt: KeyEvent) { process_key_event(evt, key_typed) }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   377
      def keyPressed(evt: KeyEvent) { process_key_event(evt, key_pressed) }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   378
      def keyReleased(evt: KeyEvent) { process_key_event(evt, key_released) }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   379
    }
9cf8e2263ca7 more systematic JEdit_Lib.key_listener with optional KeyEventWorkaround;
wenzelm
parents: 53183
diff changeset
   380
  }
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   381
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   382
  def special_key(evt: KeyEvent): Boolean =
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   383
  {
59571
1081f91c0662 updated to jedit-5.2.0;
wenzelm
parents: 59077
diff changeset
   384
    // cf. 5.2.0/jEdit/org/gjt/sp/jedit/gui/KeyEventWorkaround.java
71500
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   385
    val mod = evt.getModifiersEx
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   386
    (mod & InputEvent.CTRL_DOWN_MASK) != 0 && (mod & InputEvent.ALT_DOWN_MASK) == 0 ||
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   387
    (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
   388
      !Debug.ALT_KEY_PRESSED_DISABLED ||
71500
a3ed1b0a132f tuned -- avoid deprecated operations;
wenzelm
parents: 71499
diff changeset
   389
    (mod & InputEvent.META_DOWN_MASK) != 0
53784
322a3ff42b33 completion popup for history text field;
wenzelm
parents: 53712
diff changeset
   390
  }
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents:
diff changeset
   391
}