FontDescription.st
changeset 6313 2b9a1e4d6f96
parent 6262 e1df0f1d5153
child 6316 7fe0b1c1956f
--- a/FontDescription.st	Wed Mar 05 23:13:18 2014 +0100
+++ b/FontDescription.st	Thu Mar 06 15:28:08 2014 +0100
@@ -1518,6 +1518,13 @@
 
 !
 
+maxCode
+    "return the biggest UCS code in font.
+     Dummy for now"
+
+    ^ 16rFFFF
+!
+
 maxDescent
     "return the fonts maximum-descent (i.e. the maximum of all characters);
      That is the number of units (usually pixels) below the baseline."
@@ -1542,6 +1549,13 @@
 
 !
 
+minCode
+    "return the smallest UCS code in font.
+     Dummy for now"
+
+    ^ 0
+!
+
 width
     "return the fonts characters width;
      That is a number of units (usually pixels).
@@ -1666,11 +1680,11 @@
 !FontDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.85 2014-02-17 20:37:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.86 2014-03-06 14:28:08 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.85 2014-02-17 20:37:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.86 2014-03-06 14:28:08 stefan Exp $'
 ! !