src/Tools/jEdit/src/rendering.scala
author wenzelm
Sat, 01 Mar 2014 12:07:26 +0100
changeset 55820 61869776ce1f
parent 55790 4670f18baba5
child 55823 0331b6d2ab0c
permissions -rw-r--r--
tuned signature -- more explicit Document.Elements;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50202
ec0f2f8dbeb9 tuned file name;
wenzelm
parents: 50201
diff changeset
     1
/*  Title:      Tools/jEdit/src/rendering.scala
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     3
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
     4
Isabelle-specific implementation of quasi-abstract rendering and
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
     5
markup interpretation.
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     6
*/
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     7
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     8
package isabelle.jedit
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
     9
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    10
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    11
import isabelle._
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    12
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    13
import java.awt.Color
46227
4aa84f84d5e8 more precise rendering of overview_color/gutter_message/squiggly_underline based on cumulation of command status and warning/error messages;
wenzelm
parents: 46224
diff changeset
    14
import javax.swing.Icon
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    15
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    16
import org.gjt.sp.jedit.syntax.{Token => JEditToken}
53272
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    17
import org.gjt.sp.jedit.{jEdit, View}
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    18
45460
dcd02d1a25d7 more tooltip content;
wenzelm
parents: 45454
diff changeset
    19
import scala.collection.immutable.SortedMap
dcd02d1a25d7 more tooltip content;
wenzelm
parents: 45454
diff changeset
    20
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    21
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
    22
