ultimatepp/uppdev/Glyph/FDrawClip.cpp
cxl c4de1cac7c .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
445 B
C++

#include "glyph.h"
void FDraw::BeginOp()
{
}
bool FDraw::ClipOp(const Rect& r)
{
return false;
}
bool FDraw::ClipoffOp(const Rect& r)
{
return false;
}
bool FDraw::IntersectClipOp(const Rect& r)
{
return false;
}
bool FDraw::ExcludeClipOp(const Rect& r)
{
return false;
}
bool FDraw::IsPaintingOp(const Rect& r) const
{
return false;
}
void FDraw::OffsetOp(Point p)
{
}
void FDraw::EndOp()
{
}