This commit is contained in:
roc+%cs.cmu.edu 2007-01-17 03:03:48 +00:00
Родитель 137a1120f8
Коммит 7115ecbf2d
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -51,6 +51,7 @@
#include "gfxFont.h"
class gfxRegion;
class gfxTextRun;
/**
* This is the main class for doing actual drawing. It is initialized using
@ -190,6 +191,22 @@ public:
void Ellipse(gfxPoint center, gfxSize dimensions);
void Polygon(const gfxPoint *points, PRUint32 numPoints);
/**
** Text
**/
/**
* Add the text outline to the current path.
*/
// specify this in a sane way.
//void AddStringToPath(gfxTextRun& text);
/**
* Draw the text run at the current point.
* XXX support drawing subsections of the text run
*/
void DrawTextRun(gfxTextRun *text, gfxPoint pt);
/**
** Transformation Matrix manipulation
**/