equal
deleted
inserted
replaced
|
1 /*************************************************************************** |
|
2 Title: graphbrowser/AWTFontMetrics.java |
|
3 Author: Gerwin Klein, TU Muenchen |
|
4 |
|
5 AbstractFontMetrics avoids dependency on java.awt.FontMetrics in |
|
6 batch mode. |
|
7 |
|
8 ***************************************************************************/ |
|
9 |
|
10 package isabelle.graphbrowser; |
|
11 |
|
12 public interface AbstractFontMetrics { |
|
13 public int stringWidth(String str); |
|
14 public int getAscent(); |
|
15 public int getDescent(); |
|
16 } |