Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gdiplusgraphics.h « gdiplus « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e5b771a172ca3966360684f2bfd0c8277038999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
/*
 * gdiplusgraphics.h
 *
 * GDI+ Graphics class
 *
 * This file is part of the w32api package.
 *
 * Contributors:
 *   Created by Markus Koenig <markus@stber-koenig.de>
 *
 * THIS SOFTWARE IS NOT COPYRIGHTED
 *
 * This source code is offered for use in the public domain. You may
 * use, modify or distribute it freely.
 *
 * This code is distributed in the hope that it will be useful but
 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 * DISCLAIMED. This includes but is not limited to warranties of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 */

#ifndef __GDIPLUS_GRAPHICS_H
#define __GDIPLUS_GRAPHICS_H
#if __GNUC__ >=3
#pragma GCC system_header
#endif

#ifndef __cplusplus
#error "A C++ compiler is required to include gdiplusgraphics.h."
#endif

class Graphics: public GdiplusBase
{
	friend class Bitmap;
	friend class CachedBitmap;
	friend class Font;
	friend class GraphicsPath;
	friend class Metafile;
	friend class Region;

public:
	static Graphics* FromHDC(HDC hdc)
	{
		return new Graphics(hdc);
	}
	static Graphics* FromHDC(HDC hdc, HANDLE hdevice)
	{
		return new Graphics(hdc, hdevice);
	}
	static Graphics* FromHWND(HWND hwnd, BOOL icm = FALSE)
	{
		return new Graphics(hwnd, icm);
	}
	static Graphics* FromImage(Image *image)
	{
		return new Graphics(image);
	}
	static HPALETTE GetHalftonePalette()
	{
		return DllExports::GdipCreateHalftonePalette();
	}

	Graphics(Image *image): nativeGraphics(NULL), lastStatus(Ok)
	{
		lastStatus = DllExports::GdipGetImageGraphicsContext(
				image ? image->nativeImage : NULL,
				&nativeGraphics);
	}
	Graphics(HDC hdc): nativeGraphics(NULL), lastStatus(Ok)
	{
		lastStatus = DllExports::GdipCreateFromHDC(
				hdc, &nativeGraphics);
	}
	Graphics(HDC hdc, HANDLE hdevice): nativeGraphics(NULL), lastStatus(Ok)
	{
		lastStatus = DllExports::GdipCreateFromHDC2(
				hdc, hdevice, &nativeGraphics);
	}
	Graphics(HWND hwnd, BOOL icm = FALSE):
		nativeGraphics(NULL), lastStatus(Ok)
	{
		if (icm) {
			lastStatus = DllExports::GdipCreateFromHWNDICM(
					hwnd, &nativeGraphics);
		} else {
			lastStatus = DllExports::GdipCreateFromHWND(
					hwnd, &nativeGraphics);
		}
	}
	~Graphics()
	{
		DllExports::GdipDeleteGraphics(nativeGraphics);
	}