object Rendering
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    23
{
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
    24
  def apply(snapshot: Document.Snapshot, options: Options): Rendering =
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
    25
    new Rendering(snapshot, options)
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    26
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
    27
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49358
diff changeset
    28
  /* message priorities */
43388
34492601c0e0 tuned colors;
wenzelm
parents: 43386
diff changeset
    29
46227
4aa84f84d5e8 more precise rendering of overview_color/gutter_message/squiggly_underline based on cumulation of command status and warning/error messages;
wenzelm
parents: 46224
diff changeset
    30
  private val writeln_pri = 1
52644
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
    31
  private val information_pri = 2
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
    32
  private val tracing_pri = 3
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
    33
  private val warning_pri = 4
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
    34
  private val legacy_pri = 5
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
    35
  private val error_pri = 6
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
    36
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
    37
  private val message_pri = Map(
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
    38
    Markup.WRITELN -> writeln_pri, Markup.WRITELN_MESSAGE -> writeln_pri,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
    39
    Markup.TRACING -> tracing_pri, Markup.TRACING_MESSAGE -> tracing_pri,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
    40
    Markup.WARNING -> warning_pri, Markup.WARNING_MESSAGE -> warning_pri,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
    41
    Markup.ERROR -> error_pri, Markup.ERROR_MESSAGE -> error_pri)
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
    42
49406
38db4832b210 somewhat more general JEdit_Lib;
wenzelm
parents: 49358
diff changeset
    43
50206
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    44
  /* jEdit font */
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    45
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    46
  def font_family(): String = jEdit.getProperty("view.font")
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    47
53272
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    48
  private def view_font_size(): Int = jEdit.getIntegerProperty("view.fontsize", 16)
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    49
  private val font_size0 = 5
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    50
  private val font_size1 = 250
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    51
50206
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    52
  def font_size(scale: String): Float =
53272
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    53
    (view_font_size() * PIDE.options.real(scale)).toFloat max font_size0 min font_size1
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    54
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    55
  def font_size_change(view: View, change: Int => Int)
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    56
  {
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    57
    val size = change(view_font_size()) max font_size0 min font_size1
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    58
    jEdit.setIntegerProperty("view.fontsize", size)
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    59
    jEdit.propertiesChanged()
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    60
    jEdit.saveSettings()
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    61
    view.getStatus.setMessageAndClear("Text font size: " + size)
0dfd78ff7696 more abstract Completion_Popup.Text_Area;
wenzelm
parents: 53230
diff changeset
    62
  }
50206
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    63
6626bc5ed053 tuned signature;
wenzelm
parents: 50205
diff changeset
    64
53230
6589ff56cc3c determine completion geometry like tooltip;
wenzelm
parents: 52980
diff changeset
    65
  /* popup window bounds */
6589ff56cc3c determine completion geometry like tooltip;
wenzelm
parents: 52980
diff changeset
    66
6589ff56cc3c determine completion geometry like tooltip;
wenzelm
parents: 52980
diff changeset
    67
  def popup_bounds: Double = (PIDE.options.real("jedit_popup_bounds") max 0.2) min 0.8
6589ff56cc3c determine completion geometry like tooltip;
wenzelm
parents: 52980
diff changeset
    68
6589ff56cc3c determine completion geometry like tooltip;
wenzelm
parents: 52980
diff changeset
    69
55501
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
    70
  /* Isabelle/Isar token markup */
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    71
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    72
  private val command_style: Map[String, Byte] =
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    73
  {
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    74
    import JEditToken._
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    75
    Map[String, Byte](
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    76
      Keyword.THY_END -> KEYWORD2,
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    77
      Keyword.THY_SCRIPT -> LABEL,
53571
e58ca0311c0f more explicit indication of 'done' as proof script element;
wenzelm
parents: 53371
diff changeset
    78
      Keyword.QED_SCRIPT -> DIGIT,
50643
09394eaf6804 tuned rendering;
wenzelm
parents: 50554
diff changeset
    79
      Keyword.PRF_SCRIPT -> DIGIT,
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    80
      Keyword.PRF_ASM -> KEYWORD3,
53371
47b23c582127 more explicit indication of 'guess' as improper Isar (aka "script") element;
wenzelm
parents: 53272
diff changeset
    81
      Keyword.PRF_ASM_GOAL -> KEYWORD3,
47b23c582127 more explicit indication of 'guess' as improper Isar (aka "script") element;
wenzelm
parents: 53272
diff changeset
    82
      Keyword.PRF_ASM_GOAL_SCRIPT -> DIGIT
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    83
    ).withDefaultValue(KEYWORD1)
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    84
  }
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    85
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    86
  private val token_style: Map[Token.Kind.Value, Byte] =
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
    87
  {
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    88
    import JEditToken._
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    89
    Map[Token.Kind.Value, Byte](
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    90
      Token.Kind.KEYWORD -> KEYWORD2,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    91
      Token.Kind.IDENT -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    92
      Token.Kind.LONG_IDENT -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    93
      Token.Kind.SYM_IDENT -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    94
      Token.Kind.VAR -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    95
      Token.Kind.TYPE_IDENT -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    96
      Token.Kind.TYPE_VAR -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    97
      Token.Kind.NAT -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
    98
      Token.Kind.FLOAT -> NULL,
43431
f3d5cecfecdc tuned markup;
wenzelm
parents: 43430
diff changeset
    99
      Token.Kind.STRING -> LITERAL1,
f3d5cecfecdc tuned markup;
wenzelm
parents: 43430
diff changeset
   100
      Token.Kind.ALT_STRING -> LITERAL2,
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
   101
      Token.Kind.VERBATIM -> COMMENT3,
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   102
      Token.Kind.CARTOUCHE -> COMMENT4,
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
   103
      Token.Kind.SPACE -> NULL,
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
   104
      Token.Kind.COMMENT -> COMMENT1,
48754
c2c1e5944536 clarified undefined, unparsed, unfinished command spans;
wenzelm
parents: 48751
diff changeset
   105
      Token.Kind.ERROR -> INVALID
39179
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
   106
    ).withDefaultValue(NULL)
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
   107
  }
591bbab9ef59 moved token markup tables to isabelle_markup.scala;
wenzelm
parents: 39178
diff changeset
   108
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
   109
  def token_markup(syntax: Outer_Syntax, token: Token): Byte =
43430
1ed88ddf1268 more uniform treatment of "keyword" vs. "operator";
wenzelm
parents: 43418
diff changeset
   110
    if (token.is_command) command_style(syntax.keyword_kind(token.content).getOrElse(""))
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   111
    else if (token.is_delimiter) JEditToken.OPERATOR
43414
f0770743b7ec static token markup, based on outer syntax only;
wenzelm
parents: 43394
diff changeset
   112
    else token_style(token.kind)
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   113
55501
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
   114
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
   115
  /* Isabelle/ML token markup */
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
   116
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   117
  private val ml_token_style: Map[ML_Lex.Kind.Value, Byte] =
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   118
  {
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   119
    import JEditToken._
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   120
    Map[ML_Lex.Kind.Value, Byte](
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   121
      ML_Lex.Kind.KEYWORD -> NULL,
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   122
      ML_Lex.Kind.IDENT -> NULL,
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   123
      ML_Lex.Kind.LONG_IDENT -> NULL,
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   124
      ML_Lex.Kind.TYPE_VAR -> NULL,
55503
wenzelm
parents: 55501
diff changeset
   125
      ML_Lex.Kind.WORD -> DIGIT,
wenzelm
parents: 55501
diff changeset
   126
      ML_Lex.Kind.INT -> DIGIT,
wenzelm
parents: 55501
diff changeset
   127
      ML_Lex.Kind.REAL -> DIGIT,
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   128
      ML_Lex.Kind.CHAR -> LITERAL2,
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   129
      ML_Lex.Kind.STRING -> LITERAL1,
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   130
      ML_Lex.Kind.SPACE -> NULL,
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   131
      ML_Lex.Kind.COMMENT -> COMMENT1,
55512
75c68e05f9ea support ML antiquotations in Scala;
wenzelm
parents: 55505
diff changeset
   132
      ML_Lex.Kind.ANTIQ -> NULL,
75c68e05f9ea support ML antiquotations in Scala;
wenzelm
parents: 55505
diff changeset
   133
      ML_Lex.Kind.ANTIQ_START -> LITERAL4,
75c68e05f9ea support ML antiquotations in Scala;
wenzelm
parents: 55505
diff changeset
   134
      ML_Lex.Kind.ANTIQ_STOP -> LITERAL4,
75c68e05f9ea support ML antiquotations in Scala;
wenzelm
parents: 55505
diff changeset
   135
      ML_Lex.Kind.ANTIQ_OTHER -> NULL,
55514
8ef781e282d9 more uniform rendering of text that is formally interpreted: avoid clash with inner markup;
wenzelm
parents: 55512
diff changeset
   136
      ML_Lex.Kind.ANTIQ_STRING -> NULL,
8ef781e282d9 more uniform rendering of text that is formally interpreted: avoid clash with inner markup;
wenzelm
parents: 55512
diff changeset
   137
      ML_Lex.Kind.ANTIQ_ALT_STRING -> NULL,
8ef781e282d9 more uniform rendering of text that is formally interpreted: avoid clash with inner markup;
wenzelm
parents: 55512
diff changeset
   138
      ML_Lex.Kind.ANTIQ_CARTOUCHE -> NULL,
55500
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   139
      ML_Lex.Kind.ERROR -> INVALID
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   140
    ).withDefaultValue(NULL)
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   141
  }
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   142
cdbbaa3074a8 isabelle-ml mode with separate token marker;
wenzelm
parents: 55316
diff changeset
   143
  def ml_token_markup(token: ML_Lex.Token): Byte =
55501
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
   144
    if (!token.is_keyword) ml_token_style(token.kind)
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   145
    else if (token.is_delimiter) JEditToken.OPERATOR
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   146
    else if (ML_Lex.keywords2(token.source)) JEditToken.KEYWORD2
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   147
    else if (ML_Lex.keywords3(token.source)) JEditToken.KEYWORD3
55501
fdde1d62e1fb refined ML keyword styles;
wenzelm
parents: 55500
diff changeset
   148
    else JEditToken.KEYWORD1
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   149
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   150
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   151
  /* markup elements */
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   152
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   153
  private val completion_names_elements =
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   154
    Document.Elements(Markup.COMPLETION)
55674
8a213ab0e78a support for semantic completion on Scala side;
wenzelm
parents: 55666
diff changeset
   155
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   156
  private val language_context_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   157
    Document.Elements(Markup.STRING, Markup.ALTSTRING, Markup.VERBATIM,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   158
      Markup.CARTOUCHE, Markup.COMMENT, Markup.LANGUAGE,
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   159
      Markup.ML_STRING, Markup.ML_COMMENT)
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   160
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   161
  private val highlight_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   162
    Document.Elements(Markup.LANGUAGE, Markup.ML_TYPING, Markup.TOKEN_RANGE,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   163
      Markup.ENTITY, Markup.PATH, Markup.URL, Markup.SORTING,
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   164
      Markup.TYPING, Markup.FREE, Markup.SKOLEM, Markup.BOUND,
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   165
      Markup.VAR, Markup.TFREE, Markup.TVAR)
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   166
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   167
  private val hyperlink_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   168
    Document.Elements(Markup.ENTITY, Markup.PATH, Markup.POSITION, Markup.URL)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   169
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   170
  private val active_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   171
    Document.Elements(Markup.DIALOG, Markup.BROWSER, Markup.GRAPHVIEW,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   172
      Markup.SENDBACK, Markup.SIMP_TRACE)
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   173
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   174
  private val tooltip_message_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   175
    Document.Elements(Markup.WRITELN, Markup.WARNING, Markup.ERROR, Markup.BAD)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   176
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   177
  private val tooltip_descriptions =
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   178
    Map(
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   179
      Markup.TOKEN_RANGE -> "inner syntax token",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   180
      Markup.FREE -> "free variable",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   181
      Markup.SKOLEM -> "skolem variable",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   182
      Markup.BOUND -> "bound variable",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   183
      Markup.VAR -> "schematic variable",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   184
      Markup.TFREE -> "free type variable",
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   185
      Markup.TVAR -> "schematic type variable")
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   186
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   187
  private val tooltip_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   188
    Document.Elements(Markup.LANGUAGE, Markup.TIMING, Markup.ENTITY, Markup.SORTING,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   189
      Markup.TYPING, Markup.ML_TYPING, Markup.PATH, Markup.URL) ++
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   190
    Document.Elements(tooltip_descriptions.keySet)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   191
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   192
  private val gutter_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   193
    Document.Elements(Markup.WRITELN, Markup.WARNING, Markup.ERROR)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   194
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   195
  private val squiggly_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   196
    Document.Elements(Markup.WRITELN, Markup.WARNING, Markup.ERROR)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   197
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   198
  private val line_background_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   199
    Document.Elements(Markup.WRITELN_MESSAGE, Markup.TRACING_MESSAGE,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   200
      Markup.WARNING_MESSAGE, Markup.ERROR_MESSAGE,
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   201
      Markup.INFORMATION)
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   202
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   203
  private val separator_elements =
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   204
    Document.Elements(Markup.SEPARATOR)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   205
55790
4670f18baba5 simplified rendering -- no need to over-emphasize "token_range";
wenzelm
parents: 55765
diff changeset
   206
  private val background_elements =
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   207
    Protocol.command_status_elements + Markup.WRITELN_MESSAGE +
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   208
      Markup.TRACING_MESSAGE + Markup.WARNING_MESSAGE +
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   209
      Markup.ERROR_MESSAGE + Markup.BAD + Markup.INTENSIFY ++
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   210
      active_elements
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   211
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   212
  private val foreground_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   213
    Document.Elements(Markup.STRING, Markup.ALTSTRING, Markup.VERBATIM,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   214
      Markup.CARTOUCHE, Markup.ANTIQUOTED)
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   215
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   216
  private val bullet_elements =
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   217
    Document.Elements(Markup.BULLET)
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   218
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   219
  private val fold_depth_elements =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   220
    Document.Elements(Markup.TEXT_FOLD, Markup.GOAL, Markup.SUBGOAL)
39178
83e9f3ccea9f concentrate Isabelle specific physical rendering markup selection in isabelle_markup.scala;
wenzelm
parents:
diff changeset
   221
}
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   222
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   223
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   224
class Rendering private(val snapshot: Document.Snapshot, val options: Options)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   225
{
55710
2d623ab55672 tuned messages;
wenzelm
parents: 55690
diff changeset
   226
  override def toString: String = "Rendering(" + snapshot.toString + ")"
2d623ab55672 tuned messages;
wenzelm
parents: 55690
diff changeset
   227
2d623ab55672 tuned messages;
wenzelm
parents: 55690
diff changeset
   228
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   229
  /* colors */
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   230
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   231
  def color_value(s: String): Color = Color_Value(options.string(s))
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   232
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   233
  val outdated_color = color_value("outdated_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   234
  val unprocessed_color = color_value("unprocessed_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   235
  val unprocessed1_color = color_value("unprocessed1_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   236
  val running_color = color_value("running_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   237
  val running1_color = color_value("running1_color")
51574
2b58d7b139d6 ghost bullet via markup, which is painted as bar under text (normally space);
wenzelm
parents: 51496
diff changeset
   238
  val bullet_color = color_value("bullet_color")
49706
92ef8b638c6c tuned color and font size;
wenzelm
parents: 49704
diff changeset
   239
  val tooltip_color = color_value("tooltip_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   240
  val writeln_color = color_value("writeln_color")
52650
4cf6fbf1d9a1 more rendering for information messages;
wenzelm
parents: 52644
diff changeset
   241
  val information_color = color_value("information_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   242
  val warning_color = color_value("warning_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   243
  val error_color = color_value("error_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   244
  val error1_color = color_value("error1_color")
49418
c451856129cd more explicit message markup and rendering;
wenzelm
parents: 49406
diff changeset
   245
  val writeln_message_color = color_value("writeln_message_color")
52650
4cf6fbf1d9a1 more rendering for information messages;
wenzelm
parents: 52644
diff changeset
   246
  val information_message_color = color_value("information_message_color")
49418
c451856129cd more explicit message markup and rendering;
wenzelm
parents: 49406
diff changeset
   247
  val tracing_message_color = color_value("tracing_message_color")
c451856129cd more explicit message markup and rendering;
wenzelm
parents: 49406
diff changeset
   248
  val warning_message_color = color_value("warning_message_color")
c451856129cd more explicit message markup and rendering;
wenzelm
parents: 49406
diff changeset
   249
  val error_message_color = color_value("error_message_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   250
  val bad_color = color_value("bad_color")
49358
0fa351b1bd14 clarified markup names;
wenzelm
parents: 49356
diff changeset
   251
  val intensify_color = color_value("intensify_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   252
  val quoted_color = color_value("quoted_color")
52101
7679178b0aa5 less intrusive rendering of antiquoted text -- avoid visual clash with "blue variables" in particular;
wenzelm
parents: 52081
diff changeset
   253
  val antiquoted_color = color_value("antiquoted_color")
55526
39708e59f4b0 more markup;
wenzelm
parents: 55514
diff changeset
   254
  val antiquote_color = color_value("antiquote_color")
49358
0fa351b1bd14 clarified markup names;
wenzelm
parents: 49356
diff changeset
   255
  val highlight_color = color_value("highlight_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   256
  val hyperlink_color = color_value("hyperlink_color")
50450
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50215
diff changeset
   257
  val active_color = color_value("active_color")
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50215
diff changeset
   258
  val active_hover_color = color_value("active_hover_color")
50498
6647ba2775c1 support dialog via document content;
wenzelm
parents: 50450
diff changeset
   259
  val active_result_color = color_value("active_result_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   260
  val keyword1_color = color_value("keyword1_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   261
  val keyword2_color = color_value("keyword2_color")
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   262
  val keyword3_color = color_value("keyword3_color")
55713
734ac5709fbe clarified painting of invisible caret, e.g. focus change due to popup;
wenzelm
parents: 55710
diff changeset
   263
  val caret_invisible_color = color_value("caret_invisible_color")
55747
bef19c929ba5 more completion rendering: active, semantic, syntactic;
wenzelm
parents: 55746
diff changeset
   264
  val completion_color = color_value("completion_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   265
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   266
  val tfree_color = color_value("tfree_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   267
  val tvar_color = color_value("tvar_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   268
  val free_color = color_value("free_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   269
  val skolem_color = color_value("skolem_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   270
  val bound_color = color_value("bound_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   271
  val var_color = color_value("var_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   272
  val inner_numeral_color = color_value("inner_numeral_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   273
  val inner_quoted_color = color_value("inner_quoted_color")
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   274
  val inner_cartouche_color = color_value("inner_cartouche_color")
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   275
  val inner_comment_color = color_value("inner_comment_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   276
  val dynamic_color = color_value("dynamic_color")
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   277
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   278
55674
8a213ab0e78a support for semantic completion on Scala side;
wenzelm
parents: 55666
diff changeset
   279
  /* completion */
8a213ab0e78a support for semantic completion on Scala side;
wenzelm
parents: 55666
diff changeset
   280
55690
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   281
  def completion_names(range: Text.Range): Option[Completion.Names] =
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   282
    if (snapshot.is_outdated) None
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   283
    else {
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   284
      snapshot.select(range, Rendering.completion_names_elements, _ =>
55688
767edb2c1e4e some rendering of completion range;
wenzelm
parents: 55687
diff changeset
   285
        {
767edb2c1e4e some rendering of completion range;
wenzelm
parents: 55687
diff changeset
   286
          case Completion.Names.Info(names) => Some(names)
767edb2c1e4e some rendering of completion range;
wenzelm
parents: 55687
diff changeset
   287
          case _ => None
767edb2c1e4e some rendering of completion range;
wenzelm
parents: 55687
diff changeset
   288
        }).headOption.map(_.info)
55674
8a213ab0e78a support for semantic completion on Scala side;
wenzelm
parents: 55666
diff changeset
   289
    }
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55550
diff changeset
   290
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   291
  def language_context(range: Text.Range): Option[Completion.Language_Context] =
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   292
    snapshot.select(range, Rendering.language_context_elements, _ =>
55690
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   293
      {
55746
wenzelm
parents: 55713
diff changeset
   294
        case Text.Info(_, XML.Elem(Markup.Language(language, symbols, antiquotes), _)) =>
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   295
          Some(Completion.Language_Context(language, symbols, antiquotes))
55690
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   296
        case Text.Info(_, elem)
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   297
        if elem.name == Markup.ML_STRING || elem.name == Markup.ML_COMMENT =>
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   298
          Some(Completion.Language_Context.ML_inner)
55690
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   299
        case Text.Info(_, _) =>
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55747
diff changeset
   300
          Some(Completion.Language_Context.inner)
55690
d73949233c2e clarified stretch_point_range wrt. UTF-16 surrogates;
wenzelm
parents: 55689
diff changeset
   301
      }).headOption.map(_.info)
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55550
diff changeset
   302
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55550
diff changeset
   303
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   304
  /* command status overview */
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   305
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   306
  def overview_limit: Int = options.int("jedit_text_overview_limit")
49969
72216713733a further attempts to cope with large files via option jedit_text_overview_limit;
wenzelm
parents: 49827
diff changeset
   307
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   308
  def overview_color(range: Text.Range): Option[Color] =
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   309
  {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   310
    if (snapshot.is_outdated) None
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   311
    else {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   312
      val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   313
        snapshot.cumulate[(Protocol.Status, Int)](
55646
ec4651c697e3 tuned signature;
wenzelm
parents: 55626
diff changeset
   314
          range, (Protocol.Status.init, 0), Protocol.status_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   315
          {
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   316
            case ((status, pri), Text.Info(_, elem)) =>
55646
ec4651c697e3 tuned signature;
wenzelm
parents: 55626
diff changeset
   317
              if (Protocol.command_status_elements(elem.name))
55623
wenzelm
parents: 55622
diff changeset
   318
                Some((Protocol.command_status(status, elem.markup), pri))
wenzelm
parents: 55622
diff changeset
   319
              else
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   320
                Some((status, pri max Rendering.message_pri(elem.name)))
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   321
          }, status = true)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   322
      if (results.isEmpty) None
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   323
      else {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   324
        val (status, pri) =
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   325
          ((Protocol.Status.init, 0) /: results) {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   326
            case ((s1, p1), Text.Info(_, (s2, p2))) => (s1 + s2, p1 max p2) }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   327
50895
3a1edaa0dc6d more prominent status ticks;
wenzelm
parents: 50715
diff changeset
   328
        if (status.is_running) Some(running_color)
3a1edaa0dc6d more prominent status ticks;
wenzelm
parents: 50715
diff changeset
   329
        else if (pri == Rendering.warning_pri) Some(warning_color)
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   330
        else if (pri == Rendering.error_pri) Some(error_color)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   331
        else if (status.is_unprocessed) Some(unprocessed_color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   332
        else if (status.is_failed) Some(error_color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   333
        else None
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   334
      }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   335
    }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   336
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   337
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   338
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   339
  /* highlighted area */
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   340
49358
0fa351b1bd14 clarified markup names;
wenzelm
parents: 49356
diff changeset
   341
  def highlight(range: Text.Range): Option[Text.Info[Color]] =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   342
    snapshot.select(range, Rendering.highlight_elements, _ =>
55620
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   343
      {
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   344
        case info => Some(Text.Info(snapshot.convert(info.range), highlight_color))
55689
wenzelm
parents: 55688
diff changeset
   345
      }).headOption.map(_.info)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   346
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   347
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   348
  /* hyperlinks */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   349
55545
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   350
  private def hyperlink_file(line: Int, name: String): Option[PIDE.editor.Hyperlink] =
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   351
    if (Path.is_ok(name))
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   352
      Isabelle_System.source_file(Path.explode(name)).map(path =>
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   353
        PIDE.editor.hyperlink_file(Isabelle_System.platform_path(path), line))
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   354
    else None
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   355
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   356
  private def hyperlink_command(id: Document_ID.Generic, offset: Text.Offset)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   357
      : Option[PIDE.editor.Hyperlink] =
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   358
    snapshot.state.find_command(snapshot.version, id) match {
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   359
      case Some((node, command)) =>
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   360
        PIDE.editor.hyperlink_command(snapshot, command, offset)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   361
      case None => None
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   362
    }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   363
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52900
diff changeset
   364
  def hyperlink(range: Text.Range): Option[Text.Info[PIDE.editor.Hyperlink]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   365
  {
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   366
    snapshot.cumulate[Vector[Text.Info[PIDE.editor.Hyperlink]]](
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   367
      range, Vector.empty, Rendering.hyperlink_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   368
        {
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   369
          case (links, Text.Info(info_range, XML.Elem(Markup.Path(name), _)))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   370
          if Path.is_ok(name) =>
54515
570ba266f5b5 clarified boundary cases of Document.Node.Name;
wenzelm
parents: 53571
diff changeset
   371
            val jedit_file = PIDE.thy_load.append(snapshot.node_name.master_dir, Path.explode(name))
52980
28f59ca8ce78 manage hyperlinks via PIDE editor interface;
wenzelm
parents: 52900
diff changeset
   372
            val link = PIDE.editor.hyperlink_file(jedit_file)
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   373
            Some(links :+ Text.Info(snapshot.convert(info_range), link))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   374
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 54515
diff changeset
   375
          case (links, Text.Info(info_range, XML.Elem(Markup.Url(name), _))) =>
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 54515
diff changeset
   376
            val link = PIDE.editor.hyperlink_url(name)
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   377
            Some(links :+ Text.Info(snapshot.convert(info_range), link))
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 54515
diff changeset
   378
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   379
          case (links, Text.Info(info_range, XML.Elem(Markup(Markup.ENTITY, props), _)))
49815
wenzelm
parents: 49727
diff changeset
   380
          if !props.exists(
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   381
            { case (Markup.KIND, Markup.ML_OPEN) => true
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   382
              case (Markup.KIND, Markup.ML_STRUCT) => true
49815
wenzelm
parents: 49727
diff changeset
   383
              case _ => false }) =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   384
55545
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   385
            val opt_link =
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   386
              props match {
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   387
                case Position.Def_Line_File(line, name) => hyperlink_file(line, name)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   388
                case Position.Def_Id_Offset(id, offset) => hyperlink_command(id, offset)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   389
                case _ => None
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   390
              }
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   391
            opt_link.map(link => (links :+ Text.Info(snapshot.convert(info_range), link)))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   392
55545
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   393
          case (links, Text.Info(info_range, XML.Elem(Markup(Markup.POSITION, props), _))) =>
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   394
            val opt_link =
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   395
              props match {
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   396
                case Position.Line_File(line, name) => hyperlink_file(line, name)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   397
                case Position.Id_Offset(id, offset) => hyperlink_command(id, offset)
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   398
                case _ => None
4a9f76263ece hyperlink for visible positions;
wenzelm
parents: 55526
diff changeset
   399
              }
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   400
            opt_link.map(link => links :+ (Text.Info(snapshot.convert(info_range), link)))
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   401
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   402
          case _ => None
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   403
        }) match { case Text.Info(_, _ :+ info) :: _ => Some(info) case _ => None }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   404
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   405
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   406
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   407
  /* active elements */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   408
50450
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50215
diff changeset
   409
  def active(range: Text.Range): Option[Text.Info[XML.Elem]] =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   410
    snapshot.select(range, Rendering.active_elements, command_state =>
55620
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   411
      {
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   412
        case Text.Info(info_range, elem) =>
55623
wenzelm
parents: 55622
diff changeset
   413
          if (elem.name == Markup.DIALOG) {
wenzelm
parents: 55622
diff changeset
   414
            elem match {
wenzelm
parents: 55622
diff changeset
   415
              case Protocol.Dialog(_, serial, _)
wenzelm
parents: 55622
diff changeset
   416
              if !command_state.results.defined(serial) =>
wenzelm
parents: 55622
diff changeset
   417
                Some(Text.Info(snapshot.convert(info_range), elem))
wenzelm
parents: 55622
diff changeset
   418
              case _ => None
wenzelm
parents: 55622
diff changeset
   419
            }
wenzelm
parents: 55622
diff changeset
   420
          }
wenzelm
parents: 55622
diff changeset
   421
          else Some(Text.Info(snapshot.convert(info_range), elem))
55689
wenzelm
parents: 55688
diff changeset
   422
      }).headOption.map(_.info)
49492
2e3e7ea5ce8e some support for hovering and sendback area;
wenzelm
parents: 49476
diff changeset
   423
50502
51408dde956f include command results in tooltip as well;
wenzelm
parents: 50501
diff changeset
   424
  def command_results(range: Text.Range): Command.Results =
51408dde956f include command results in tooltip as well;
wenzelm
parents: 50501
diff changeset
   425
  {
51408dde956f include command results in tooltip as well;
wenzelm
parents: 50501
diff changeset
   426
    val results =
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   427
      snapshot.select[Command.Results](range, Document.Elements.full, command_state =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   428
        { case _ => Some(command_state.results) }).map(_.info)
50507
9605b0d93d1e more formal class Command.Results;
wenzelm
parents: 50502
diff changeset
   429
    (Command.Results.empty /: results)(_ ++ _)
50502
51408dde956f include command results in tooltip as well;
wenzelm
parents: 50501
diff changeset
   430
  }
51408dde956f include command results in tooltip as well;
wenzelm
parents: 50501
diff changeset
   431
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   432
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   433
  /* tooltip messages */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   434
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   435
  def tooltip_message(range: Text.Range): Option[Text.Info[XML.Body]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   436
  {
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   437
    val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   438
      snapshot.cumulate[List[Text.Info[Command.Results.Entry]]](
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   439
        range, Nil, Rendering.tooltip_message_elements, _ =>
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   440
        {
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   441
          case (msgs, Text.Info(info_range,
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   442
            XML.Elem(Markup(name, props @ Markup.Serial(serial)), body)))
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   443
          if name == Markup.WRITELN || name == Markup.WARNING || name == Markup.ERROR =>
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   444
            val entry: Command.Results.Entry =
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   445
              (serial -> XML.Elem(Markup(Markup.message(name), props), body))
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   446
            Some(Text.Info(snapshot.convert(info_range), entry) :: msgs)
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   447
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   448
          case (msgs, Text.Info(info_range, msg @ XML.Elem(Markup(Markup.BAD, _), body)))
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   449
          if !body.isEmpty =>
52530
99dd8b4ef3fe explicit module Document_ID as source of globally unique identifiers across ML/Scala;
wenzelm
parents: 52472
diff changeset
   450
            val entry: Command.Results.Entry = (Document_ID.make(), msg)
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   451
            Some(Text.Info(snapshot.convert(info_range), entry) :: msgs)
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   452
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   453
          case _ => None
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   454
        }).flatMap(_.info)
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   455
    if (results.isEmpty) None
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   456
    else {
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   457
      val r = Text.Range(results.head.range.start, results.last.range.stop)
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   458
      val msgs = Command.Results.make(results.map(_.info))
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   459
      Some(Text.Info(r, Pretty.separate(msgs.entries.map(_._2).toList)))
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   460
    }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   461
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   462
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   463
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   464
  /* tooltips */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   465
49700
2d1cbdf6a68b Rich_Text_Area tooltips via nested Pretty_Text_Area, based on some techniques of FoldViewer plugin;
wenzelm
parents: 49674
diff changeset
   466
  private def pretty_typing(kind: String, body: XML.Body): XML.Tree =
2d1cbdf6a68b Rich_Text_Area tooltips via nested Pretty_Text_Area, based on some techniques of FoldViewer plugin;
wenzelm
parents: 49674
diff changeset
   467
    Pretty.block(XML.Text(kind) :: Pretty.Break(1) :: body)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   468
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   469
  private def timing_threshold: Double = options.real("jedit_timing_threshold")
51588
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   470
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   471
  def tooltip(range: Text.Range): Option[Text.Info[XML.Body]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   472
  {
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   473
    def add(prev: Text.Info[(Timing, Vector[(Boolean, XML.Tree)])],
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   474
      r0: Text.Range, p: (Boolean, XML.Tree)): Text.Info[(Timing, Vector[(Boolean, XML.Tree)])] =
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   475
    {
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   476
      val r = snapshot.convert(r0)
51588
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   477
      val (t, info) = prev.info
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   478
      if (prev.range == r)
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   479
        Text.Info(r, (t, info :+ p))
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   480
      else Text.Info(r, (t, Vector(p)))
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   481
    }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   482
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   483
    val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   484
      snapshot.cumulate[Text.Info[(Timing, Vector[(Boolean, XML.Tree)])]](
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   485
        range, Text.Info(range, (Timing.zero, Vector.empty)), Rendering.tooltip_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   486
        {
51588
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   487
          case (Text.Info(r, (t1, info)), Text.Info(_, XML.Elem(Markup.Timing(t2), _))) =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   488
            Some(Text.Info(r, (t1 + t2, info)))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   489
          case (prev, Text.Info(r, XML.Elem(Markup.Entity(kind, name), _))) =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   490
            val kind1 = space_explode('_', kind).mkString(" ")
51588
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   491
            val txt1 = kind1 + " " + quote(name)
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   492
            val t = prev.info._1
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   493
            val txt2 =
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   494
              if (kind == Markup.COMMAND && t.elapsed.seconds >= timing_threshold)
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   495
                "\n" + t.message
167e2d64327a tooltip of command keyword includes timing information;
wenzelm
parents: 51574
diff changeset
   496
              else ""
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   497
            Some(add(prev, r, (true, XML.Text(txt1 + txt2))))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   498
          case (prev, Text.Info(r, XML.Elem(Markup.Path(name), _)))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   499
          if Path.is_ok(name) =>
54515
570ba266f5b5 clarified boundary cases of Document.Node.Name;
wenzelm
parents: 53571
diff changeset
   500
            val jedit_file = PIDE.thy_load.append(snapshot.node_name.master_dir, Path.explode(name))
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   501
            Some(add(prev, r, (true, XML.Text("file " + quote(jedit_file)))))
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 54515
diff changeset
   502
          case (prev, Text.Info(r, XML.Elem(Markup.Url(name), _))) =>
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 54515
diff changeset
   503
            Some(add(prev, r, (true, XML.Text("URL " + quote(name)))))
49674
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 49554
diff changeset
   504
          case (prev, Text.Info(r, XML.Elem(Markup(name, _), body)))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   505
          if name == Markup.SORTING || name == Markup.TYPING =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   506
            Some(add(prev, r, (true, pretty_typing("::", body))))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   507
          case (prev, Text.Info(r, XML.Elem(Markup(Markup.ML_TYPING, _), body))) =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   508
            Some(add(prev, r, (false, pretty_typing("ML:", body))))
55666
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55651
diff changeset
   509
          case (prev, Text.Info(r, XML.Elem(Markup.Language(language, _, _), _))) =>
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55550
diff changeset
   510
            Some(add(prev, r, (true, XML.Text("language: " + language))))
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   511
          case (prev, Text.Info(r, XML.Elem(Markup(name, _), _))) =>
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   512
            Rendering.tooltip_descriptions.get(name).
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   513
              map(descr => add(prev, r, (true, XML.Text(descr))))
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   514
        }).map(_.info)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   515
55622
ce575c2212fc clarified markup cumulation order (see also 25306d92f4ad and 0009a6ebc83b), e.g. relevant for completion_context;
wenzelm
parents: 55620
diff changeset
   516
    results.map(_.info).flatMap(res => res._2.toList) match {
51496
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   517
      case Nil => None
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   518
      case tips =>
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   519
        val r = Text.Range(results.head.range.start, results.last.range.stop)
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   520
        val all_tips = (tips.filter(_._1) ++ tips.filter(!_._1).lastOption.toList).map(_._2)
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   521
        Some(Text.Info(r, Library.separate(Pretty.FBreak, all_tips)))
cb677987b7e3 retain original tooltip range, to avoid repeated window popup when the mouse is moved over the same content;
wenzelm
parents: 50895
diff changeset
   522
    }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   523
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   524
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   525
  def tooltip_margin: Int = options.int("jedit_tooltip_margin")
50554
0493efcc97e9 more general handling of graphics configurations, to increase chance of proper positioning of tooltips in multi-screen environment;
wenzelm
parents: 50547
diff changeset
   526
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   527
  lazy val tooltip_close_icon = JEdit_Lib.load_icon(options.string("tooltip_close_icon"))
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   528
  lazy val tooltip_detach_icon = JEdit_Lib.load_icon(options.string("tooltip_detach_icon"))
52472
3a43a8b1ecb0 load icons via options -- prefer IntelliJ IDEA for now;
wenzelm
parents: 52471
diff changeset
   529
3a43a8b1ecb0 load icons via options -- prefer IntelliJ IDEA for now;
wenzelm
parents: 52471
diff changeset
   530
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   531
  /* gutter icons */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   532
52472
3a43a8b1ecb0 load icons via options -- prefer IntelliJ IDEA for now;
wenzelm
parents: 52471
diff changeset
   533
  private lazy val gutter_icons = Map(
52873
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   534
    Rendering.information_pri -> JEdit_Lib.load_icon(options.string("gutter_information_icon")),
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   535
    Rendering.warning_pri -> JEdit_Lib.load_icon(options.string("gutter_warning_icon")),
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   536
    Rendering.legacy_pri -> JEdit_Lib.load_icon(options.string("gutter_legacy_icon")),
9e934d4fff00 tuned signature;
wenzelm
parents: 52650
diff changeset
   537
    Rendering.error_pri -> JEdit_Lib.load_icon(options.string("gutter_error_icon")))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   538
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   539
  def gutter_message(range: Text.Range): Option[Icon] =
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   540
  {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   541
    val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   542
      snapshot.cumulate[Int](range, 0, Rendering.gutter_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   543
        {
52644
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
   544
          case (pri, Text.Info(_, XML.Elem(Markup(Markup.WRITELN, _),
cea207576f81 gutter icon for information messages;
wenzelm
parents: 52643
diff changeset
   545
              List(XML.Elem(Markup(Markup.INFORMATION, _), _))))) =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   546
            Some(pri max Rendering.information_pri)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   547
          case (pri, Text.Info(_, XML.Elem(Markup(Markup.WARNING, _), body))) =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   548
            body match {
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   549
              case List(XML.Elem(Markup(Markup.LEGACY, _), _)) =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   550
                Some(pri max Rendering.legacy_pri)
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   551
              case _ =>
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   552
                Some(pri max Rendering.warning_pri)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   553
            }
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   554
          case (pri, Text.Info(_, XML.Elem(Markup(Markup.ERROR, _), _))) =>
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   555
            Some(pri max Rendering.error_pri)
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   556
          case _ => None
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   557
        })
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   558
    val pri = (0 /: results) { case (p1, Text.Info(_, p2)) => p1 max p2 }
52472
3a43a8b1ecb0 load icons via options -- prefer IntelliJ IDEA for now;
wenzelm
parents: 52471
diff changeset
   559
    gutter_icons.get(pri)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   560
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   561
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   562
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   563
  /* squiggly underline */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   564
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   565
  private lazy val squiggly_colors = Map(
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   566
    Rendering.writeln_pri -> writeln_color,
52650
4cf6fbf1d9a1 more rendering for information messages;
wenzelm
parents: 52644
diff changeset
   567
    Rendering.information_pri -> information_color,
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   568
    Rendering.warning_pri -> warning_color,
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   569
    Rendering.error_pri -> error_color)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   570
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   571
  def squiggly_underline(range: Text.Range): List[Text.Info[Color]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   572
  {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   573
    val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   574
      snapshot.cumulate[Int](range, 0, Rendering.squiggly_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   575
        {
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   576
          case (pri, Text.Info(_, elem)) =>
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   577
            if (Protocol.is_information(elem))
52889
ea3338812e67 more tight interface for markup cumulate/select: avoid duplicate application, allow to defer decision about definedness;
wenzelm
parents: 52873
diff changeset
   578
              Some(pri max Rendering.information_pri)
55620
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   579
            else
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   580
              Some(pri max Rendering.message_pri(elem.name))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   581
        })
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   582
    for {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   583
      Text.Info(r, pri) <- results
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   584
      color <- squiggly_colors.get(pri)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   585
    } yield Text.Info(r, color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   586
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   587
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   588
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   589
  /* message output */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   590
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   591
  private lazy val message_colors = Map(
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   592
    Rendering.writeln_pri -> writeln_message_color,
52650
4cf6fbf1d9a1 more rendering for information messages;
wenzelm
parents: 52644
diff changeset
   593
    Rendering.information_pri -> information_message_color,
50199
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   594
    Rendering.tracing_pri -> tracing_message_color,
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   595
    Rendering.warning_pri -> warning_message_color,
6d04e2422769 quasi-abstract module Rendering, with Isabelle-specific implementation;
wenzelm
parents: 50196
diff changeset
   596
    Rendering.error_pri -> error_message_color)
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   597
49473
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   598
  def line_background(range: Text.Range): Option[(Color, Boolean)] =
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   599
  {
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   600
    val results =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   601
      snapshot.cumulate[Int](range, 0, Rendering.line_background_elements, _ =>
49473
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   602
        {
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   603
          case (pri, Text.Info(_, elem)) =>
55623
wenzelm
parents: 55622
diff changeset
   604
            if (elem.name == Markup.INFORMATION)
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   605
              Some(pri max Rendering.information_pri)
55623
wenzelm
parents: 55622
diff changeset
   606
            else
wenzelm
parents: 55622
diff changeset
   607
              Some(pri max Rendering.message_pri(elem.name))
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   608
        })
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   609
    val pri = (0 /: results) { case (p1, Text.Info(_, p2)) => p1 max p2 }
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   610
55623
wenzelm
parents: 55622
diff changeset
   611
    val is_separator =
wenzelm
parents: 55622
diff changeset
   612
      pri > 0 &&
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   613
      snapshot.cumulate[Boolean](range, false, Rendering.separator_elements, _ =>
49473
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   614
        {
55623
wenzelm
parents: 55622
diff changeset
   615
          case _ => Some(true)
49473
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   616
        }).exists(_.info)
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   617
49474
e7ff10e1a155 clarified message background;
wenzelm
parents: 49473
diff changeset
   618
    message_colors.get(pri).map((_, is_separator))
49473
ca7e2c21b104 tuned rendering;
wenzelm
parents: 49423
diff changeset
   619
  }
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   620
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   621
  def output_messages(st: Command.State): List[XML.Tree] =
50507
9605b0d93d1e more formal class Command.Results;
wenzelm
parents: 50502
diff changeset
   622
    st.results.entries.map(_._2).filterNot(Protocol.is_result(_)).toList
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   623
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   624
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   625
  /* text background */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   626
55790
4670f18baba5 simplified rendering -- no need to over-emphasize "token_range";
wenzelm
parents: 55765
diff changeset
   627
  def background(range: Text.Range): List[Text.Info[Color]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   628
  {
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   629
    if (snapshot.is_outdated) List(Text.Info(range, outdated_color))
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   630
    else
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   631
      for {
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   632
        Text.Info(r, result) <-
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   633
          snapshot.cumulate[(Option[Protocol.Status], Option[Color])](
55790
4670f18baba5 simplified rendering -- no need to over-emphasize "token_range";
wenzelm
parents: 55765
diff changeset
   634
            range, (Some(Protocol.Status.init), None), Rendering.background_elements,
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   635
            command_state =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   636
              {
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   637
                case (((Some(status), color), Text.Info(_, XML.Elem(markup, _))))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   638
                if (Protocol.command_status_elements(markup.name)) =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   639
                  Some((Some(Protocol.command_status(status, markup)), color))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   640
                case (_, Text.Info(_, XML.Elem(Markup(Markup.BAD, _), _))) =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   641
                  Some((None, Some(bad_color)))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   642
                case (_, Text.Info(_, XML.Elem(Markup(Markup.INTENSIFY, _), _))) =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   643
                  Some((None, Some(intensify_color)))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   644
                case (acc, Text.Info(_, Protocol.Dialog(_, serial, result))) =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   645
                  command_state.results.get(serial) match {
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   646
                    case Some(Protocol.Dialog_Result(res)) if res == result =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   647
                      Some((None, Some(active_result_color)))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   648
                    case _ =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   649
                      Some((None, Some(active_color)))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   650
                  }
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   651
                case (_, Text.Info(_, elem)) =>
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   652
                  if (Rendering.active_elements(elem.name)) Some((None, Some(active_color)))
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   653
                  else None
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   654
              })
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   655
        color <-
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   656
          (result match {
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   657
            case (Some(status), opt_color) =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   658
              if (status.is_unprocessed) Some(unprocessed1_color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   659
              else if (status.is_running) Some(running1_color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   660
              else opt_color
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   661
            case (_, opt_color) => opt_color
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   662
          })
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   663
      } yield Text.Info(r, color)
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   664
  }
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   665
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   666
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   667
  /* text foreground */
51574
2b58d7b139d6 ghost bullet via markup, which is painted as bar under text (normally space);
wenzelm
parents: 51496
diff changeset
   668
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   669
  def foreground(range: Text.Range): List[Text.Info[Color]] =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   670
    snapshot.select(range, Rendering.foreground_elements, _ =>
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   671
      {
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   672
        case Text.Info(_, elem) =>
55620
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   673
          if (elem.name == Markup.ANTIQUOTED) Some(antiquoted_color) else Some(quoted_color)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   674
      })
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   675
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   676
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   677
  /* text color */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   678
55647
106a57dec7af more lightweight Rendering;
wenzelm
parents: 55646
diff changeset
   679
  private lazy val text_colors: Map[String, Color] = Map(
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   680
      Markup.KEYWORD1 -> keyword1_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   681
      Markup.KEYWORD2 -> keyword2_color,
55765
ec7ca5388dea markup for method combinators;
wenzelm
parents: 55749
diff changeset
   682
      Markup.KEYWORD3 -> keyword3_color,
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   683
      Markup.STRING -> Color.BLACK,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   684
      Markup.ALTSTRING -> Color.BLACK,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   685
      Markup.VERBATIM -> Color.BLACK,
55514
8ef781e282d9 more uniform rendering of text that is formally interpreted: avoid clash with inner markup;
wenzelm
parents: 55512
diff changeset
   686
      Markup.CARTOUCHE -> Color.BLACK,
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   687
      Markup.LITERAL -> keyword1_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   688
      Markup.DELIMITER -> Color.BLACK,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   689
      Markup.TFREE -> tfree_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   690
      Markup.TVAR -> tvar_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   691
      Markup.FREE -> free_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   692
      Markup.SKOLEM -> skolem_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   693
      Markup.BOUND -> bound_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   694
      Markup.VAR -> var_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   695
      Markup.INNER_STRING -> inner_quoted_color,
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   696
      Markup.INNER_CARTOUCHE -> inner_cartouche_color,
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   697
      Markup.INNER_COMMENT -> inner_comment_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   698
      Markup.DYNAMIC_FACT -> dynamic_color,
55526
39708e59f4b0 more markup;
wenzelm
parents: 55514
diff changeset
   699
      Markup.ANTIQUOTE -> antiquote_color,
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   700
      Markup.ML_KEYWORD1 -> keyword1_color,
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   701
      Markup.ML_KEYWORD2 -> keyword2_color,
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55503
diff changeset
   702
      Markup.ML_KEYWORD3 -> keyword3_color,
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   703
      Markup.ML_DELIMITER -> Color.BLACK,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   704
      Markup.ML_NUMERAL -> inner_numeral_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   705
      Markup.ML_CHAR -> inner_quoted_color,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 50200
diff changeset
   706
      Markup.ML_STRING -> inner_quoted_color,
52101
7679178b0aa5 less intrusive rendering of antiquoted text -- avoid visual clash with "blue variables" in particular;
wenzelm
parents: 52081
diff changeset
   707
      Markup.ML_COMMENT -> inner_comment_color)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   708
55820
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   709
  private lazy val text_color_elements =
61869776ce1f tuned signature -- more explicit Document.Elements;
wenzelm
parents: 55790
diff changeset
   710
    Document.Elements(text_colors.keySet)
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   711
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   712
  def text_color(range: Text.Range, color: Color): List[Text.Info[Color]] =
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   713
  {
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   714
    if (color == Token_Markup.hidden_color) List(Text.Info(range, color))
50196
94886ebf090f retain hidden_color (i.e. transparent white) instead of replacing it by semantic text color, to make control symbols more hidden and avoid "dirty" lines with some fonts;
wenzelm
parents: 50164
diff changeset
   715
    else
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   716
      snapshot.cumulate(range, color, text_color_elements, _ =>
50196
94886ebf090f retain hidden_color (i.e. transparent white) instead of replacing it by semantic text color, to make control symbols more hidden and avoid "dirty" lines with some fonts;
wenzelm
parents: 50164
diff changeset
   717
        {
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 52889
diff changeset
   718
          case (_, Text.Info(_, elem)) => text_colors.get(elem.name)
50196
94886ebf090f retain hidden_color (i.e. transparent white) instead of replacing it by semantic text color, to make control symbols more hidden and avoid "dirty" lines with some fonts;
wenzelm
parents: 50164
diff changeset
   719
        })
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   720
  }
50542
58bd88159f8f fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents: 50507
diff changeset
   721
58bd88159f8f fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents: 50507
diff changeset
   722
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   723
  /* virtual bullets */
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   724
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   725
  def bullet(range: Text.Range): List[Text.Info[Color]] =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   726
    snapshot.select(range, Rendering.bullet_elements, _ => _ => Some(bullet_color))
55626
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   727
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   728
0e2b7f04c944 tuned comments;
wenzelm
parents: 55625
diff changeset
   729
  /* text folds */
50542
58bd88159f8f fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents: 50507
diff changeset
   730
52900
d29bf6db8a2d more elementary list structures for markup tree traversal;
wenzelm
parents: 52890
diff changeset
   731
  def fold_depth(range: Text.Range): List[Text.Info[Int]] =
55651
fa42cf3fe79b tuned signature -- avoid redundancy and confusion of flags;
wenzelm
parents: 55649
diff changeset
   732
    snapshot.cumulate[Int](range, 0, Rendering.fold_depth_elements, _ =>
50542
58bd88159f8f fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents: 50507
diff changeset
   733
      {
55620
19dffae33cde cumulate/select wrt. precise elements guard;
wenzelm
parents: 55619
diff changeset
   734
        case (depth, _) => Some(depth + 1)
50542
58bd88159f8f fold handling within Pretty_Text_Area, based on formal document content, which is static here;
wenzelm
parents: 50507
diff changeset
   735
      })
49356
6e0c0ffb6ec7 more static handling of rendering options;
wenzelm
parents: 49355
diff changeset
   736
}