Home | History | Annotate | Download | only in gdiplus

Lines Matching defs:Graphics

4  * GDI+ Graphics class
33 class Graphics: public GdiplusBase
43 static Graphics* FromHDC(HDC hdc)
45 return new Graphics(hdc);
47 static Graphics* FromHDC(HDC hdc, HANDLE hdevice)
49 return new Graphics(hdc, hdevice);
51 static Graphics* FromHWND(HWND hwnd, BOOL icm = FALSE)
53 return new Graphics(hwnd, icm);
55 static Graphics* FromImage(Image *image)
57 return new Graphics(image);
64 Graphics(Image *image): nativeGraphics(NULL), lastStatus(Ok)
70 Graphics(HDC hdc): nativeGraphics(NULL), lastStatus(Ok)
75 Graphics(HDC hdc, HANDLE hdevice): nativeGraphics(NULL), lastStatus(Ok)
80 Graphics(HWND hwnd, BOOL icm = FALSE):
91 ~Graphics()
483 // TODO: [GDI+ 1.1] Graphics::DrawImage(..Effect..)
1393 Status SetClip(const Graphics *g,
1527 Graphics(const Graphics&);
1528 Graphics& operator=(const Graphics&);