ultimatepp/uppdev/Glyph/FDraw.cpp
cxl dfb9f23fa6 .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@6063 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-05-13 09:26:34 +00:00

38 lines
1,000 B
C++

#include "glyph.h"
dword FDraw::GetInfo() const
{
return 0;
}
void FDraw::DrawTextOp(int x, int y, int angle, const wchar *text, Font font, Color ink, int n, const int *dx)
{
}
void FDraw::DrawArcOp(const Rect& rc, Point start, Point end, int width, Color color)
{
}
void FDraw::DrawDrawingOp(const Rect& target, const Drawing& w)
{
}
void FDraw::DrawEllipseOp(const Rect& r, Color color, int pen, Color pencolor)
{
}
void FDraw::DrawLineOp(int x1, int y1, int x2, int y2, int width, Color color)
{
}
void FDraw::DrawPaintingOp(const Rect& target, const Painting& w)
{
}
void FDraw::DrawPolyPolyPolygonOp(const Point *vertices, int vertex_count, const int *subpolygon_counts, int scc, const int *disjunct_polygon_counts, int dpcc, Color color, int width, Color outline, uint64 pattern, Color doxor)
{
}
void FDraw::DrawPolyPolylineOp(const Point *vertices, int vertex_count, const int *counts, int count_count, int width, Color color, Color doxor)
{
}