graphics.py
49.9 KB
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
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
#----------------------------------------------------------------------
# Name: wx.lib.graphics
# Purpose: A wx.GraphicsContext-like API implemented using wx.lib.wxcairo
#
# Author: Robin Dunn
#
# Created: 15-Sept-2008
# RCS-ID: $Id$
# Copyright: (c) 2008 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------
"""
This module implements an API similar to wx.GraphicsContext and the
related classes. In this case the implementation for all platforms is
done using Cairo, via the wx.lib.wxcairo glue module.
Why do this? Why not just use wx.GraphicsContext everywhere? Using
Cairo on every platform enables us to more easily be totally
consistent on all platforms. Implementing it in Python means that it
is easy to fill in the gaps in functionality with features of Cairo
that GraphicsContext may not provide, like converting text to a path,
using compositing operators, or being able to provide an
implementation for things like context.Clear().
Why not just use Cairo directly? There may be times when you do want
to use wx.GrpahicsContext, so being able to share code between that
and this implementation is nice. Also, I like the class hierarchy and
API exposed by the wx.GraphicsContext classes a little better than
Cairo's.
"""
import cairo
import math
import wx
import wx.lib.wxcairo
# Other ideas:
# 1. TextToPath (or maybe make this part of the Path class
# 3. Relative moves, lines, curves, etc.
# 5. maybe expose cairo_paint, cairo_paint_with_alpha, cairo_mask?
#---------------------------------------------------------------------------
# Image surface formats
FORMAT_ARGB32 = cairo.FORMAT_ARGB32
FORMAT_RGB24 = cairo.FORMAT_RGB24
FORMAT_A8 = cairo.FORMAT_A8
FORMAT_A1 = cairo.FORMAT_A1
#---------------------------------------------------------------------------
# Compositing operators. See http://cairographics.org/operators
# clear destination layer (bounded)
OPERATOR_CLEAR = cairo.OPERATOR_CLEAR
# replace destination layer (bounded)
OPERATOR_SOURCE = cairo.OPERATOR_SOURCE
# draw source layer on top of destination layer (bounded)
OPERATOR_OVER = cairo.OPERATOR_OVER
# draw source where there was destination content (unbounded)
OPERATOR_IN = cairo.OPERATOR_IN
# draw source where there was no destination content (unbounded)
OPERATOR_OUT = cairo.OPERATOR_OUT
# draw source on top of destination content and only there
OPERATOR_ATOP = cairo.OPERATOR_ATOP
# ignore the source
OPERATOR_DEST = cairo.OPERATOR_DEST
# draw destination on top of source
OPERATOR_DEST_OVER = cairo.OPERATOR_DEST_OVER
# leave destination only where there was source content (unbounded)
OPERATOR_DEST_IN = cairo.OPERATOR_DEST_IN
# leave destination only where there was no source content
OPERATOR_DEST_OUT = cairo.OPERATOR_DEST_OUT
# leave destination on top of source content and only there (unbounded)
OPERATOR_DEST_ATOP = cairo.OPERATOR_DEST_ATOP
# source and destination are shown where there is only one of them
OPERATOR_XOR = cairo.OPERATOR_XOR
# source and destination layers are accumulated
OPERATOR_ADD = cairo.OPERATOR_ADD
# like over, but assuming source and dest are disjoint geometries
OPERATOR_SATURATE = cairo.OPERATOR_SATURATE
#---------------------------------------------------------------------------
# Anti-alias modes. Note that according to the Cairo docs none of the
# current backends support the the SUBPIXEL mode.
# Use the default antialiasing for the subsystem and target device
ANTIALIAS_DEFAULT = cairo.ANTIALIAS_DEFAULT
# Use a bilevel alpha mask
ANTIALIAS_NONE = cairo.ANTIALIAS_NONE
# Perform single-color antialiasing (using shades of gray for black
# text on a white background, for example).
ANTIALIAS_GRAY = cairo.ANTIALIAS_GRAY
# Perform antialiasing by taking advantage of the order of subpixel
# elements on devices such as LCD panels
ANTIALIAS_SUBPIXEL = cairo.ANTIALIAS_SUBPIXEL
#---------------------------------------------------------------------------
# A decorator that makes creating properties a little cleaner and simpler
def Property( function ):
return property( **function() )
#---------------------------------------------------------------------------
NullGraphicsPen = None
NullGraphicsBrush = None
NullGraphicsFont = None
NullGraphicsMatrix = None
NullGraphicsPath = None
class GraphicsObject(object):
# This probably isn't needed at all anymore since we'll just use
# None insead of the Null objects, but we'll keep it anyway in
# case it's needed to help write compatible code.
def IsNull(self):
return False
#---------------------------------------------------------------------------
class GraphicsPen(GraphicsObject):
"""
A Pen is used to define the properties of how a stroke is drawn.
"""
_capMap = { wx.CAP_BUTT : cairo.LINE_CAP_BUTT,
wx.CAP_ROUND : cairo.LINE_CAP_ROUND,
wx.CAP_PROJECTING : cairo.LINE_CAP_SQUARE }
_joinMap = { wx.JOIN_BEVEL : cairo.LINE_JOIN_BEVEL,
wx.JOIN_MITER : cairo.LINE_JOIN_MITER,
wx.JOIN_ROUND : cairo.LINE_JOIN_ROUND }
def __init__(self, colour=wx.BLACK, width=1, style=wx.SOLID):
GraphicsObject.__init__(self)
self._colour = _makeColour(colour)
self._width = width
self._style = style
self._cap = wx.CAP_ROUND
self._dashes = []
self._join = wx.JOIN_ROUND
self._stipple = None
self._pattern = None
@staticmethod
def CreateFromPen(pen):
"""Convert a wx.Pen to a GraphicsPen"""
assert isinstance(pen, wx.Pen)
p = GraphicsPen(pen.Colour, pen.Width, pen.Style)
p._cap = pen.Cap
p._dashes = pen.Dashes
p._join = pen.Join
return p
@staticmethod
def CreateFromPattern(pattern, width=1):
"""
Create a Pen directly from a Cairo Pattern object. This is
similar to using a stipple bitmap, but saves a step, and
patterns can include gradients, etc.
"""
p = GraphicsPen(wx.BLACK, width, wx.STIPPLE)
p._pattern = pattern
return p
@Property
def Colour():
def fget(self):
return self._colour
def fset(self, value):
self._colour = value
return locals()
@Property
def Width():
def fget(self):
return self._width
def fset(self, value):
self._width = value
return locals()
@Property
def Style():
def fget(self):
return self._style
def fset(self, value):
self._style = value
return locals()
@Property
def Cap():
def fget(self):
return self._cap
def fset(self, value):
self._cap = value
return locals()
@Property
def Dashes():
def fget(self):
return self._dashes
def fset(self, value):
self._dashes = value
return locals()
@Property
def Join():
def fget(self):
return self._join
def fset(self, value):
self._join = value
return locals()
@Property
def Stipple():
def fget(self):
return self._stipple
def fset(self, value):
self._stipple = value
self._pattern = None
return locals()
@Property
def Pattern():
def fget(self):
return self._pattern
def fset(self, value):
self._pattern = value
return locals()
def Apply(self, ctx):
# set up the context with this pen's parameters
ctx = ctx.GetNativeContext()
ctx.set_line_width(self._width)
ctx.set_line_cap(self._capMap[self._cap])
ctx.set_line_join(self._joinMap[self._join])
ctx.set_dash([])
if self._style == wx.SOLID:
ctx.set_source_rgba( *_colourToValues(self._colour) )
elif self._style == wx.STIPPLE:
if not self._pattern and self._stipple:
# make a pattern from the stipple bitmap
img = wx.lib.wxcairo.ImageSurfaceFromBitmap(self._stipple)
self._pattern = cairo.SurfacePattern(img)
self._pattern.set_extend(cairo.EXTEND_REPEAT)
ctx.set_source(self._pattern)
elif self._style == wx.USER_DASH:
ctx.set_source_rgba( *_colourToValues(self._colour) )
ctx.set_dash(self._dashes)
elif self._style in [wx.DOT, wx.DOT_DASH, wx.LONG_DASH, wx.SHORT_DASH]:
ctx.set_source_rgba( *_colourToValues(self._colour) )
ctx.set_dash( _stdDashes(self._style, self._width) )
elif self._style in [wx.BDIAGONAL_HATCH, wx.CROSSDIAG_HATCH, wx.FDIAGONAL_HATCH,
wx.CROSS_HATCH, wx.HORIZONTAL_HATCH, wx.VERTICAL_HATCH]:
pass # TODO make a stock pattern...
#---------------------------------------------------------------------------
class GraphicsBrush(GraphicsObject):
"""
A Brush is used to define how fills are painted. They can have
either a solid fill (colors with or without alpha), a stipple
created from a wx.Bitmap, or a cairo Pattern object.
"""
def __init__(self, colour=wx.BLACK, style=wx.SOLID):
self._colour = _makeColour(colour)
self._style = style
self._stipple = None
self._pattern = None
@staticmethod
def CreateFromBrush(brush):
"""Converts a wx.Brush to a GraphicsBrush"""
assert isinstance(brush, wx.Brush)
b = GraphicsBrush(brush.Colour, brush.Style)
if brush.Style == wx.STIPPLE:
b._stipple = brush.Stipple
else:
b._stipple = None
return b
@staticmethod
def CreateFromPattern(pattern):
"""
Create a Brush directly from a Cairo Pattern object. This is
similar to using a stipple bitmap, but saves a step, and
patterns can include gradients, etc.
"""
b = GraphicsBrush(style=wx.STIPPLE)
b._pattern = pattern
return b
@Property
def Colour():
def fget(self):
return self._colour
def fset(self, value):
self._colour = value
return locals()
@Property
def Style():
def fget(self):
return self._style
def fset(self, value):
self._style = value
return locals()
@Property
def Stipple():
def fget(self):
return self._stipple
def fset(self, value):
self._stipple = value
self._pattern = None
return locals()
@Property
def Pattern():
def fget(self):
return self._pattern
def fset(self, value):
self._pattern = value
return locals()
def Apply(self, ctx):
ctx = ctx.GetNativeContext()
if self._style == wx.SOLID:
ctx.set_source_rgba( *_colourToValues(self._colour) )
elif self._style == wx.STIPPLE:
if not self._pattern and self._stipple:
# make a pattern from the stipple bitmap
img = wx.lib.wxcairo.ImageSurfaceFromBitmap(self._stipple)
self._pattern = cairo.SurfacePattern(img)
self._pattern.set_extend(cairo.EXTEND_REPEAT)
ctx.set_source(self._pattern)
#---------------------------------------------------------------------------
class GraphicsFont(GraphicsObject):
"""
"""
def __init__(self):
# TODO: Should we be able to create a GrpahicsFont from other
# properties, or will it always be via a wx.Font? What about
# creating from a cairo.FontFace or cairo.ScaledFont?
self._font = None
self._colour = None
self._pointSize = None
self._fontface = None
# To remain consistent with the GC API a color is associated
# with the font, and nothing else. Since this is Cairo and
# it's easy to do, we'll also allow a brush to be used...
self._brush = None
def IsNull(self):
return self._font is None
@staticmethod
def CreateFromFont(font, colour=None):
f = GraphicsFont()
f._font = font
f._colour = _makeColour(colour)
f._pointSize = font.GetPointSize()
f._fontface = wx.lib.wxcairo.FontFaceFromFont(font)
return f
@Property
def Colour():
def fget(self):
return self._colour
def fset(self, value):
self._colour = value
return locals()
@Property
def PointSize():
def fget(self):
return self._pointSize
def fset(self, value):
self._pointSize = value
return locals()
@Property
def Brush():
def fget(self):
return self._brush
def fset(self, value):
self._brush = value
return locals()
def Apply(self, ctx, colour):
nctx = ctx.GetNativeContext()
if self._brush is not None:
self._brush.Apply(ctx)
else:
if colour is None: colour = wx.BLACK
nctx.set_source_rgba( *_colourToValues(colour) )
nctx.set_font_face(self._fontface)
nctx.set_font_size(self._pointSize)
#---------------------------------------------------------------------------
class GraphicsBitmap(GraphicsObject):
"""
A GraphicsBitmap is a wrapper around a cairo ImageSurface. It can
be used as a source for drawing images, or as a target of drawing
operations.
"""
def __init__(self, width=-1, height=-1, format=FORMAT_ARGB32):
"""Create either a NULL GraphicsBitmap or an empty one if a size is given"""
self._surface = None
if width > 0 and height > 0:
self._surface = cairo.ImageSurface(format, width, height)
def IsNull(self):
return self._surface is None
@staticmethod
def CreateFromBitmap(bitmap):
"""Create a GraphicsBitmap from a wx.Bitmap"""
b = GraphicsBitmap()
b._surface = wx.lib.wxcairo.ImageSurfaceFromBitmap(bitmap)
return b
@staticmethod
def CreateFromPNG(filename):
"""Create a GraphicsBitmap from a PNG file"""
b = GraphicsBitmap()
b._surface = cairo.ImageSurface.create_from_png(filename)
return b
@staticmethod
def CreateFromSurface(surface):
"""Use an existing cairo ImageSurface as a GraphicsBitmap"""
b = GraphicsBitmap()
b._surface = surface
return b
@staticmethod
def CreateFromBuffer(buffer, width, height,
format=FORMAT_ARGB32, stride=-1):
"""
Creates a GraphicsBitmap that uses the given buffer object as
the pixel storage. This means that the current contents of
the buffer will be the initial state of the bitmap, and
anything drawn to this surface will be stored in the given
buffer.
"""
b = GraphicsBitmap()
if stride == -1:
try:
stride = cairo.ImageSurface.format_stride_for_width(format, width)
except AttributeError:
stride = width * 4
b._surface = cairo.ImageSurface.create_for_data(
buffer, format, width, height, stride)
# save a reference to the buffer to ensure that it lives as
# long as this object does
b._buffer = buffer
return b
@Property
def Width():
def fget(self):
return self._surface.get_width()
return locals()
@Property
def Height():
def fget(self):
return self._surface.get_height()
return locals()
@Property
def Size():
def fget(self):
return (self.Width, self.Height)
return locals()
@Property
def Format():
def fget(self):
return self._surface.get_format()
return locals()
@Property
def Stride():
def fget(self):
return self._surface.get_stride()
return locals()
@Property
def Surface():
def fget(self):
return self._surface
return locals()
#---------------------------------------------------------------------------
class GraphicsMatrix(GraphicsObject):
"""
A matrix holds an affine transformations, such as a scale,
rotation, shear, or a combination of these, and is used to convert
between different coordinante spaces.
"""
def __init__(self):
self._matrix = cairo.Matrix()
def Set(self, a=1.0, b=0.0, c=0.0, d=1.0, tx=0.0, ty=0.0):
"""Set the componenets of the matrix by value, default values
are the identity matrix."""
self._matrix = cairo.Matrix(a, b, c, d, tx, ty)
def Get(self):
"""Return the component values of the matrix as a tuple."""
return tuple(self._matrix)
def GetNativeMatrix(self):
return self._matrix
def Concat(self, matrix):
"""Concatenates the matrix passed with the current matrix."""
self._matrix = self._matrix * matrix._matrix
return self
def Invert(self):
"""Inverts the matrix."""
self._matrix.invert()
return self
def IsEqual(self, matrix):
"""Returns True if the elements of the transformation matricies are equal."""
return self._matrix == matrix._matrix
def IsIdentity():
"""Returns True if this is the identity matrix."""
return self._matrix == cairo.Matrix()
def Rotate(self, angle):
"""Rotates the matrix in radians"""
self._matrix.rotate(angle)
return self
def Scale(self, xScale, yScale):
"""Scale the matrix"""
self._matrix.scale(xScale, yScale)
return self
def Translate(self, dx, dy):
"""Translate the metrix. This shifts the origin."""
self._matrix.translate(dx, dy)
return self
def TransformPoint(self, x, y):
"""Applies this matrix to a point and returns the result"""
return self._matrix.transform_point(x, y)
def TransformDistance(self, dx, dy):
"""
Applies this matrix to a distance (ie. performs all transforms
except translations.)
"""
return self._matrix.transform_distance(dx, dy)
def Clone(self):
m = GraphicsMatrix()
m.Set(*self.Get())
return m
#---------------------------------------------------------------------------
class GraphicsPath(GraphicsObject):
"""
A GraphicsPath is a representaion of a geometric path, essentially
a collection of lines and curves. Paths can be used to define
areas to be stroked and filled on a GraphicsContext.
"""
def __init__(self):
# A path is essentially just a context that we use just for
# collecting path moves, lines, and curves in order to apply
# them to the real context. So we'll use a 1x1 image surface
# for the backend, since we won't ever actually use it for
# rendering in this context.
surface = cairo.ImageSurface(FORMAT_ARGB32, 1, 1)
self._pathContext = cairo.Context(surface)
def AddArc(self, x, y, radius, startAngle, endAngle, clockwise=True):
"""
Adds an arc of a circle centering at (x,y) with radius, from
startAngle to endAngle.
"""
# clockwise means positive in our system (y pointing downwards)
if clockwise or endAngle-startAngle >= 2*math.pi:
self._pathContext.arc(x, y, radius, startAngle, endAngle)
else:
self._pathContext.arc_negative(x, y, radius, startAngle, endAngle)
return self
def AddArcToPoint(self, x1, y1 , x2, y2, radius ):
"""
Adds a an arc to two tangents connecting (current) to (x1,y1)
and (x1,y1) to (x2,y2), also a straight line from (current) to
(x1,y1)
"""
current = wx.Point2D(*self.GetCurrentPoint())
p1 = wx.Point2D(x1, y1)
p2 = wx.Point2D(x2, y2)
v1 = current - p1
v1.Normalize()
v2 = p2 - p1
v2.Normalize()
alpha = v1.GetVectorAngle() - v2.GetVectorAngle()
if alpha < 0:
alpha = 360 + alpha
alpha = math.radians(alpha)
dist = radius / math.sin(alpha/2) * math.cos(alpha/2)
# calculate tangential points
t1 = (v1 * dist) + p1
t2 = (v2 * dist) + p1
nv1 = wx.Point2D(*v1.Get())
nv1.SetVectorAngle(v1.GetVectorAngle() - 90)
c = t1 + nv1 * radius
a1 = v1.GetVectorAngle() + 90
a2 = v2.GetVectorAngle() - 90
self.AddLineToPoint(t1.x, t1.y)
self.AddArc(c.x, c.y, radius, math.radians(a1), math.radians(a2), True)
self.AddLineToPoint(p2.x, p2.y)
return self
def AddCircle(self, x, y, radius):
"""
Appends a new closed sub-path as a circle around (x,y).
"""
self.MoveToPoint(x + radius, y)
self.AddArc( x, y, radius, 0, 2*math.pi, False)
self.CloseSubpath()
return self
def AddCurveToPoint(self, cx1, cy1, cx2, cy2, x, y):
"""
Adds a cubic Bezier curve from the current point, using two
control points and an end point.
"""
self._pathContext.curve_to(cx1, cy1, cx2, cy2, x, y)
return self
def AddEllipse(self, x, y, w, h):
"""
Appends an elipse fitting into the given rectangle as a closed sub-path.
"""
rw = w / 2.0
rh = h / 2.0
xc = x + rw
yc = y + rh
m = GraphicsMatrix()
m.Translate(xc, yc)
m.Scale(rw / rh, 1.0)
p = GraphicsPath()
p.AddCircle(0,0, rh)
p.Transform(m)
self.AddPath(p)
return self
def AddLineToPoint(self, x, y):
"""
Adds a straight line from the current point to (x,y)
"""
self._pathContext.line_to(x, y)
return self
def AddPath(self, path):
"""
Appends the given path to this path.
"""
self._pathContext.append_path(path.GetNativePath())
return self
def AddQuadCurveToPoint(self, cx, cy, x, y):
"""
Adds a quadratic Bexier curve from the current point, using a
control point and an end point.
"""
# calculate using degree elevation to a cubic bezier
start = wx.Point2D()
start.x, start.y = self.GetCurrentPoint()
end = wx.Point2D(x, y)
c = wx.Point2D(cx, cy)
c1 = start * (1/3.0) + c * (2/3.0)
c2 = c * (2/3.0) + end * (1/3.0)
self.AddCurveToPoint(c1.x, c1.y, c2.x, c2.y, x, y);
return self
def AddRectangle(self, x, y, w, h):
"""
Adds a new rectanlge as a closed sub-path.
"""
self._pathContext.rectangle(x, y, w, h)
return self
def AddRoundedRectangle(self, x, y, w, h, radius):
"""
Adds a new rounded rectanlge as a closed sub-path.
"""
if radius == 0:
self.AddRectangle(x,y,w,h)
else:
self.MoveToPoint( x + w, y + h / 2.0)
self.AddArcToPoint(x + w, y + h, x + w / 2.0, y + h, radius)
self.AddArcToPoint(x, y + h, x, y + h / 2.0, radius)
self.AddArcToPoint(x, y , x + w / 2.0, y, radius)
self.AddArcToPoint(x + w, y, x + w, y + h / 2.0, radius)
self.CloseSubpath()
return self
def CloseSubpath(self):
"""
Adds a line segment to the path from the current point to the
beginning of the current sub-path, and closes this sub-path.
"""
self._pathContext.close_path()
return self
def Contains(self, x, y, fillStyle=wx.ODDEVEN_RULE):
"""
Returns True if the point lies within the path.
"""
d = { wx.WINDING_RULE : cairo.FILL_RULE_WINDING,
wx.ODDEVEN_RULE : cairo.FILL_RULE_EVEN_ODD }
rule = d[fillStyle]
self._pathContext.set_fill_rule(rule)
return self._pathContext.in_stroke(x,y) or self._pathContext.in_fill(x,y)
def GetCurrentPoint(self):
"""
Gets the current point of the path, which is conceptually the
final point reached by the last path operation.
"""
return self._pathContext.get_current_point()
def GetNativePath(self):
"""
Returns the path as a cairo.Path object.
"""
return self._pathContext.copy_path()
def MoveToPoint(self, x, y):
"""
Begins a new sub-path at (x,y) by moving the "current point" there.
"""
self._pathContext.move_to(x, y)
return self
def Transform(self, matrix):
"""
Transforms each point in this path by the matirx
"""
# as we don't have a true path object, we have to apply the
# inverse matrix to the context
# TODO: should we clone the matrix before inverting it?
m = matrix.GetNativeMatrix()
m.invert()
self._pathContext.transform(m)
return self
def Clone(self):
"""
Return a new path initialized with the current contents of this path.
"""
p = GraphicsPath()
p.AddPath(self)
return p
def GetBox(self):
"""
Return the bounding box enclosing all points on this path.
"""
x1,y1,x2,y2 = self._pathContext.stroke_extents()
if x2 < x1:
x = x2
w = x1 - x2
else:
x = x1
w = x2 - x1
if y2 < y1:
y = y2
h = y1 - y2
else:
y = y1
h = y2 - y1
return (x, y, w, h)
#---------------------------------------------------------------------------
class GraphicsGradientStop(object):
"""
This class represents a single color-stop in a gradient brush. The
position is a floating poitn value between zero and 1.0 which represents
the distance between the gradient's starting point and ending point.
"""
def __init__(self, colour=wx.TransparentColour, pos=0.0):
self.SetColour(colour)
self.SetPosition(pos)
def GetColour(self):
return self._colour
def SetColour(self, value):
value = _makeColour(value)
assert isinstance(value, wx.Colour)
self._colour = value
Colour = property(GetColour, SetColour)
def GetPosition(self):
return self._pos
def SetPosition(self, value):
assert value >= 0.0 and value <= 1.0
self._pos = value
Position = property(GetPosition, SetPosition)
class GraphicsGradientStops(object):
"""
An ordered collection of gradient color stops for a gradient brush. There
is always at least the starting stop and the ending stop in the collection.
"""
def __init__(self, startColour=wx.TransparentColour,
endColour=wx.TransparentColour):
self._stops = list()
self.Add(startColour, 0.0)
self.Add(endColour, 1.0)
def Add(self, *args):
"""
Add a new color to the collection. args may be either a gradient stop,
or a colour and position.
"""
if len(args) == 2:
col, pos = args
stop = GraphicsGradientStop(col, pos)
elif len(args) == 1:
stop = args[0]
else:
raise ValueError, "Invalid parameters passed to Add"
assert isinstance(stop, GraphicsGradientStop)
self._stops.append(stop)
self._stops.sort(key=lambda x: x.Position)
def GetCount(self):
return len(self._stops)
Count = property(GetCount)
def __len__(self):
return self.GetCount()
def Item(self, n):
return self._stops[n]
def __getitem__(self, n):
return self._stops[n]
def GetStartColour(self):
return self._stops[0].Colour
def SetStartColour(self, col):
self._stops[0].Colour = col
StartColour = property(GetStartColour, SetStartColour)
def GetEndColour(self):
return self._stops[-1].Colour
def SetEndColour(self, col):
self._stops[-1].Colour = col
EndColour = property(GetEndColour, SetEndColour)
#---------------------------------------------------------------------------
class GraphicsContext(GraphicsObject):
"""
The GraphicsContext is the object which facilitates drawing to a surface.
"""
def __init__(self, context=None, size=None):
self._context = context
self._pen = None
self._brush = None
self._font = None
self._fontColour = None
self._layerOpacities = []
self._width = 10000.0
self._height = 10000.0
if size is not None:
self._width, self._height = size
def IsNull(self):
return self._context is None
@staticmethod
def Create(dc):
# TODO: Support creating directly from a wx.Window too.
assert isinstance(dc, wx.DC)
ctx = wx.lib.wxcairo.ContextFromDC(dc)
return GraphicsContext(ctx, dc.GetSize())
@staticmethod
def CreateFromNative(cairoContext):
return GraphicsContext(cairoContext)
@staticmethod
def CreateMeasuringContext():
"""
If you need a temporary context just to quickly measure some
text extents, or etc. then using this function will be a
little less expensive than creating a real DC for it.
"""
surface = cairo.ImageSurface(FORMAT_ARGB32, 1, 1)
ctx = cairo.Context(surface)
return GraphicsContext(ctx,
(surface.get_width(), surface.get_height()))
@staticmethod
def CreateFromSurface(surface):
"""
Wrap a context around the given cairo Surface. Note that a
GraphicsBitmap contains a cairo ImageSurface which is
accessible via the Surface property.
"""
return GraphicsContext(cairo.Context(surface),
(surface.get_width(), surface.get_height()))
@Property
def Context():
def fget(self):
return self._context
return locals()
# Our implementation is able to create these things direclty, but
# we'll keep them here too for compatibility with wx.GraphicsContext.
def CreateBrush(self, brush):
"""
Create a brush from a wx.Brush.
"""
return GraphicsBrush.CreateFromBrush(brush)
def CreateFont(self, font, colour=None):
"""
Create a font from a wx.Font
"""
return GraphicsFont.CreateFromFont(font, colour)
def CreateLinearGradientBrush(self, x1, y1, x2, y2, *args):
"""
Creates a native brush having a linear gradient, starting at (x1,y1)
to (x2,y2) with the given boundary colors or the specified stops.
The `*args` can be either a GraphicsGradientStops or just two colours to
be used as the starting and ending gradient colours.
"""
if len(args) ==1:
stops = args[0]
elif len(args) == 2:
c1 = _makeColour(c1)
c2 = _makeColour(c2)
stops = GraphicsGradientStops(c1, c2)
else:
raise ValueError, "Invalid args passed to CreateLinearGradientBrush"
pattern = cairo.LinearGradient(x1, y1, x2, y2)
for stop in stops:
pattern.add_color_stop_rgba(stop.Position, *_colourToValues(stop.Colour))
return GraphicsBrush.CreateFromPattern(pattern)
def CreateRadialGradientBrush(self, xo, yo, xc, yc, radius, *args):
"""
Creates a native brush, having a radial gradient originating at point
(xo,yo) and ending on a circle around (xc,yc) with the given radius;
the colours may be specified by just the two extremes or the full
array of gradient stops.
The `*args` can be either a GraphicsGradientStops or just two colours to
be used as the starting and ending gradient colours.
"""
if len(args) ==1:
stops = args[0]
elif len(args) == 2:
oColour = _makeColour(oColour)
cColour = _makeColour(cColour)
stops = GraphicsGradientStops(oColour, cColour)
else:
raise ValueError, "Invalid args passed to CreateLinearGradientBrush"
pattern = cairo.RadialGradient(xo, yo, 0.0, xc, yc, radius)
for stop in stops:
pattern.add_color_stop_rgba(stop.Position, *_colourToValues(stop.Colour))
return GraphicsBrush.CreateFromPattern(pattern)
def CreateMatrix(self, a=1.0, b=0, c=0, d=1.0, tx=0, ty=0):
"""
Create a new matrix object.
"""
m = GraphicsMatrix()
m.Set(a, b, c, d, tx, ty)
return m
def CreatePath(self):
"""
Create a new path obejct.
"""
return GraphicsPath()
def CreatePen(self, pen):
"""
Create a new pen from a wx.Pen.
"""
return GraphicsPen.CreateFromPen(pen)
def PushState(self):
"""
Makes a copy of the current state of the context (ie the
transformation matrix) and saves it on an internal stack of
saved states. The saved state will be restored when PopState
is called.
"""
self._context.save()
def PopState(self):
"""
Restore the most recently saved state which was saved with
PushState.
"""
self._context.restore()
def Clip(self, x, y, w, h):
"""
Adds the rectangle to the current clipping region. The
clipping region causes drawing operations to be limited to the
clipped areas of the context.
"""
p = GraphicsPath()
p.AddRectangle(x, y, w, h)
self._context.append_path(p.GetNativePath())
self._context.clip()
def ClipRegion(self, region):
"""
Adds the wx.Region to the current clipping region.
"""
p = GraphicsPath()
ri = wx.RegionIterator(region)
while ri:
rect = ri.GetRect()
p.AddRectangle( *rect )
ri.Next()
self._context.append_path(p.GetNativePath())
self._context.clip()
def ResetClip(self):
"""
Resets the clipping region to the original shape of the context.
"""
self._context.reset_clip()
def GetNativeContext(self):
return self._context
# Since DC logical functions are conceptually different than
# compositing operators don't pretend they are the same thing, or
# try ot implement them using the compositing operators.
def GetLogicalFunction(self):
raise NotImplementedError("See GetCompositingOperator")
def SetLogicalFunction(self, function):
raise NotImplementedError("See SetCompositingOperator")
def Translate(self, dx, dy):
"""
Modifies the current transformation matrix by translating the
user-space origin by (dx, dy).
"""
self._context.translate(dx, dy)
def Scale(self, xScale, yScale):
"""
Modifies the current transformation matrix by translating the
user-space axes by xScale and yScale.
"""
self._context.scale(xScale, yScale)
def Rotate(self, angle):
"""
Modifies the current transformation matrix by rotating the
user-space axes by angle radians.
"""
self._context.rotate(angle)
def ConcatTransform(self, matrix):
"""
Modifies the current transformation matrix by applying matrix
as an additional transformation.
"""
self._context.transform(matrix.GetNativeMatrix())
def SetTransform(self, matrix):
"""
Set the context's current transformation matrix to matrix.
"""
self._context.set_matrix(matrix.GetNativeMatrix())
def GetTransform(self):
"""
Returns the context's current transformation matrix.
"""
gm = GraphicsMatrix()
gm.Set( *tuple(self._context.get_matrix()) )
return gm
def SetPen(self, pen):
"""
Set the pen to be used for stroking lines in future drawing
operations. Either a wx.Pen or a GraphicsPen object may be
used.
"""
if isinstance(pen, wx.Pen):
if not pen.Ok() or pen.Style == wx.TRANSPARENT:
pen = None
else:
pen = GraphicsPen.CreateFromPen(pen)
self._pen = pen
def GetPen(self): return self._pen
Pen = property(GetPen, SetPen)
def SetBrush(self, brush):
"""
Set the brush to be used for filling shapes in future drawing
operations. Either a wx.Brush or a GraphicsBrush object may
be used.
"""
if isinstance(brush, wx.Brush):
if not brush.Ok() or brush.Style == wx.TRANSPARENT:
brush = None
else:
brush = GraphicsBrush.CreateFromBrush(brush)
self._brush = brush
def GetBrush(self): return self._brush
Brush = property(GetBrush, SetBrush)
def SetFont(self, font, colour=None):
"""
Sets the font to be used for drawing text. Either a wx.Font
or a GrpahicsFont may be used.
"""
if isinstance(font, wx.Font):
font = GraphicsFont.CreateFromFont(font, colour)
self._font = font
if colour is not None:
self._fontColour = _makeColour(colour)
else:
self._fontColour = font._colour
def GetFont(self): return (self._font, self._fontColour)
def _SetFont(self, *both): self.SetFont(*both)
Font = property(GetFont, _SetFont)
def StrokePath(self, path):
"""
Strokes the path (draws the lines) using the current pen.
"""
if self._pen:
offset = _OffsetHelper(self)
self._context.append_path(path.GetNativePath())
self._pen.Apply(self)
self._context.stroke()
def FillPath(self, path, fillStyle=wx.ODDEVEN_RULE):
"""
Fills the path using the current brush.
"""
if self._brush:
offset = _OffsetHelper(self)
self._context.append_path(path.GetNativePath())
self._brush.Apply(self)
d = { wx.WINDING_RULE : cairo.FILL_RULE_WINDING,
wx.ODDEVEN_RULE : cairo.FILL_RULE_EVEN_ODD }
rule = d[fillStyle]
self._context.set_fill_rule(rule)
self._context.fill()
def DrawPath(self, path, fillStyle=wx.ODDEVEN_RULE):
"""
Draws the path by first filling it and then stroking it.
"""
# TODO: this could be optimized by moving the stroke and fill
# code here and only loading the path once.
self.FillPath(path, fillStyle)
self.StrokePath(path)
def DrawText(self, text, x, y, backgroundBrush=None):
"""
Draw the text at (x,y) using the current font. If
backgroundBrush is set then it is used to fill the rectangle
behind the text.
"""
if backgroundBrush:
formerBrush = self._brush
formerPen = self._pen
self.SetBrush(backgroundBrush)
self.SetPen(None)
width, height = self.GetTextExtent(text)
path = GraphicsPath()
path.AddRectangle(x, y, width, height)
self.FillPath(path)
self._DrawText(text, x, y)
self.SetBrush(formerBrush)
self.SetPen(formerPen)
else:
self._DrawText(text, x, y)
def _DrawText(self, text, x, y, angle=None):
# helper used by DrawText and DrawRotatedText
if angle is not None:
self.PushState()
self.Translate(x, y)
self.Rotate(-angle)
x = y = 0
self._font.Apply(self, self._fontColour)
# Cairo's x,y for drawing text is at the baseline, so we need to adjust
# the position we move to by the ascent.
fe = self._context.font_extents()
ascent = fe[0]
self._context.move_to( x, y + ascent )
self._context.show_text(text)
if angle is not None:
self.PopState()
def DrawRotatedText(self, text, x, y, angle, backgroundBrush=None):
"""
Draw the text at (x,y) using the current font and rotated
angle radians. If backgroundBrush is set then it is used to
fill the rectangle behind the text.
"""
if backgroundBrush:
formerBrush = self._brush
formerPen = self._pen
self.SetBrush(backgroundBrush)
self.SetPen(None)
width, height = self.GetTextExtent(text)
path = GraphicsPath()
path.AddRectangle(0, 0, width, height)
self.PushState()
self.Translate(x, y)
self.Rotate(-angle)
self.FillPath(path)
self.PopState()
self._DrawText(text, x, y, angle)
self.SetBrush(formerBrush)
self.SetPen(formerPen)
else:
self._DrawText(text, x, y, angle)
def GetFullTextExtent(self, text):
"""
Returns the (width, height, descent, externalLeading) of the
text using the current font.
"""
if not text:
return (0,0,0,0)
self._font.Apply(self, self._fontColour)
te = self._context.text_extents(text)
width = te[2]
fe = self._context.font_extents()
height = fe[2]
descent = fe[1]
ascent = fe[0]
externalLeading = max(0, height - (ascent + descent))
return (width, height, descent, externalLeading)
def GetTextExtent(self, text):
"""
Returns the (width, height) of the text using the current
font.
"""
(width, height, descent, externalLeading) = self.GetFullTextExtent(text)
return (width, height)
def GetPartialTextExtents(self, text):
raise NotImplementedError("TODO")
def DrawBitmap(self, bmp, x, y, w=-1, h=-1):
"""
Draw the bitmap at (x,y). If the width and height parameters
are passed then the bitmap is scaled to fit that size. Either
a wx.Bitmap or a GraphicsBitmap may be used.
"""
if isinstance(bmp, wx.Bitmap):
bmp = GraphicsBitmap.CreateFromBitmap(bmp)
# In case we're scaling the image by using a width and height
# different than the bitmap's size, create a pattern
# transformation on the surface and draw the transformed
# pattern.
self.PushState()
pattern = cairo.SurfacePattern(bmp.Surface)
bw, bh = bmp.Size
if w == -1: w = bw
if h == -1: h = bh
scaleX = w / float(bw)
scaleY = h / float(bh)
self._context.translate(x, y)
self._context.scale(scaleX, scaleY)
self._context.set_source(pattern)
# use the original size here since the context is scaled already...
self._context.rectangle(0, 0, bw, bh)
# fill the rectangle with the pattern
self._context.fill()
self.PopState()
def DrawIcon(self, icon, x, y, w=-1, h=-1):
raise NotImplementedError("TODO")
def StrokeLine(self, x1, y1, x2, y2):
"""
Strokes a single line using the current pen.
"""
path = GraphicsPath()
path.MoveToPoint(x1, y1)
path.AddLineToPoint(x2, y2)
self.StrokePath(path)
def StrokeLines(self, points):
"""
Stroke a series of conencted lines using the current pen.
Points is a sequence of points or 2-tuples, and lines are
drawn from point to point through the end of the sequence.
"""
path = GraphicsPath()
x, y = points[0]
path.MoveToPoint(x, y)
for point in points[1:]:
x, y = point
path.AddLineToPoint(x, y)
self.StrokePath(path)
def StrokeLineSegments(self, beginPoints, endPoints):
"""
Stroke a series of lines using the current pen. For each line
the begin point is taken from the beginPoints sequence and the
ending point is taken from the endPoints sequence.
"""
path = GraphicsPath()
for begin, end in zip(beginPoints, endPoints):
path.MoveToPoint(begin[0], begin[1])
path.AddLineToPoint(end[0], end[1])
self.StrokePath(path)
def DrawLines(self, points, fillStyle=wx.ODDEVEN_RULE):
"""
Stroke and fill a series of connected lines using the current
pen and current brush.
"""
path = GraphicsPath()
x, y = points[0]
path.MoveToPoint(x, y)
for point in points[1:]:
x, y = point
path.AddLineToPoint(x, y)
self.DrawPath(path, fillStyle)
def DrawRectangle(self, x, y, w, h):
"""
Stroke and fill a rectangle using the current pen and current
brush.
"""
path = GraphicsPath()
path.AddRectangle(x, y, w, h)
self.DrawPath(path)
def DrawEllipse(self, x, y, w, h):
"""
Stroke and fill an elipse that fits in the given rectangle,
using the current pen and current brush.
"""
path = GraphicsPath()
path.AddEllipse(x, y, w, h)
self.DrawPath(path)
def DrawRoundedRectangle(self, x, y, w, h, radius):
"""
Stroke and fill a rounded rectangle using the current pen and
current brush.
"""
path = GraphicsPath()
path.AddRoundedRectangle(x, y, w, h, radius)
self.DrawPath(path)
def GetCompositingOperator(self):
"""
Returns the current compositing operator for the context.
"""
return self._context.get_operator()
def SetCompositingOperator(self, op):
"""
Sets the compositin operator to be used for all drawing
operations. The default operator is OPERATOR_OVER.
"""
return self._context.set_operator(op)
def GetAntialiasMode(self):
"""
Returns the current antialias mode.
"""
return self._context.get_antialias()
def SetAntialiasMode(self, mode=ANTIALIAS_DEFAULT):
"""
Set the antialiasing mode of the rasterizer used for drawing
shapes. This value is a hint, and a particular backend may or
may not support a particular value.
"""
self._context.set_antialias(mode)
def BeginLayer(self, opacity):
"""
Redirects future rendering to a temorary context. See `EndLayer`.
"""
self._layerOpacities.append(opacity)
self._context.push_group()
def EndLayer(self):
"""
Composites the drawing done on the temporary context created
in `BeginLayer` back into the main context, using the opacity
specified for the layer.
"""
opacity = self._layerOpacities.pop()
self._context.pop_group_to_source()
self._context.paint_with_alpha(opacity)
def GetSize(self):
return (self._width, self._height)
Size = property(GetSize)
# Some things not in wx.GraphicsContext (yet)
def DrawCircle(self, x, y, radius):
"""
Stroke and fill a circle centered at (x,y) with the given
radius, using the current pen and brush.
"""
path = GraphicsPath()
path.AddCircle(x, y, radius)
self.DrawPath(path)
def ClipPath(self, path):
"""
Set the clip region to the path.
"""
self._context.append_path(path.GetNativePath())
self._context.clip()
def Clear(self, colour=None):
"""
Clear the context using the given color or the currently set brush.
"""
if colour is not None:
brush = GraphicsBrush(colour)
elif self._brush is None:
brush = GraphicsBrush(wx.WHITE)
else:
brush = self._brush
self.PushState()
op = self._context.get_operator()
self._context.set_operator(cairo.OPERATOR_SOURCE)
self._context.reset_clip()
brush.Apply(self)
self._context.paint()
self._context.set_operator(op)
self.PopState()
#---------------------------------------------------------------------------
# Utility functions
def _makeColour(colour):
# make a wx.Colour from any of the allowed typemaps (string, tuple,
# etc.)
if isinstance(colour, (basestring, tuple)):
return wx.NamedColour(colour)
else:
return colour
def _colourToValues(c):
# Convert wx.Colour components to a set of values between 0 and 1
return tuple( [x/255.0 for x in c.Get(True)] )
class _OffsetHelper(object):
def __init__(self, ctx):
self.ctx = ctx
self.offset = 0
if ctx._pen:
penwidth = ctx._pen.Width
if penwidth == 0:
penwidth = 1
self.offset = (penwidth % 2) == 1;
if self.offset:
ctx.Translate(0.5, 0.5)
def __del__(self):
if self.offset:
self.ctx.Translate(-0.5, -0.5)
def _stdDashes(style, width):
if width < 1.0:
width = 1.0
if style == wx.DOT:
dashes = [ width, width + 2.0]
elif style == wx.DOT_DASH:
dashes = [ 9.0, 6.0, 3.0, 3.0 ]
elif style == wx.LONG_DASH:
dashes = [ 19.0, 9.0 ]
elif style == wx.SHORT_DASH:
dashes = [ 9.0, 6.0 ]
return dashes
#---------------------------------------------------------------------------