	Status AddMetafileComment(const BYTE *data, UINT sizeData)
	{
		return updateStatus(DllExports::GdipComment(
				nativeGraphics, sizeData, data));
	}
	GraphicsContainer BeginContainer()
	{
		GraphicsContainer result = 0;
		updateStatus(DllExports::GdipBeginContainer2(
				nativeGraphics, &result));
		return result;
	}
	GraphicsContainer BeginContainer(const RectF& dstrect,
			const RectF& srcrect, Unit unit)
	{
		GraphicsContainer result = 0;
		updateStatus(DllExports::GdipBeginContainer(
				nativeGraphics, &dstrect, &srcrect, unit,
				&result));
		return result;
	}
	GraphicsContainer BeginContainer(const Rect& dstrect,
			const Rect& srcrect, Unit unit)
	{
		GraphicsContainer result = 0;
		updateStatus(DllExports::GdipBeginContainerI(
				nativeGraphics, &dstrect, &srcrect, unit,
				&result));
		return result;
	}
	Status Clear(const Color& color)
	{
		return updateStatus(DllExports::GdipGraphicsClear(
				nativeGraphics, color.GetValue()));
	}
	Status DrawArc(const Pen *pen, REAL x, REAL y, REAL width, REAL height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawArc(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status DrawArc(const Pen *pen, INT x, INT y, INT width, INT height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawArcI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status DrawArc(const Pen *pen, const RectF& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawArc(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status DrawArc(const Pen *pen, const Rect& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawArcI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status DrawBezier(const Pen *pen,
			REAL x1, REAL y1, REAL x2, REAL y2,
			REAL x3, REAL y3, REAL x4, REAL y4)
	{
		return updateStatus(DllExports::GdipDrawBezier(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x1, y1, x2, y2, x3, y3, x4, y4));
	}
	Status DrawBezier(const Pen *pen,
			INT x1, INT y1, INT x2, INT y2,
			INT x3, INT y3, INT x4, INT y4)
	{
		return updateStatus(DllExports::GdipDrawBezierI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x1, y1, x2, y2, x3, y3, x4, y4));
	}
	Status DrawBezier(const Pen *pen,
			const PointF& pt1, const PointF& pt2,
			const PointF& pt3, const PointF& pt4)
	{
		return updateStatus(DllExports::GdipDrawBezier(
				nativeGraphics, pen ? pen->nativePen : NULL,
				pt1.X, pt1.Y, pt2.X, pt2.Y,
				pt3.X, pt3.Y, pt4.X, pt4.Y));
	}
	Status DrawBezier(const Pen *pen,
			const Point& pt1, const Point& pt2,
			const Point& pt3, const Point& pt4)
	{
		return updateStatus(DllExports::GdipDrawBezierI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				pt1.X, pt1.Y, pt2.X, pt2.Y,
				pt3.X, pt3.Y, pt4.X, pt4.Y));
	}
	Status DrawBeziers(const Pen *pen, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawBeziers(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawBeziers(const Pen *pen, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawBeziersI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawCachedBitmap(CachedBitmap *cb, INT x, INT y)
	{
		return updateStatus(DllExports::GdipDrawCachedBitmap(
				nativeGraphics,
				cb ? cb->nativeCachedBitmap : NULL,
				x, y));
	}
	Status DrawClosedCurve(const Pen *pen, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawClosedCurve(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawClosedCurve(const Pen *pen, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawClosedCurveI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawClosedCurve(const Pen *pen, const PointF *points, INT count,
			REAL tension)
	{
		return updateStatus(DllExports::GdipDrawClosedCurve2(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, tension));
	}
	Status DrawClosedCurve(const Pen *pen, const Point *points, INT count,
			REAL tension)
	{
		return updateStatus(DllExports::GdipDrawClosedCurve2I(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, tension));
	}
	Status DrawCurve(const Pen *pen, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawCurve(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawCurve(const Pen *pen, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawCurveI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawCurve(const Pen *pen, const PointF *points, INT count,
			REAL tension)
	{
		return updateStatus(DllExports::GdipDrawCurve2(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, tension));
	}
	Status DrawCurve(const Pen *pen, const Point *points, INT count,
			REAL tension)
	{
		return updateStatus(DllExports::GdipDrawCurve2I(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, tension));
	}
	Status DrawCurve(const Pen *pen, const PointF *points, INT count,
			INT offset, INT numberOfSegments, REAL tension)
	{
		return updateStatus(DllExports::GdipDrawCurve3(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, offset,
				numberOfSegments, tension));
	}
	Status DrawCurve(const Pen *pen, const Point *points, INT count,
			INT offset, INT numberOfSegments, REAL tension)
	{
		return updateStatus(DllExports::GdipDrawCurve3I(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count, offset,
				numberOfSegments, tension));
	}
	Status DrawDriverString(const UINT16 *text, INT length,
			const Font *font, const Brush *brush,
			const PointF *positions, INT flags,
			const Matrix *matrix)
	{
		return updateStatus(DllExports::GdipDrawDriverString(
				nativeGraphics, text, length,
				font ? font->nativeFont : NULL,
				brush ? brush->nativeBrush : NULL,
				positions, flags,
				matrix ? matrix->nativeMatrix : NULL));
	}
	Status DrawEllipse(const Pen *pen,
			REAL x, REAL y, REAL width, REAL height)
	{
		return updateStatus(DllExports::GdipDrawEllipse(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height));
	}
	Status DrawEllipse(const Pen *pen, INT x, INT y, INT width, INT height)
	{
		return updateStatus(DllExports::GdipDrawEllipseI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height));
	}
	Status DrawEllipse(const Pen *pen, const RectF& rect)
	{
		return updateStatus(DllExports::GdipDrawEllipse(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawEllipse(const Pen *pen, const Rect& rect)
	{
		return updateStatus(DllExports::GdipDrawEllipseI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawImage(Image *image, REAL x, REAL y)
	{
		return updateStatus(DllExports::GdipDrawImage(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y));
	}
	Status DrawImage(Image *image, INT x, INT y)
	{
		return updateStatus(DllExports::GdipDrawImageI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y));
	}
	Status DrawImage(Image *image, const PointF& point)
	{
		return updateStatus(DllExports::GdipDrawImage(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				point.X, point.Y));
	}
	Status DrawImage(Image *image, const Point& point)
	{
		return updateStatus(DllExports::GdipDrawImageI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				point.X, point.Y));
	}
	Status DrawImage(Image *image, REAL x, REAL y, REAL width, REAL height)
	{
		return updateStatus(DllExports::GdipDrawImageRect(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y, width, height));
	}
	Status DrawImage(Image *image, INT x, INT y, INT width, INT height)
	{
		return updateStatus(DllExports::GdipDrawImageRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y, width, height));
	}
	Status DrawImage(Image *image, const RectF& rect)
	{
		return updateStatus(DllExports::GdipDrawImageRect(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawImage(Image *image, const Rect& rect)
	{
		return updateStatus(DllExports::GdipDrawImageRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawImage(Image *image, const PointF *destPoints, INT count)
	{
		return updateStatus(DllExports::GdipDrawImagePoints(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destPoints, count));
	}
	Status DrawImage(Image *image, const Point *destPoints, INT count)
	{
		return updateStatus(DllExports::GdipDrawImagePointsI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destPoints, count));
	}
	Status DrawImage(Image *image, REAL x, REAL y, REAL srcx, REAL srcy,
			REAL srcwidth, REAL srcheight, Unit srcUnit)
	{
		return updateStatus(DllExports::GdipDrawImagePointRect(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y, srcx, srcy, srcwidth, srcheight,
				srcUnit));
	}
	Status DrawImage(Image *image, INT x, INT y, INT srcx, INT srcy,
			INT srcwidth, INT srcheight, Unit srcUnit)
	{
		return updateStatus(DllExports::GdipDrawImagePointRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				x, y, srcx, srcy, srcwidth, srcheight,
				srcUnit));
	}
	Status DrawImage(Image *image, const RectF& destRect,
			REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
			Unit srcUnit,
			const ImageAttributes *imageAttributes = NULL,
			DrawImageAbort callback = NULL,
			VOID *callbackData = NULL)
	{
		return updateStatus(DllExports::GdipDrawImageRectRect(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destRect.X, destRect.Y,
				destRect.Width, destRect.Height,
				srcx, srcy, srcwidth, srcheight, srcUnit,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
				callback, callbackData));
	}
	Status DrawImage(Image *image, const Rect& destRect,
			INT srcx, INT srcy, INT srcwidth, INT srcheight,
			Unit srcUnit,
			const ImageAttributes *imageAttributes = NULL,
			DrawImageAbort callback = NULL,
			VOID *callbackData = NULL)
	{
		return updateStatus(DllExports::GdipDrawImageRectRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destRect.X, destRect.Y,
				destRect.Width, destRect.Height,
				srcx, srcy, srcwidth, srcheight, srcUnit,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
				callback, callbackData));
	}
	Status DrawImage(Image *image, const RectF& destRect,
			const RectF& sourceRect, Unit srcUnit,
			const ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipDrawImageRectRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destRect.X, destRect.Y,
				destRect.Width, destRect.Height,
				sourceRect.X, sourceRect.Y,
				sourceRect.Width, sourceRect.Height, srcUnit,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
				NULL, NULL));
	}
	Status DrawImage(Image *image, const PointF *destPoints, INT count,
			REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
			Unit srcUnit,
			const ImageAttributes *imageAttributes = NULL,
			DrawImageAbort callback = NULL,
			VOID *callbackData = NULL)
	{
		return updateStatus(DllExports::GdipDrawImagePointsRect(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destPoints, count,
				srcx, srcy, srcwidth, srcheight, srcUnit,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
				callback, callbackData));
	}
	Status DrawImage(Image *image, const Point *destPoints, INT count,
			INT srcx, INT srcy, INT srcwidth, INT srcheight,
			Unit srcUnit,
			const ImageAttributes *imageAttributes = NULL,
			DrawImageAbort callback = NULL,
			VOID *callbackData = NULL)
	{
		return updateStatus(DllExports::GdipDrawImagePointsRectI(
				nativeGraphics,
				image ? image->nativeImage : NULL,
				destPoints, count,
				srcx, srcy, srcwidth, srcheight, srcUnit,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
				callback, callbackData));
	}
	// TODO: [GDI+ 1.1] Graphics::DrawImage(..Effect..)
	//Status DrawImage(Image *image, RectF *sourceRect, Matrix *matrix,
	//		Effect *effect, ImageAttributes *imageAttributes,
	//		Unit srcUnit)
	//{
	//	return updateStatus(DllExports::GdipDrawImageFX(
	//			nativeGraphics,
	//			image ? image->nativeImage : NULL,
	//			sourceRect,
	//			matrix ? matrix->nativeMatrix : NULL,
	//			effect ? effect->nativeEffect : NULL,
	//			imageAttributes ? imageAttributes->nativeImageAttributes : NULL,
	//			srcUnit));
	//}
	Status DrawLine(const Pen *pen, REAL x1, REAL y1, REAL x2, REAL y2)
	{
		return updateStatus(DllExports::GdipDrawLine(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x1, y1, x2, y2));
	}
	Status DrawLine(const Pen *pen, INT x1, INT y1, INT x2, INT y2)
	{
		return updateStatus(DllExports::GdipDrawLineI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x1, y1, x2, y2));
	}
	Status DrawLine(const Pen *pen, const PointF& pt1, const PointF& pt2)
	{
		return updateStatus(DllExports::GdipDrawLine(
				nativeGraphics, pen ? pen->nativePen : NULL,
				pt1.X, pt1.Y, pt2.X, pt2.Y));
	}
	Status DrawLine(const Pen *pen, const Point& pt1, const Point& pt2)
	{
		return updateStatus(DllExports::GdipDrawLineI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				pt1.X, pt1.Y, pt2.X, pt2.Y));
	}
	Status DrawLines(const Pen *pen, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawLines(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawLines(const Pen *pen, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawLinesI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawPath(const Pen *pen, const GraphicsPath *path)
	{
		return updateStatus(DllExports::GdipDrawPath(
				nativeGraphics, pen ? pen->nativePen : NULL,
				path ? path->nativePath : NULL));
	}
	Status DrawPie(const Pen *pen, REAL x, REAL y, REAL width, REAL height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawPie(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status DrawPie(const Pen *pen, INT x, INT y, INT width, INT height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawPieI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status DrawPie(const Pen *pen, const RectF& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawPie(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status DrawPie(const Pen *pen, const Rect& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipDrawPieI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status DrawPolygon(const Pen *pen, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawPolygon(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawPolygon(const Pen *pen, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipDrawPolygonI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				points, count));
	}
	Status DrawRectangle(const Pen *pen,
			REAL x, REAL y, REAL width, REAL height)
	{
		return updateStatus(DllExports::GdipDrawRectangle(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height));
	}
	Status DrawRectangle(const Pen *pen,
			INT x, INT y, INT width, INT height)
	{
		return updateStatus(DllExports::GdipDrawRectangleI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				x, y, width, height));
	}
	Status DrawRectangle(const Pen *pen, const RectF& rect)
	{
		return updateStatus(DllExports::GdipDrawRectangle(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawRectangle(const Pen *pen, const Rect& rect)
	{
		return updateStatus(DllExports::GdipDrawRectangleI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status DrawRectangles(const Pen *pen, const RectF *rects, INT count)
	{
		return updateStatus(DllExports::GdipDrawRectangles(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rects, count));
	}
	Status DrawRectangles(const Pen *pen, const Rect *rects, INT count)
	{
		return updateStatus(DllExports::GdipDrawRectanglesI(
				nativeGraphics, pen ? pen->nativePen : NULL,
				rects, count));
	}
	Status DrawString(const WCHAR *string, INT length, const Font *font,
			const PointF& origin, const Brush *brush)
	{
		RectF layoutRect(origin.X, origin.Y, 0.0f, 0.0f);
		return updateStatus(DllExports::GdipDrawString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect, NULL,
				brush ? brush->nativeBrush : NULL));
	}
	Status DrawString(const WCHAR *string, INT length,
			const Font *font, const PointF& origin,
			const StringFormat *stringFormat, const Brush *brush)
	{
		RectF layoutRect(origin.X, origin.Y, 0.0f, 0.0f);
		return updateStatus(DllExports::GdipDrawString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				brush ? brush->nativeBrush : NULL));
	}
	Status DrawString(const WCHAR *string, INT length,
			const Font *font, const RectF& layoutRect,
			const StringFormat *stringFormat, const Brush *brush)
	{
		return updateStatus(DllExports::GdipDrawString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				brush ? brush->nativeBrush : NULL));
	}
	Status EndContainer(GraphicsContainer state)
	{
		return updateStatus(DllExports::GdipEndContainer(
				nativeGraphics, state));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const PointF& destPoint,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestPoint(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoint, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Point& destPoint,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestPointI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoint, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const RectF& destRect,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestRect(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destRect, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Rect& destRect,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestRectI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destRect, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const PointF *destPoints, INT count,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestPoints(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoints, count, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Point *destPoints, INT count,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileDestPointsI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoints, count, callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const PointF& destPoint,
			const RectF& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestPoint(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoint, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Point& destPoint,
			const Rect& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestPointI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoint, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const RectF& destRect,
			const RectF& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestRect(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destRect, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Rect& destRect,
			const Rect& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestRectI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destRect, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const PointF* destPoints, INT count,
			const RectF& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestPoints(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoints, count, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status EnumerateMetafile(const Metafile *metafile,
			const Point* destPoints, INT count,
			const Rect& srcRect, Unit srcUnit,
			EnumerateMetafileProc callback,
			VOID *callbackData = NULL,
			ImageAttributes *imageAttributes = NULL)
	{
		return updateStatus(DllExports::GdipEnumerateMetafileSrcRectDestPointsI(
				nativeGraphics,
				metafile ? ((GpMetafile*) metafile->nativeImage) : NULL,
				destPoints, count, srcRect, srcUnit,
				callback, callbackData,
				imageAttributes ? imageAttributes->nativeImageAttributes : NULL));
	}
	Status ExcludeClip(const RectF& rect)
	{
		return updateStatus(DllExports::GdipSetClipRect(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				CombineModeExclude));
	}
	Status ExcludeClip(const Rect& rect)
	{
		return updateStatus(DllExports::GdipSetClipRectI(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				CombineModeExclude));
	}
	Status ExcludeClip(const Region *region)
	{
		return updateStatus(DllExports::GdipSetClipRegion(
				nativeGraphics,
				region ? region->nativeRegion : NULL,
				CombineModeExclude));
	}
	Status FillClosedCurve(const Brush *brush,
			const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipFillClosedCurve(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count));
	}
	Status FillClosedCurve(const Brush *brush,
			const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipFillClosedCurveI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count));
	}
	Status FillClosedCurve(const Brush *brush,
			const PointF *points, INT count,
			FillMode fillMode, REAL tension = 0.5f)
	{
		return updateStatus(DllExports::GdipFillClosedCurve2(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, tension, fillMode));
	}
	Status FillClosedCurve(const Brush *brush,
			const Point *points, INT count,
			FillMode fillMode, REAL tension = 0.5f)
	{
		return updateStatus(DllExports::GdipFillClosedCurve2I(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, tension, fillMode));
	}
	Status FillEllipse(const Brush *brush,
			REAL x, REAL y, REAL width, REAL height)
	{
		return updateStatus(DllExports::GdipFillEllipse(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height));
	}
	Status FillEllipse(const Brush *brush,
			INT x, INT y, INT width, INT height)
	{
		return updateStatus(DllExports::GdipFillEllipseI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height));
	}
	Status FillEllipse(const Brush *brush, const RectF& rect)
	{
		return updateStatus(DllExports::GdipFillEllipse(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status FillEllipse(const Brush *brush, const Rect& rect)
	{
		return updateStatus(DllExports::GdipFillEllipseI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status FillPath(const Brush *brush, const GraphicsPath *path)
	{
		return updateStatus(DllExports::GdipFillPath(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				path ? path->nativePath : NULL));
	}
	Status FillPie(const Brush *brush,
			REAL x, REAL y, REAL width, REAL height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipFillPie(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status FillPie(const Brush *brush, INT x, INT y, INT width, INT height,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipFillPieI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height, startAngle, sweepAngle));
	}
	Status FillPie(const Brush *brush, const RectF& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipFillPie(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status FillPie(const Brush *brush, const Rect& rect,
			REAL startAngle, REAL sweepAngle)
	{
		return updateStatus(DllExports::GdipFillPieI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height,
				startAngle, sweepAngle));
	}
	Status FillPolygon(const Brush *brush, const PointF *points, INT count)
	{
		return updateStatus(DllExports::GdipFillPolygon(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, FillModeAlternate));
	}
	Status FillPolygon(const Brush *brush, const Point *points, INT count)
	{
		return updateStatus(DllExports::GdipFillPolygonI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, FillModeAlternate));
	}
	Status FillPolygon(const Brush *brush, const PointF *points, INT count,
			FillMode fillMode)
	{
		return updateStatus(DllExports::GdipFillPolygon(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, fillMode));
	}
	Status FillPolygon(const Brush *brush, const Point *points, INT count,
			FillMode fillMode)
	{
		return updateStatus(DllExports::GdipFillPolygonI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				points, count, fillMode));
	}
	Status FillRectangle(const Brush *brush,
			REAL x, REAL y, REAL width, REAL height)
	{
		return updateStatus(DllExports::GdipFillRectangle(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height));
	}
	Status FillRectangle(const Brush *brush,
			INT x, INT y, INT width, INT height)
	{
		return updateStatus(DllExports::GdipFillRectangleI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				x, y, width, height));
	}
	Status FillRectangle(const Brush *brush, const RectF& rect)
	{
		return updateStatus(DllExports::GdipFillRectangle(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status FillRectangle(const Brush *brush, const Rect& rect)
	{
		return updateStatus(DllExports::GdipFillRectangleI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rect.X, rect.Y, rect.Width, rect.Height));
	}
	Status FillRectangles(const Brush *brush, const RectF *rects, INT count)
	{
		return updateStatus(DllExports::GdipFillRectangles(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rects, count));
	}
	Status FillRectangles(const Brush *brush, const Rect *rects, INT count)
	{
		return updateStatus(DllExports::GdipFillRectanglesI(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				rects, count));
	}
	Status FillRegion(const Brush *brush, const Region *region)
	{
		return updateStatus(DllExports::GdipFillRegion(
				nativeGraphics,
				brush ? brush->nativeBrush : NULL,
				region ? region->nativeRegion : NULL));
	}
	VOID Flush(FlushIntention intention = FlushIntentionFlush)
	{
		updateStatus(DllExports::GdipFlush(nativeGraphics, intention));
	}
	Status GetClip(Region *region) const
	{
		return updateStatus(DllExports::GdipGetClip(
				nativeGraphics,
				region ? region->nativeRegion : NULL));
	}
	Status GetClipBounds(RectF *rect) const
	{
		return updateStatus(DllExports::GdipGetClipBounds(
				nativeGraphics, rect));
	}
	Status GetClipBounds(Rect *rect) const
	{
		return updateStatus(DllExports::GdipGetClipBoundsI(
				nativeGraphics, rect));
	}
	CompositingMode GetCompositingMode() const
	{
		CompositingMode result = CompositingModeSourceOver;
		updateStatus(DllExports::GdipGetCompositingMode(
				nativeGraphics, &result));
		return result;
	}
	CompositingQuality GetCompositingQuality() const
	{
		CompositingQuality result = CompositingQualityDefault;
		updateStatus(DllExports::GdipGetCompositingQuality(
				nativeGraphics, &result));
		return result;
	}
	REAL GetDpiX() const
	{
		REAL result = 0.0f;
		updateStatus(DllExports::GdipGetDpiX(nativeGraphics, &result));
		return result;
	}
	REAL GetDpiY() const
	{
		REAL result = 0.0f;
		updateStatus(DllExports::GdipGetDpiY(nativeGraphics, &result));
		return result;
	}
	HDC GetHDC()
	{
		HDC result = NULL;
		updateStatus(DllExports::GdipGetDC(nativeGraphics, &result));
		return result;
	}
	InterpolationMode GetInterpolationMode() const
	{
		InterpolationMode result = InterpolationModeDefault;
		updateStatus(DllExports::GdipGetInterpolationMode(
				nativeGraphics, &result));
		return result;
	}
	Status GetLastStatus() const
	{
		Status result = lastStatus;
		lastStatus = Ok;
		return result;
	}
	Status GetNearestColor(Color *color) const
	{
		return updateStatus(DllExports::GdipGetNearestColor(
				nativeGraphics, color ? &color->Value : NULL));
	}
	REAL GetPageScale() const
	{
		REAL result = 0.0f;
		updateStatus(DllExports::GdipGetPageScale(
				nativeGraphics, &result));
		return result;
	}
	Unit GetPageUnit() const
	{
		Unit result = UnitWorld;
		updateStatus(DllExports::GdipGetPageUnit(
				nativeGraphics, &result));
		return result;
	}
	PixelOffsetMode GetPixelOffsetMode() const
	{
		PixelOffsetMode result = PixelOffsetModeDefault;
		updateStatus(DllExports::GdipGetPixelOffsetMode(
				nativeGraphics, &result));
		return result;
	}
	Status GetRenderingOrigin(INT *x, INT *y) const
	{
		return updateStatus(DllExports::GdipGetRenderingOrigin(
				nativeGraphics, x, y));
	}
	SmoothingMode GetSmoothingMode() const
	{
		SmoothingMode result = SmoothingModeDefault;
		updateStatus(DllExports::GdipGetSmoothingMode(
				nativeGraphics, &result));
		return result;
	}
	UINT GetTextContrast() const
	{
		UINT result = 0;
		updateStatus(DllExports::GdipGetTextContrast(
				nativeGraphics, &result));
		return result;
	}
	TextRenderingHint GetTextRenderingHint() const
	{
		TextRenderingHint result = TextRenderingHintSystemDefault;
		updateStatus(DllExports::GdipGetTextRenderingHint(
				nativeGraphics, &result));
		return result;
	}
	Status GetTransform(Matrix *matrix) const
	{
		return updateStatus(DllExports::GdipGetWorldTransform(
				nativeGraphics,
				matrix ? matrix->nativeMatrix : NULL));
	}
	Status GetVisibleClipBounds(RectF *rect) const
	{
		return updateStatus(DllExports::GdipGetVisibleClipBounds(
				nativeGraphics, rect));
	}
	Status GetVisibleClipBounds(Rect *rect) const
	{
		return updateStatus(DllExports::GdipGetVisibleClipBoundsI(
				nativeGraphics, rect));
	}
	Status IntersectClip(const RectF& rect)
	{
		return updateStatus(DllExports::GdipSetClipRect(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				CombineModeIntersect));
	}
	Status IntersectClip(const Rect& rect)
	{
		return updateStatus(DllExports::GdipSetClipRectI(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				CombineModeIntersect));
	}
	Status IntersectClip(const Region *region)
	{
		return updateStatus(DllExports::GdipSetClipRegion(
				nativeGraphics,
				region ? region->nativeRegion : NULL,
				CombineModeIntersect));
	}
	BOOL IsClipEmpty() const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsClipEmpty(
				nativeGraphics, &result));
		return result;
	}
	BOOL IsVisible(REAL x, REAL y) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisiblePoint(
				nativeGraphics, x, y, &result));
		return result;
	}
	BOOL IsVisible(INT x, INT y) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisiblePointI(
				nativeGraphics, x, y, &result));
		return result;
	}
	BOOL IsVisible(const PointF& point) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisiblePoint(
				nativeGraphics, point.X, point.Y, &result));
		return result;
	}
	BOOL IsVisible(const Point& point) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisiblePointI(
				nativeGraphics, point.X, point.Y, &result));
		return result;
	}
	BOOL IsVisible(REAL x, REAL y, REAL width, REAL height) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisibleRect(
				nativeGraphics, x, y, width, height, &result));
		return result;
	}
	BOOL IsVisible(INT x, INT y, INT width, INT height) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisibleRectI(
				nativeGraphics, x, y, width, height, &result));
		return result;
	}
	BOOL IsVisible(const RectF& rect) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisibleRect(
				nativeGraphics, rect.X, rect.Y,
				rect.Width, rect.Height, &result));
		return result;
	}
	BOOL IsVisible(const Rect& rect) const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisibleRectI(
				nativeGraphics, rect.X, rect.Y,
				rect.Width, rect.Height, &result));
		return result;
	}
	BOOL IsVisibleClipEmpty() const
	{
		BOOL result = FALSE;
		updateStatus(DllExports::GdipIsVisibleClipEmpty(
				nativeGraphics, &result));
		return result;
	}
	Status MeasureCharacterRanges(const WCHAR *string, INT length,
			const Font *font, const RectF& layoutRect,
			const StringFormat *stringFormat,
			INT regionCount, Region *regions) const
	{
		if (regionCount <= 0 || !regions)
			return lastStatus = InvalidParameter;

		GpRegion **nativeRegionArray = (GpRegion**)
			DllExports::GdipAlloc(regionCount * sizeof(GpRegion*));
		if (!nativeRegionArray)
			return lastStatus = OutOfMemory;
		for (int i = 0; i < regionCount; ++i) {
			nativeRegionArray[i] = regions[i].nativeRegion;
		}
		Status status = updateStatus(DllExports::GdipMeasureCharacterRanges(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				regionCount, nativeRegionArray));
		DllExports::GdipFree(nativeRegionArray);
		return status;
	}
	Status MeasureDriverString(const UINT16 *text, INT length,
			const Font *font, const PointF *positions, INT flags,
			const Matrix *matrix, RectF *boundingBox) const
	{
		return updateStatus(DllExports::GdipMeasureDriverString(
				nativeGraphics, text, length,
				font ? font->nativeFont : NULL,
				positions, flags,
				matrix ? matrix->nativeMatrix : NULL,
				boundingBox));
	}
	Status MeasureString(const WCHAR *string, INT length,
			const Font *font, const RectF& layoutRect,
			RectF *boundingBox) const
	{
		return updateStatus(DllExports::GdipMeasureString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect, NULL, boundingBox, NULL, NULL));
	}
	Status MeasureString(const WCHAR *string, INT length,
			const Font *font, const RectF& layoutRect,
			const StringFormat *stringFormat, RectF *boundingBox,
			INT *codepointsFitted = NULL,
			INT *linesFitted = NULL) const
	{
		return updateStatus(DllExports::GdipMeasureString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				boundingBox, codepointsFitted, linesFitted));
	}
	Status MeasureString(const WCHAR *string, INT length,
			const Font *font, const SizeF& layoutRectSize,
			const StringFormat *stringFormat, SizeF *size,
			INT *codepointsFitted = NULL,
			INT *linesFitted = NULL) const
	{
		if (!size) return lastStatus = InvalidParameter;
		RectF layoutRect(PointF(0.0f, 0.0f), layoutRectSize);
		RectF boundingBox;
		Status status = updateStatus(DllExports::GdipMeasureString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				&boundingBox, codepointsFitted, linesFitted));
		boundingBox.GetSize(size);
		return status;
	}
	Status MeasureString(const WCHAR *string, INT length,
			const Font *font, const PointF& origin,
			RectF *boundingBox) const
	{
		RectF layoutRect(origin, SizeF(0.0f, 0.0f));
		return updateStatus(DllExports::GdipMeasureString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect, NULL, boundingBox, NULL, NULL));
	}
	Status MeasureString(const WCHAR *string, INT length,
			const Font *font, const PointF& origin,
			const StringFormat *stringFormat,
			RectF *boundingBox) const
	{
		RectF layoutRect(origin, SizeF(0.0f, 0.0f));
		return updateStatus(DllExports::GdipMeasureString(
				nativeGraphics, string, length,
				font ? font->nativeFont : NULL,
				&layoutRect,
				stringFormat ? stringFormat->nativeStringFormat : NULL,
				boundingBox, NULL, NULL));
	}
	Status MultiplyTransform(const Matrix *matrix,
			MatrixOrder order = MatrixOrderPrepend)
	{
		return updateStatus(DllExports::GdipMultiplyWorldTransform(
				nativeGraphics,
				matrix ? matrix->nativeMatrix : NULL, order));
	}
	VOID ReleaseHDC(HDC hdc)
	{
		updateStatus(DllExports::GdipReleaseDC(nativeGraphics, hdc));
	}
	Status ResetClip()
	{
		return updateStatus(DllExports::GdipResetClip(nativeGraphics));
	}
	Status ResetTransform()
	{
		return updateStatus(DllExports::GdipResetWorldTransform(
				nativeGraphics));
	}
	Status Restore(GraphicsState state)
	{
		return updateStatus(DllExports::GdipRestoreGraphics(
				nativeGraphics, state));
	}
	Status RotateTransform(REAL angle,
			MatrixOrder order = MatrixOrderPrepend)
	{
		return updateStatus(DllExports::GdipRotateWorldTransform(
				nativeGraphics, angle, order));
	}
	GraphicsState Save() const
	{
		GraphicsState result = 0;
		updateStatus(DllExports::GdipSaveGraphics(
				nativeGraphics, &result));
		return result;
	}
	Status ScaleTransform(REAL sx, REAL sy,
			MatrixOrder order = MatrixOrderPrepend)
	{
		return updateStatus(DllExports::GdipScaleWorldTransform(
				nativeGraphics, sx, sy, order));
	}
	VOID SetAbort()
	{
		updateStatus(NotImplemented);
	}
	Status SetClip(const Graphics *g,
			CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipGraphics(
				nativeGraphics, g ? g->nativeGraphics : NULL,
				combineMode));
	}
	Status SetClip(const RectF& rect,
			CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipRect(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				combineMode));
	}
	Status SetClip(const Rect& rect,
			CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipRectI(
				nativeGraphics,
				rect.X, rect.Y, rect.Width, rect.Height,
				combineMode));
	}
	Status SetClip(const GraphicsPath *path,
			CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipPath(
				nativeGraphics,
				path ? path->nativePath : NULL,
				combineMode));
	}
	Status SetClip(const Region *region,
			CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipRegion(
				nativeGraphics,
				region ? region->nativeRegion : NULL,
				combineMode));
	}
	Status SetClip(HRGN hRgn, CombineMode combineMode = CombineModeReplace)
	{
		return updateStatus(DllExports::GdipSetClipHrgn(
				nativeGraphics, hRgn, combineMode));
	}
	Status SetCompositingMode(CompositingMode compositingMode)
	{
		return updateStatus(DllExports::GdipSetCompositingMode(
				nativeGraphics, compositingMode));
	}
	Status SetCompositingQuality(CompositingQuality compositingQuality)
	{
		return updateStatus(DllExports::GdipSetCompositingQuality(
				nativeGraphics, compositingQuality));
	}
	Status SetInterpolationMode(InterpolationMode interpolationMode)
	{
		return updateStatus(DllExports::GdipSetInterpolationMode(
				nativeGraphics, interpolationMode));
	}
	Status SetPageScale(REAL scale)
	{
		return updateStatus(DllExports::GdipSetPageScale(
				nativeGraphics, scale));
	}
	Status SetPageUnit(Unit unit)
	{
		return updateStatus(DllExports::GdipSetPageUnit(
				nativeGraphics, unit));
	}
	Status SetPixelOffsetMode(PixelOffsetMode pixelOffsetMode)
	{
		return updateStatus(DllExports::GdipSetPixelOffsetMode(
				nativeGraphics, pixelOffsetMode));
	}
	Status SetRenderingOrigin(INT x, INT y)
	{
		return updateStatus(DllExports::GdipSetRenderingOrigin(
				nativeGraphics, x, y));
	}
	Status SetSmoothingMode(SmoothingMode smoothingMode)
	{
		return updateStatus(DllExports::GdipSetSmoothingMode(
				nativeGraphics, smoothingMode));
	}
	Status SetTextContrast(UINT contrast)
	{
		return updateStatus(DllExports::GdipSetTextContrast(
				nativeGraphics, contrast));
	}
	Status SetTextRenderingHint(TextRenderingHint textRenderingHint)
	{
		return updateStatus(DllExports::GdipSetTextRenderingHint(
				nativeGraphics, textRenderingHint));
	}
	Status SetTransform(const Matrix *matrix)
	{
		return updateStatus(DllExports::GdipSetWorldTransform(
				nativeGraphics,
				matrix ? matrix->nativeMatrix : NULL));
	}
	Status TransformPoints(CoordinateSpace destSpace,
			CoordinateSpace srcSpace,
			PointF *pts, INT count) const
	{
		return updateStatus(DllExports::GdipTransformPoints(
				nativeGraphics, destSpace, srcSpace,
				pts, count));
	}
	Status TransformPoints(CoordinateSpace destSpace,
			CoordinateSpace srcSpace,
			Point *pts, INT count) const
	{
		return updateStatus(DllExports::GdipTransformPointsI(
				nativeGraphics, destSpace, srcSpace,
				pts, count));
	}
	Status TranslateClip(REAL dx, REAL dy)
	{
		return updateStatus(DllExports::GdipTranslateClip(
				nativeGraphics, dx, dy));
	}
	Status TranslateClip(INT dx, INT dy)
	{
		return updateStatus(DllExports::GdipTranslateClipI(
				nativeGraphics, dx, dy));
	}
	Status TranslateTransform(REAL dx, REAL dy,
			MatrixOrder order = MatrixOrderPrepend)
	{
		return updateStatus(DllExports::GdipTranslateWorldTransform(
				nativeGraphics, dx, dy, order));
	}

private:
	Graphics(const Graphics&);
	Graphics& operator=(const Graphics&);

	Status updateStatus(Status newStatus) const
	{
		if (newStatus != Ok) lastStatus = newStatus;
		return newStatus;
	}

	GpGraphics *nativeGraphics;
	mutable Status lastStatus;
};

#endif /* __GDIPLUS_GRAPHICS_H */