mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
git-svn-id: svn://ultimatepp.org/upp/trunk@331 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
f49ae74c89
commit
e1ad1b14a1
166 changed files with 66362 additions and 0 deletions
29
uppdev/aggdraw/aggdraw.h
Normal file
29
uppdev/aggdraw/aggdraw.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef _PinA_aggdraw_h_
|
||||
#define _PinA_aggdraw_h_
|
||||
|
||||
#include <Draw/Draw.h>
|
||||
|
||||
namespace Upp
|
||||
{
|
||||
class AggDraw : public Draw
|
||||
{
|
||||
public:
|
||||
|
||||
AggDraw(int cx, int cy);
|
||||
AggDraw(Size sz);
|
||||
~AggDraw();
|
||||
|
||||
virtual void BeginOp();
|
||||
virtual void EndOp();
|
||||
virtual void DrawLineOp(int x1, int y1, int x2, int y2, int width, Color color);
|
||||
|
||||
operator Image();
|
||||
|
||||
private:
|
||||
|
||||
struct AggDrawPrivate;
|
||||
AggDrawPrivate * data;
|
||||
|
||||
};
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue