Uses of Interface
crystalspace.jbind.interfaces.ivideo.fontserv.iFont

Packages that use iFont
crystalspace.jbind.impl.video.fontserv   
crystalspace.jbind.impl.video.graph2d   
crystalspace.jbind.interfaces.ivideo.fontserv   
crystalspace.jbind.interfaces.ivideo.graph2d   
 

Uses of iFont in crystalspace.jbind.impl.video.fontserv
 

Classes in crystalspace.jbind.impl.video.fontserv that implement iFont
 class csFont
           
 

Methods in crystalspace.jbind.impl.video.fontserv that return iFont
 iFont csFontServer.getFont(int iIndex)
           
 iFont csFontServer.loadFont(java.lang.String filename)
           
 

Methods in crystalspace.jbind.impl.video.fontserv with parameters of type iFont
 void csFontDeleteNotify.beforeDelete(iFont font)
           
 

Uses of iFont in crystalspace.jbind.impl.video.graph2d
 

Methods in crystalspace.jbind.impl.video.graph2d with parameters of type iFont
 void csGraphics2D.write(iFont font, int x, int y, int fg, int bg, java.lang.String str, int flags)
           
 void csGraphics2D.write(iFont font, int x, int y, int fg, int bg, java.lang.String str)
           
 void csGraphics2D.writeBaseline(iFont font, int x, int y, int fg, int bg, java.lang.String str)
           
 

Uses of iFont in crystalspace.jbind.interfaces.ivideo.fontserv
 

Methods in crystalspace.jbind.interfaces.ivideo.fontserv that return iFont
 iFont iFontServer.getFont(int iIndex)
          Get Nth loaded font or 0.
 iFont iFontServer.loadFont(java.lang.String filename)
          Load a font by name.
 

Methods in crystalspace.jbind.interfaces.ivideo.fontserv with parameters of type iFont
 void iFontDeleteNotify.beforeDelete(iFont font)
          Before delete.
 

Uses of iFont in crystalspace.jbind.interfaces.ivideo.graph2d
 

Methods in crystalspace.jbind.interfaces.ivideo.graph2d with parameters of type iFont
 void iGraphics2D.write(iFont font, int x, int y, int fg, int bg, java.lang.String str)
          Write a text string into the back buffer.
 void iGraphics2D.write(iFont font, int x, int y, int fg, int bg, java.lang.String str, int flags)
          Write a text string into the back buffer.
 void iGraphics2D.writeBaseline(iFont font, int x, int y, int fg, int bg, java.lang.String str)
          Deprecated. Instead, use Write(); with the CS_WRITE_BASELINE flag set. Implemented in csGraphics2D, and csGraphics2DNull.