author | wenzelm |
Thu, 12 Nov 2020 11:46:53 +0100 | |
changeset 72595 | c806eeb9138c |
parent 71361 | 21a41356d78f |
child 72786 | 21ff9c1a4644 |
permissions | -rw-r--r-- |
53783
f5e9d182f645
clarified location of GUI modules (which depend on Swing of JFX);
wenzelm
parents:
53778
diff
changeset
|
1 |
/* Title: Pure/GUI/gui.scala |
51619 | 2 |
Author: Makarius |
3 |
||
53712 | 4 |
Basic GUI tools (for AWT/Swing). |
51619 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
54962 | 9 |
import java.lang.{ClassLoader, ClassNotFoundException, NoSuchMethodException} |
69368
6f360600eabc
clarified signature: fonts are not dependent on GUI;
wenzelm
parents:
69360
diff
changeset
|
10 |
import java.awt.{Image, Component, Container, Toolkit, Window, Font, KeyboardFocusManager} |
53785 | 11 |
import java.awt.font.{TextAttribute, TransformAttribute, FontRenderContext, LineMetrics} |
12 |
import java.awt.geom.AffineTransform |
|
57879
91e188508bc9
proper layered_pane for JDialog, e.g. relevant for floating dockables in jEdit, for completion popup in text field;
wenzelm
parents:
57639
diff
changeset
|
13 |
import javax.swing.{ImageIcon, JOptionPane, UIManager, JLayeredPane, JFrame, JWindow, JDialog, |
69377 | 14 |
JButton, JTextField, JLabel} |
51619 | 15 |
|
71357 | 16 |
|
17 |
import scala.collection.JavaConverters |
|
51619 | 18 |
import scala.swing.{ComboBox, TextArea, ScrollPane} |
19 |
import scala.swing.event.SelectionChanged |
|
20 |
||
21 |
||
22 |
object GUI |
|
23 |
{ |
|
24 |
/* Swing look-and-feel */ |
|
25 |
||
59201
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
26 |
def find_laf(name: String): Option[String] = |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
27 |
UIManager.getInstalledLookAndFeels(). |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
28 |
find(c => c.getName == name || c.getClassName == name). |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
29 |
map(_.getClassName) |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
30 |
|
51619 | 31 |
def get_laf(): String = |
59201
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
32 |
find_laf(System.getProperty("isabelle.laf")) getOrElse { |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
33 |
if (Platform.is_windows || Platform.is_macos) |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
34 |
UIManager.getSystemLookAndFeelClassName() |
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
35 |
else |
61529
82fc5a6231a2
back to traditional Metal as default, and thus evade current problems with Nimbus scrollbar slider;
wenzelm
parents:
61523
diff
changeset
|
36 |
UIManager.getCrossPlatformLookAndFeelClassName() |
59201
702e0971d617
added system property isabelle.laf, notably for initial system dialog;
wenzelm
parents:
59183
diff
changeset
|
37 |
} |
51619 | 38 |
|
39 |
def init_laf(): Unit = UIManager.setLookAndFeel(get_laf()) |
|
40 |
||
53848
8d7029eb0c31
disable standard behaviour of Mac OS X text field (i.e. select-all after focus gain) in order to make completion work more smoothly;
wenzelm
parents:
53786
diff
changeset
|
41 |
def is_macos_laf(): Boolean = |
53849 | 42 |
Platform.is_macos && |
53848
8d7029eb0c31
disable standard behaviour of Mac OS X text field (i.e. select-all after focus gain) in order to make completion work more smoothly;
wenzelm
parents:
53786
diff
changeset
|
43 |
UIManager.getSystemLookAndFeelClassName() == UIManager.getLookAndFeel.getClass.getName |
8d7029eb0c31
disable standard behaviour of Mac OS X text field (i.e. select-all after focus gain) in order to make completion work more smoothly;
wenzelm
parents:
53786
diff
changeset
|
44 |
|
60998 | 45 |
def is_windows_laf(): Boolean = |
46 |
Platform.is_windows && |
|
47 |
UIManager.getSystemLookAndFeelClassName() == UIManager.getLookAndFeel.getClass.getName |
|
48 |
||
51619 | 49 |
|
56752
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
50 |
/* plain focus traversal, notably for text fields */ |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
51 |
|
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
52 |
def plain_focus_traversal(component: Component) |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
53 |
{ |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
54 |
val dummy_button = new JButton |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
55 |
def apply(id: Int): Unit = |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
56 |
component.setFocusTraversalKeys(id, dummy_button.getFocusTraversalKeys(id)) |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
57 |
apply(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS) |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
58 |
apply(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS) |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
59 |
} |
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
60 |
|
72b4205f4de9
uniform focus traversal via TAB / Shift-TAB for all fields, in contrast to Java defaults, but in accordance to occasional jEdit practice;
wenzelm
parents:
56622
diff
changeset
|
61 |
|
51619 | 62 |
/* simple dialogs */ |
63 |
||
59671
9715eb8e9408
more precise position information in Isabelle/Scala, with YXML markup as in Isabelle/ML;
wenzelm
parents:
59286
diff
changeset
|
64 |
def scrollable_text(raw_txt: String, width: Int = 60, height: Int = 20, editable: Boolean = false) |
53714 | 65 |
: ScrollPane = |
51619 | 66 |
{ |
59671
9715eb8e9408
more precise position information in Isabelle/Scala, with YXML markup as in Isabelle/ML;
wenzelm
parents:
59286
diff
changeset
|
67 |
val txt = Output.clean_yxml(raw_txt) |
51619 | 68 |
val text = new TextArea(txt) |
69 |
if (width > 0) text.columns = width |
|
53714 | 70 |
if (height > 0 && split_lines(txt).length > height) text.rows = height |
51619 | 71 |
text.editable = editable |
72 |
new ScrollPane(text) |
|
73 |
} |
|
74 |
||
75 |
private def simple_dialog(kind: Int, default_title: String, |
|
65370 | 76 |
parent: Component, title: String, message: Iterable[Any]) |
51619 | 77 |
{ |
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57044
diff
changeset
|
78 |
GUI_Thread.now { |
65370 | 79 |
val java_message = |
80 |
message.iterator.map({ case x: scala.swing.Component => x.peer case x => x }). |
|
81 |
toArray.asInstanceOf[Array[AnyRef]] |
|
82 |
JOptionPane.showMessageDialog(parent, java_message, |
|
51619 | 83 |
if (title == null) default_title else title, kind) |
84 |
} |
|
85 |
} |
|
86 |
||
57639 | 87 |
def dialog(parent: Component, title: String, message: Any*): Unit = |
51619 | 88 |
simple_dialog(JOptionPane.PLAIN_MESSAGE, null, parent, title, message) |
89 |
||
57639 | 90 |
def warning_dialog(parent: Component, title: String, message: Any*): Unit = |
51619 | 91 |
simple_dialog(JOptionPane.WARNING_MESSAGE, "Warning", parent, title, message) |
92 |
||
57639 | 93 |
def error_dialog(parent: Component, title: String, message: Any*): Unit = |
51619 | 94 |
simple_dialog(JOptionPane.ERROR_MESSAGE, "Error", parent, title, message) |
95 |
||
96 |
def confirm_dialog(parent: Component, title: String, option_type: Int, message: Any*): Int = |
|
57612
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
wenzelm
parents:
57044
diff
changeset
|
97 |
GUI_Thread.now { |
51619 | 98 |
val java_message = message map { case x: scala.swing.Component => x.peer case x => x } |
99 |
JOptionPane.showConfirmDialog(parent, |
|
100 |
java_message.toArray.asInstanceOf[Array[AnyRef]], title, |
|
101 |
option_type, JOptionPane.QUESTION_MESSAGE) |
|
102 |
} |
|
103 |
||
104 |
||
105 |
/* zoom box */ |
|
106 |
||
57044 | 107 |
private val Zoom_Factor = "([0-9]+)%?".r |
108 |
||
109 |
abstract class Zoom_Box extends ComboBox[String]( |
|
51619 | 110 |
List("50%", "70%", "85%", "100%", "125%", "150%", "175%", "200%", "300%", "400%")) |
111 |
{ |
|
57044 | 112 |
def changed: Unit |
113 |
def factor: Int = parse(selection.item) |
|
114 |
||
115 |
private def parse(text: String): Int = |
|
51619 | 116 |
text match { |
57044 | 117 |
case Zoom_Factor(s) => |
51619 | 118 |
val i = Integer.parseInt(s) |
56874 | 119 |
if (10 <= i && i < 1000) i else 100 |
51619 | 120 |
case _ => 100 |
121 |
} |
|
122 |
||
57044 | 123 |
private def print(i: Int): String = i.toString + "%" |
51619 | 124 |
|
125 |
def set_item(i: Int) { |
|
126 |
peer.getEditor match { |
|
127 |
case null => |
|
128 |
case editor => editor.setItem(print(i)) |
|
129 |
} |
|
130 |
} |
|
131 |
||
132 |
makeEditable()(c => new ComboBox.BuiltInEditor(c)(text => print(parse(text)), x => x)) |
|
56874 | 133 |
peer.getEditor.getEditorComponent match { |
56888 | 134 |
case text: JTextField => text.setColumns(4) |
56874 | 135 |
case _ => |
136 |
} |
|
137 |
||
57044 | 138 |
selection.index = 3 |
139 |
||
51619 | 140 |
listenTo(selection) |
57044 | 141 |
reactions += { case SelectionChanged(_) => changed } |
51619 | 142 |
} |
143 |
||
144 |
||
53786 | 145 |
/* tooltip with multi-line support */ |
146 |
||
56622
891d1b8b64fb
clarified tooltip_lines: HTML.encode already takes care of newline (but not space);
wenzelm
parents:
54965
diff
changeset
|
147 |
def tooltip_lines(text: String): String = |
891d1b8b64fb
clarified tooltip_lines: HTML.encode already takes care of newline (but not space);
wenzelm
parents:
54965
diff
changeset
|
148 |
if (text == null || text == "") null |
62113 | 149 |
else "<html>" + HTML.output(text) + "</html>" |
53786 | 150 |
|
151 |
||
51619 | 152 |
/* icon */ |
153 |
||
154 |
def isabelle_icon(): ImageIcon = |
|
54676
6b2ca4850b71
uniform use of transparent icons, as for main "apps";
wenzelm
parents:
54659
diff
changeset
|
155 |
new ImageIcon(getClass.getClassLoader.getResource("isabelle/isabelle_transparent-32.gif")) |
51619 | 156 |
|
54709 | 157 |
def isabelle_icons(): List[ImageIcon] = |
158 |
for (icon <- List("isabelle/isabelle_transparent-32.gif", "isabelle/isabelle_transparent.gif")) |
|
159 |
yield new ImageIcon(getClass.getClassLoader.getResource(icon)) |
|
160 |
||
51619 | 161 |
def isabelle_image(): Image = isabelle_icon().getImage |
53712 | 162 |
|
163 |
||
164 |
/* component hierachy */ |
|
165 |
||
166 |
def get_parent(component: Component): Option[Container] = |
|
167 |
component.getParent match { |
|
168 |
case null => None |
|
169 |
case parent => Some(parent) |
|
170 |
} |
|
171 |
||
172 |
def ancestors(component: Component): Iterator[Container] = new Iterator[Container] { |
|
173 |
private var next_elem = get_parent(component) |
|
174 |
def hasNext(): Boolean = next_elem.isDefined |
|
175 |
def next(): Container = |
|
176 |
next_elem match { |
|
177 |
case Some(parent) => |
|
178 |
next_elem = get_parent(parent) |
|
179 |
parent |
|
180 |
case None => Iterator.empty.next() |
|
181 |
} |
|
182 |
} |
|
183 |
||
184 |
def parent_window(component: Component): Option[Window] = |
|
185 |
ancestors(component).collectFirst({ case x: Window => x }) |
|
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53714
diff
changeset
|
186 |
|
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53714
diff
changeset
|
187 |
def layered_pane(component: Component): Option[JLayeredPane] = |
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53714
diff
changeset
|
188 |
parent_window(component) match { |
57879
91e188508bc9
proper layered_pane for JDialog, e.g. relevant for floating dockables in jEdit, for completion popup in text field;
wenzelm
parents:
57639
diff
changeset
|
189 |
case Some(w: JWindow) => Some(w.getLayeredPane) |
91e188508bc9
proper layered_pane for JDialog, e.g. relevant for floating dockables in jEdit, for completion popup in text field;
wenzelm
parents:
57639
diff
changeset
|
190 |
case Some(w: JFrame) => Some(w.getLayeredPane) |
91e188508bc9
proper layered_pane for JDialog, e.g. relevant for floating dockables in jEdit, for completion popup in text field;
wenzelm
parents:
57639
diff
changeset
|
191 |
case Some(w: JDialog) => Some(w.getLayeredPane) |
53778
29eaacff4078
proper layered pane at root of parent component, not global view (e.g. relevant for tooltips for detached info windows);
wenzelm
parents:
53714
diff
changeset
|
192 |
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:
53714
diff
changeset
|
193 |
} |
53785 | 194 |
|
63874 | 195 |
def traverse_components(component: Component, apply: Component => Unit) |
196 |
{ |
|
197 |
def traverse(comp: Component) |
|
198 |
{ |
|
199 |
apply(comp) |
|
200 |
comp match { |
|
201 |
case cont: Container => |
|
202 |
for (i <- 0 until cont.getComponentCount) |
|
203 |
traverse(cont.getComponent(i)) |
|
204 |
case _ => |
|
205 |
} |
|
206 |
} |
|
207 |
traverse(component) |
|
208 |
} |
|
209 |
||
53785 | 210 |
|
211 |
/* font operations */ |
|
212 |
||
61742
fd3b214b0979
clarified font: GUI defaults might change dynamically;
wenzelm
parents:
61529
diff
changeset
|
213 |
def copy_font(font: Font): Font = |
fd3b214b0979
clarified font: GUI defaults might change dynamically;
wenzelm
parents:
61529
diff
changeset
|
214 |
if (font == null) null |
fd3b214b0979
clarified font: GUI defaults might change dynamically;
wenzelm
parents:
61529
diff
changeset
|
215 |
else new Font(font.getFamily, font.getStyle, font.getSize) |
fd3b214b0979
clarified font: GUI defaults might change dynamically;
wenzelm
parents:
61529
diff
changeset
|
216 |
|
59230 | 217 |
def line_metrics(font: Font): LineMetrics = |
53785 | 218 |
font.getLineMetrics("", new FontRenderContext(null, false, false)) |
219 |
||
69376 | 220 |
def transform_font(font: Font, transform: AffineTransform): Font = |
71357 | 221 |
font.deriveFont(java.util.Map.of(TextAttribute.TRANSFORM, new TransformAttribute(transform))) |
69376 | 222 |
|
223 |
def font(family: String = Isabelle_Fonts.sans, size: Int = 1, bold: Boolean = false): Font = |
|
224 |
new Font(family, if (bold) Font.BOLD else Font.PLAIN, size) |
|
225 |
||
69377 | 226 |
def label_font(): Font = (new JLabel).getFont |
227 |
||
69376 | 228 |
|
229 |
/* Isabelle fonts */ |
|
230 |
||
69358
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
231 |
def imitate_font(font: Font, |
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
232 |
family: String = Isabelle_Fonts.sans, |
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
233 |
scale: Double = 1.0): Font = |
53785 | 234 |
{ |
235 |
val font1 = new Font(family, font.getStyle, font.getSize) |
|
59286
ac74eedb910a
GUI.imitate_font: more explicit result size, e.g. relevant for caching;
wenzelm
parents:
59230
diff
changeset
|
236 |
val rel_size = line_metrics(font).getHeight.toDouble / line_metrics(font1).getHeight |
ac74eedb910a
GUI.imitate_font: more explicit result size, e.g. relevant for caching;
wenzelm
parents:
59230
diff
changeset
|
237 |
new Font(family, font.getStyle, (scale * rel_size * font.getSize).toInt) |
59183
ec83638b6bfb
imitate font more carefully: err on smaller size;
wenzelm
parents:
59080
diff
changeset
|
238 |
} |
ec83638b6bfb
imitate font more carefully: err on smaller size;
wenzelm
parents:
59080
diff
changeset
|
239 |
|
69358
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
240 |
def imitate_font_css(font: Font, |
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
241 |
family: String = Isabelle_Fonts.sans, |
71ef6e6da3dc
prefer Isabelle_Fonts.sans (not mono) as derived GUI font;
wenzelm
parents:
69357
diff
changeset
|
242 |
scale: Double = 1.0): String = |
59183
ec83638b6bfb
imitate font more carefully: err on smaller size;
wenzelm
parents:
59080
diff
changeset
|
243 |
{ |
ec83638b6bfb
imitate font more carefully: err on smaller size;
wenzelm
parents:
59080
diff
changeset
|
244 |
val font1 = new Font(family, font.getStyle, font.getSize) |
59230 | 245 |
val rel_size = line_metrics(font).getHeight.toDouble / line_metrics(font1).getHeight |
59183
ec83638b6bfb
imitate font more carefully: err on smaller size;
wenzelm
parents:
59080
diff
changeset
|
246 |
"font-family: " + family + "; font-size: " + (scale * rel_size * 100).toInt + "%;" |
53785 | 247 |
} |
69377 | 248 |
|
249 |
def use_isabelle_fonts() |
|
250 |
{ |
|
251 |
val default_font = label_font() |
|
252 |
val ui = UIManager.getDefaults |
|
69384
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
253 |
for (prop <- List( |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
254 |
"CheckBoxMenuItem.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
255 |
"Label.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
256 |
"Menu.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
257 |
"MenuItem.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
258 |
"PopupMenu.font", |
71360
fcf5ee85743d
more Isabelle fonts, notably for File Browser title in GTK L&F;
wenzelm
parents:
71357
diff
changeset
|
259 |
"Table.font", |
fcf5ee85743d
more Isabelle fonts, notably for File Browser title in GTK L&F;
wenzelm
parents:
71357
diff
changeset
|
260 |
"TableHeader.font", |
69384
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
261 |
"TextArea.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
262 |
"TextField.font", |
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
263 |
"TextPane.font", |
71361 | 264 |
"ToolTip.font", |
69384
0c7d8b1b6594
more Isabelle fonts: CheckBoxMenuItem.font notably for Windows L&F;
wenzelm
parents:
69378
diff
changeset
|
265 |
"Tree.font")) |
69377 | 266 |
{ |
267 |
val font = ui.get(prop) match { case font: Font => font case _ => default_font } |
|
268 |
ui.put(prop, GUI.imitate_font(font)) |
|
269 |
} |
|
270 |
} |
|
51619 | 271 |
} |