lib/browser/GraphBrowser/AbstractFontMetrics.java
author wenzelm
Sun, 08 Sep 2019 13:07:03 +0200
changeset 70674 29bb1ebb188f
parent 33686 8e33ca8832b1
permissions -rw-r--r--
clarified signature: proper Document.Node.Ordering conforming to equality (e.g. required in situations where theory names are ambiguous due to overlapping session directories);

/***************************************************************************
  Title:      GraphBrowser/AWTFontMetrics.java
  Author:     Gerwin Klein, TU Muenchen

  AbstractFontMetrics avoids dependency on java.awt.FontMetrics in 
  batch mode.
  
***************************************************************************/

package GraphBrowser;

public interface AbstractFontMetrics {
  public int stringWidth(String str);
  public int getAscent();
  public int getDescent();
}