Home | History | Annotate | Download | only in layout
      1 /*
      2  *   Copyright (C) 2003, International Business Machines
      3  *   Corporation and others.  All Rights Reserved.
      4  */
      5 class Surface
      6 {
      7 public:
      8     Surface(/*what?*/);
      9 
     10     void setFont(RenderingFontInstance *font);
     11 
     12     void drawGlyphs(RenderingFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const le_int32 *dx,
     13         le_int32 x, le_int32 y, le_int32 width, le_int32 height);
     14 };
     15