author | blanchet |
Thu, 20 Nov 2014 17:29:18 +0100 | |
changeset 59018 | ec8ea2465d2a |
parent 58767 | 30766b5fd0e1 |
child 64621 | 7116f2634e32 |
permissions | -rw-r--r-- |
49702 | 1 |
/* Title: Tools/jEdit/src/pretty_tooltip.scala |
2 |
Author: Makarius |
|
3 |
||
53247
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
4 |
Tooltip based on Pretty_Text_Area. |
49702 | 5 |
*/ |
6 |
||
7 |
package isabelle.jedit |
|
8 |
||
9 |
||
10 |
import isabelle._ |
|
11 |
||
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
12 |
import java.awt.{Color, Point, BorderLayout, Dimension} |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
13 |
import java.awt.event.{FocusAdapter, FocusEvent} |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
14 |
import javax.swing.{JPanel, JComponent, SwingUtilities, JLayeredPane} |
49702 | 15 |
import javax.swing.border.LineBorder |
16 |
||
49725 | 17 |
import scala.swing.{FlowPanel, Label} |
18 |
import scala.swing.event.MouseClicked |
|
19 |
||
49702 | 20 |
import org.gjt.sp.jedit.View |
21 |
import org.gjt.sp.jedit.textarea.TextArea |
|
22 |
||
23 |
||
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
24 |
object Pretty_Tooltip |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
25 |
{ |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
26 |
/* tooltip hierarchy */ |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
27 |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
28 |
// owned by GUI thread |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
29 |
private var stack: List[Pretty_Tooltip] = Nil |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
30 |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
31 |
private def hierarchy(tip: Pretty_Tooltip): Option[(List[Pretty_Tooltip], List[Pretty_Tooltip])] = |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
32 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
33 |
GUI_Thread.require {} |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
34 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
35 |
if (stack.contains(tip)) Some(stack.span(_ != tip)) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
36 |
else None |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
37 |
} |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
38 |
|
56497
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
39 |
private def descendant(parent: JComponent): Option[Pretty_Tooltip] = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
40 |
GUI_Thread.require { stack.find(tip => tip.original_parent == parent) } |
56497
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
41 |
|
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
42 |
def apply( |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
43 |
view: View, |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
44 |
parent: JComponent, |
53247
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
45 |
location: Point, |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
46 |
rendering: Rendering, |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
47 |
results: Command.Results, |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
48 |
info: Text.Info[XML.Body]) |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
49 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
50 |
GUI_Thread.require {} |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
51 |
|
52497 | 52 |
stack match { |
53779 | 53 |
case top :: _ if top.results == results && top.info == info => |
52497 | 54 |
case _ => |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
55 |
GUI.layered_pane(parent) match { |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
56 |
case None => |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
57 |
case Some(layered) => |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
58 |
val (old, rest) = |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
59 |
GUI.ancestors(parent).collectFirst({ case x: Pretty_Tooltip => x }) match { |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
60 |
case Some(tip) => hierarchy(tip).getOrElse((stack, Nil)) |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
61 |
case None => (stack, Nil) |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
62 |
} |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
63 |
old.foreach(_.hide_popup) |
52497 | 64 |
|
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
65 |
val loc = SwingUtilities.convertPoint(parent, location, layered) |
56497
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
66 |
val tip = new Pretty_Tooltip(view, layered, parent, loc, rendering, results, info) |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
67 |
stack = tip :: rest |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
68 |
tip.show_popup |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
69 |
} |
52496
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
70 |
} |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
71 |
} |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
72 |
|
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
73 |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
74 |
/* pending event and active state */ // owned by GUI thread |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
75 |
|
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
76 |
private var pending: Option[() => Unit] = None |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
77 |
private var active = true |
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
78 |
|
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
79 |
private val pending_delay = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
80 |
GUI_Thread.delay_last(PIDE.options.seconds("jedit_tooltip_delay")) { |
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
81 |
pending match { |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
82 |
case Some(body) => pending = None; body() |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
83 |
case None => |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
84 |
} |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
85 |
} |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
86 |
|
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
87 |
def invoke(body: () => Unit): Unit = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
88 |
GUI_Thread.require { |
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
89 |
if (active) { |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
90 |
pending = Some(body) |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
91 |
pending_delay.invoke() |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
92 |
} |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
93 |
} |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
94 |
|
52664
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
95 |
def revoke(): Unit = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
96 |
GUI_Thread.require { |
52664
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
97 |
pending = None |
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
98 |
pending_delay.revoke() |
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
99 |
} |
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
100 |
|
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
101 |
private lazy val reactivate_delay = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
102 |
GUI_Thread.delay_last(PIDE.options.seconds("jedit_tooltip_delay")) { |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
103 |
active = true |
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
104 |
} |
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
105 |
|
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
106 |
private def deactivate(): Unit = |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
107 |
GUI_Thread.require { |
52664
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
108 |
revoke() |
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
109 |
active = false |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
110 |
reactivate_delay.invoke() |
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
111 |
} |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
112 |
|
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
113 |
|
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
114 |
/* dismiss */ |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
115 |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
116 |
private lazy val focus_delay = GUI_Thread.delay_last(PIDE.options.seconds("editor_input_delay")) |
56341
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
117 |
{ |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
118 |
dismiss_unfocused() |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
119 |
} |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
120 |
|
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
121 |
def dismiss_unfocused() |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
122 |
{ |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
123 |
stack.span(tip => !tip.pretty_text_area.isFocusOwner) match { |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
124 |
case (Nil, _) => |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
125 |
case (unfocused, rest) => |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
126 |
deactivate() |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
127 |
unfocused.foreach(_.hide_popup) |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
128 |
stack = rest |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
129 |
} |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
130 |
} |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
131 |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
132 |
def dismiss(tip: Pretty_Tooltip) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
133 |
{ |
52494
a1e09340c0f4
clarified tooltip timing of pending event and active state;
wenzelm
parents:
52493
diff
changeset
|
134 |
deactivate() |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
135 |
hierarchy(tip) match { |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
136 |
case Some((old, _ :: rest)) => |
52498 | 137 |
rest match { |
138 |
case top :: _ => top.request_focus |
|
56930 | 139 |
case Nil => JEdit_Lib.request_focus_view() |
52498 | 140 |
} |
54376
3eb84b6b0353
transfer focus before closing old component -- avoid intermediate focus switch to root component, which is actually visible e.g. on Windows;
wenzelm
parents:
53779
diff
changeset
|
141 |
old.foreach(_.hide_popup) |
3eb84b6b0353
transfer focus before closing old component -- avoid intermediate focus switch to root component, which is actually visible e.g. on Windows;
wenzelm
parents:
53779
diff
changeset
|
142 |
tip.hide_popup |
3eb84b6b0353
transfer focus before closing old component -- avoid intermediate focus switch to root component, which is actually visible e.g. on Windows;
wenzelm
parents:
53779
diff
changeset
|
143 |
stack = rest |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
144 |
case _ => |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
145 |
} |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
146 |
} |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
147 |
|
56497
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
148 |
def dismiss_descendant(parent: JComponent): Unit = |
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
149 |
descendant(parent).foreach(dismiss(_)) |
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
150 |
|
52548
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
151 |
def dismissed_all(): Boolean = |
52664
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
152 |
{ |
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
153 |
deactivate() |
52548
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
154 |
if (stack.isEmpty) false |
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
155 |
else { |
56930 | 156 |
JEdit_Lib.request_focus_view() |
52548
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
157 |
stack.foreach(_.hide_popup) |
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
158 |
stack = Nil |
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
159 |
true |
a1a8248a4677
some attempts to avoid sandwiching of actions stemming from single ESCAPE key event, to avoid potential conflict with ongoing text selection;
wenzelm
parents:
52498
diff
changeset
|
160 |
} |
52664
e99a0a43720b
deactivate/revoke mouse event more thoroughly, to avoid "Implicit change of text area buffer";
wenzelm
parents:
52548
diff
changeset
|
161 |
} |
51449
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
162 |
} |
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
163 |
|
8d6e478934dc
explicit handling of tooltip window stack -- avoid memory leak due to not-so-weak references to disposed windows (via event handlers and other aux. components);
wenzelm
parents:
51440
diff
changeset
|
164 |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
165 |
class Pretty_Tooltip private( |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
166 |
view: View, |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53712
diff
changeset
|
167 |
layered: JLayeredPane, |
56497
0c63f3538639
dismiss popups more carefully (amending 7e8c11011fdf), notably allow mouse dragging within some tooltip, e.g. for text selection;
wenzelm
parents:
56341
diff
changeset
|
168 |
val original_parent: JComponent, |
53247
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
169 |
location: Point, |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
170 |
rendering: Rendering, |
52496
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
171 |
private val results: Command.Results, |
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
172 |
private val info: Text.Info[XML.Body]) extends JPanel(new BorderLayout) |
49702 | 173 |
{ |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
174 |
tip => |
49705 | 175 |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
56930
diff
changeset
|
176 |
GUI_Thread.require {} |
49725 | 177 |
|
178 |
||
179 |
/* controls */ |
|
180 |
||
49727 | 181 |
private val close = new Label { |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
182 |
icon = rendering.tooltip_close_icon |
49727 | 183 |
tooltip = "Close tooltip window" |
184 |
listenTo(mouse.clicks) |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
185 |
reactions += { case _: MouseClicked => Pretty_Tooltip.dismiss(tip) } |
49727 | 186 |
} |
187 |
||
49726 | 188 |
private val detach = new Label { |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
189 |
icon = rendering.tooltip_detach_icon |
49726 | 190 |
tooltip = "Detach tooltip window" |
191 |
listenTo(mouse.clicks) |
|
192 |
reactions += { |
|
50501
6f41f1646617
more careful handling of Dialog_Result, with active area and color feedback;
wenzelm
parents:
50206
diff
changeset
|
193 |
case _: MouseClicked => |
52496
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
194 |
Info_Dockable(view, rendering.snapshot, results, info.info) |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
195 |
Pretty_Tooltip.dismiss(tip) |
49726 | 196 |
} |
197 |
} |
|
198 |
||
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
199 |
private val controls = new FlowPanel(FlowPanel.Alignment.Left)(close, detach) { |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
200 |
background = rendering.tooltip_color |
49709 | 201 |
} |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
202 |
|
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
203 |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
204 |
/* text area */ |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
205 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
206 |
val pretty_text_area = |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
207 |
new Pretty_Text_Area(view, () => Pretty_Tooltip.dismiss(tip), true) { |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
208 |
override def get_background() = Some(rendering.tooltip_color) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
209 |
} |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
210 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
211 |
pretty_text_area.addFocusListener(new FocusAdapter { |
52491
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
212 |
override def focusGained(e: FocusEvent) |
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
213 |
{ |
52493 | 214 |
tip_border(true) |
56341
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
215 |
Pretty_Tooltip.focus_delay.invoke() |
52491
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
216 |
} |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
217 |
override def focusLost(e: FocusEvent) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
218 |
{ |
56341
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
219 |
tip_border(false) |
bfd13102eb54
observe focus change for all tooltips, e.g. relevant for focus change to unrelated components;
wenzelm
parents:
55825
diff
changeset
|
220 |
Pretty_Tooltip.focus_delay.invoke() |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
221 |
} |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
222 |
}) |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
223 |
|
55825 | 224 |
pretty_text_area.resize(Font_Info.main(PIDE.options.real("jedit_popup_font_scale"))) |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
225 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
226 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
227 |
/* main content */ |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
228 |
|
52493 | 229 |
def tip_border(has_focus: Boolean) |
52491
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
230 |
{ |
52493 | 231 |
tip.setBorder(new LineBorder(if (has_focus) Color.BLACK else Color.GRAY)) |
52491
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
232 |
tip.repaint() |
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
233 |
} |
52493 | 234 |
tip_border(true) |
52491
d435febab327
visually explicit focus (behaviour dependent on platform and look-and-feel);
wenzelm
parents:
52484
diff
changeset
|
235 |
|
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
236 |
override def getFocusTraversalKeysEnabled = false |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
237 |
tip.setBackground(rendering.tooltip_color) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
238 |
tip.add(controls.peer, BorderLayout.NORTH) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
239 |
tip.add(pretty_text_area) |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
240 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
241 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
242 |
/* popup */ |
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
243 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
244 |
private val popup = |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
245 |
{ |
53247
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
246 |
val screen = JEdit_Lib.screen_location(layered, location) |
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
247 |
val size = |
52492 | 248 |
{ |
57849 | 249 |
val bounds = Rendering.popup_bounds |
250 |
||
251 |
val w_max = layered.getWidth min (screen.bounds.width * bounds).toInt |
|
252 |
val h_max = layered.getHeight min (screen.bounds.height * bounds).toInt |
|
253 |
||
52492 | 254 |
val painter = pretty_text_area.getPainter |
57849 | 255 |
val geometry = JEdit_Lib.window_geometry(tip, painter) |
52492 | 256 |
val metric = JEdit_Lib.pretty_metric(painter) |
57849 | 257 |
|
258 |
val margin = |
|
259 |
((rendering.tooltip_margin * metric.average) min |
|
260 |
((w_max - geometry.deco_width) / metric.unit).toInt) max 20 |
|
52492 | 261 |
|
52496
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
262 |
val formatted = Pretty.formatted(info.info, margin, metric) |
52492 | 263 |
val lines = |
264 |
XML.traverse_text(formatted)(0)( |
|
265 |
(n: Int, s: String) => n + s.iterator.filter(_ == '\n').length) |
|
266 |
||
58767
30766b5fd0e1
proper line height and text base line, like regular TextAreaPainter.PaintText;
wenzelm
parents:
57849
diff
changeset
|
267 |
val h = painter.getLineHeight * (lines + 1) + geometry.deco_height |
52492 | 268 |
val margin1 = |
57849 | 269 |
if (h <= h_max) |
52492 | 270 |
(0.0 /: split_lines(XML.content(formatted)))({ case (m, line) => m max metric(line) }) |
271 |
else margin |
|
57849 | 272 |
val w = (metric.unit * (margin1 + metric.average)).round.toInt + geometry.deco_width |
53184
5d6ffb87ee08
confine popup to parent component, to avoid javax.swing.PopupFactory$HeavyWeightPopup and its problems with Linux window management and Mac OS X key handling;
wenzelm
parents:
53019
diff
changeset
|
273 |
|
57849 | 274 |
new Dimension(w min w_max, h min h_max) |
52492 | 275 |
} |
53247
bd595338ca18
uniform use of isabelle.jEdit.Popup, based on generic screen location operations;
wenzelm
parents:
53230
diff
changeset
|
276 |
new Popup(layered, tip, screen.relative(layered, size), size) |
51452
14e6d761ba1c
extra tooltip_delay after window.dismiss operation, to avoid flickering of quick reactivation;
wenzelm
parents:
51451
diff
changeset
|
277 |
} |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
278 |
|
52484
23a09c639700
avoid potential race condition of focusLost/dismiss vs. popup.show;
wenzelm
parents:
52483
diff
changeset
|
279 |
private def show_popup |
23a09c639700
avoid potential race condition of focusLost/dismiss vs. popup.show;
wenzelm
parents:
52483
diff
changeset
|
280 |
{ |
23a09c639700
avoid potential race condition of focusLost/dismiss vs. popup.show;
wenzelm
parents:
52483
diff
changeset
|
281 |
popup.show |
23a09c639700
avoid potential race condition of focusLost/dismiss vs. popup.show;
wenzelm
parents:
52483
diff
changeset
|
282 |
pretty_text_area.requestFocus |
52496
8188e5286662
avoid repeated window popup when the mouse is moved over the same content (again, see also cb677987b7e3 and 0a1db0d02628);
wenzelm
parents:
52494
diff
changeset
|
283 |
pretty_text_area.update(rendering.snapshot, results, info.info) |
52484
23a09c639700
avoid potential race condition of focusLost/dismiss vs. popup.show;
wenzelm
parents:
52483
diff
changeset
|
284 |
} |
52478
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
285 |
|
0a1db0d02628
manage popup windows via PopupFactory, which prefers light-weight JComponent, but might fall back on JWindow (despite JPanel of 0f88591478e6);
wenzelm
parents:
52472
diff
changeset
|
286 |
private def hide_popup: Unit = popup.hide |
52498 | 287 |
|
288 |
private def request_focus: Unit = pretty_text_area.requestFocus |
|
49702 | 289 |
} |
290 |