ZenScript main repository
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DFontMetrics.java 432B

12345678910111213141516171819202122
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package org.openzen.drawablegui;
  7. /**
  8. *
  9. * @author Hoofdgebruiker
  10. */
  11. public interface DFontMetrics {
  12. int getAscent();
  13. int getDescent();
  14. int getLeading();
  15. int getWidth(String str);
  16. int getWidth(String str, int offset, int length);
  17. }