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 | % /¯_ |¯\ /\ |¯\ | | | /¯ (` /¯ /¯\ |\ | ¯|¯ |_¯ \/ ¯|¯
%\ W X \_/ |¯\ /¯¯\ |¯¯ |¯| | \_, \_) \_, \_/ | \| | |__ /\ | . E R L
%%
%%
%% Copyright Ericsson AB 2008-2013. All Rights Reserved.
%%
%%
%% Whitespace Beautified by ScriptCulture © 2018
%% Sit Back · Feet Up · Learn wxErlang
%% For use as a reference only
%% www.scriptculture.com
%% Not check-summed
%% wx 1.8
%%
%% Licensed under the Apache License,
%% Version 2.0 (the "License"); you may
%% not use this file except in compliance
%% with the License. You may obtain a copy
%% of the License at:
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by
%% applicable law or agreed to in writing, software
%% distributed under the License is distributed
%% on an "AS IS" BASIS, WITHOUT WARRANTIES
%% OR CONDITIONS OF ANY KIND, either
%% express or implied. See the
%% License for the specific
%% language governing
%% permissions and
%% limitations
%% under the
%% License.
%%%%%%%
%%%%
%%%%%
%% @doc See external documentation: <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxgraphicscontext.html">wxGraphicsContext</a>.
%% <p>This class is derived (and can use functions) from:
%% <br />{@link wxGraphicsObject}
%% </p>
%% @type wxGraphicsContext().
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% OVERVIEW
%% ––––––––
%% A wxGraphicsContext instance is the object that is drawn upon.
%% It is created by a renderer using the CreateContext calls..,
%% this can be either directly using a renderer instance,
%% or indirectly using the static convenience CreateXXX
%% functions of wxGraphicsContext that always delegate
%% the task to the default renderer.
%%
%%
%% See Also:
%% —————————
%%
%%
%%
-module(wxGraphicsContext).
-include("wxe.hrl").
-export([
clip/2,
clip/5,
concatTransform/2,
create/0,
create/1,
createBrush/2,
createFont/2,
createFont/3,
createLinearGradientBrush/7,
createMatrix/1,
createMatrix/2,
createPath/1,
createPen/2,
createRadialGradientBrush/8,
destroy/1,
drawBitmap/6,
drawEllipse/5,
drawIcon/6,
drawLines/2,
drawLines/3,
drawPath/2,
drawPath/3,
drawRectangle/5,
drawRoundedRectangle/6,
drawText/4,
drawText/5,
drawText/6,
fillPath/2,
fillPath/3,
getPartialTextExtents/2,
getTextExtent/2,
getTransform/1,
resetClip/1,
rotate/2,
scale/3,
setBrush/2,
setFont/2,
setFont/3,
setPen/2,
setTransform/2,
strokeLine/5,
strokeLines/2,
strokePath/2,
translate/3
]).
%% inherited exports
-export([getRenderer/1,isNull/1,parent_class/1]).
-export_type([wxGraphicsContext/0]).
-deprecated([createLinearGradientBrush/7,createRadialGradientBrush/8]).
%% @hidden
parent_class(wxGraphicsObject) -> true;
parent_class(_Class) -> erlang:error({badtype, ?MODULE}).
-type wxGraphicsContext() :: wx:wx_object().
%·%% CREATE / 0 %%·%
%%
%% Creates a wxGraphicsContext from a wxWindowDC (eg a wxPaintDC).
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec create() -> wxGraphicsContext().
create() ->
wxe_util:call(?wxGraphicsContext_Create_0,
<<>>).
%·%% CREATE / 1 %%·%
%%
%% Creates a wxGraphicsContext from a wxWindow.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec create(Dc) -> wxGraphicsContext()
when
Dc :: wxWindowDC:wxWindowDC()
| wxWindow:wxWindow().
create(#wx_ref{type=DcT,ref=DcRef}) ->
DcOP = case ?CLASS_T(DcT,wxWindowDC) of
true ->
?wxGraphicsContext_Create_1_1;
_ -> ?CLASS(DcT,wxWindow),
?wxGraphicsContext_Create_1_0
end,
wxe_util:call(DcOP,
<<DcRef:32/?UI>>).
%·%% CREATE PEN %%·%
%%
%% Creates a native pen from a wxPen.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createPen(This, Pen) -> wxGraphicsPen:wxGraphicsPen()
when
This :: wxGraphicsContext(),
Pen :: wxPen:wxPen().
createPen(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=PenT,ref=PenRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(PenT,wxPen),
wxe_util:call(?wxGraphicsContext_CreatePen,
<<ThisRef:32/?UI,PenRef:32/?UI>>).
%·%% CREATE BRUSH %%·%
%%
%% Creates a native brush from a wxBrush.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createBrush(This, Brush) -> wxGraphicsBrush:wxGraphicsBrush()
when
This :: wxGraphicsContext(),
Brush :: wxBrush:wxBrush().
createBrush(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=BrushT,ref=BrushRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(BrushT,wxBrush),
wxe_util:call(?wxGraphicsContext_CreateBrush,
<<ThisRef:32/?UI,BrushRef:32/?UI>>).
%·%% CREATE RADIAL GRADIENT BRUSH %%·%
%%
%% Creates a native brush, having a radial gradient
%% originating at (xo,yc) with color oColour and ends
%% on a circle around (xc,yc) with radius r and color cColour
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createRadialGradientBrush(This, Xo, Yo, Xc, Yc, Radius, OColor, CColor) -> wxGraphicsBrush:wxGraphicsBrush()
when
This :: wxGraphicsContext(),
Xo :: number(),
Yo :: number(),
Xc :: number(),
Yc :: number(),
Radius :: number(),
OColor :: wx:wx_colour(),
CColor :: wx:wx_colour().
createRadialGradientBrush(#wx_ref{type=ThisT,ref=ThisRef}, Xo, Yo, Xc, Yc, Radius, OColor, CColor)
when
is_number(Xo),
is_number(Yo),
is_number(Xc),
is_number(Yc),
is_number(Radius),
tuple_size(OColor) =:= 3;
tuple_size(OColor) =:= 4,
tuple_size(CColor) =:= 3;
tuple_size(CColor) =:= 4 ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:call(?wxGraphicsContext_CreateRadialGradientBrush,
<<ThisRef:32/?UI,0:32,Xo:64/?F,Yo:64/?F,Xc:64/?F,Yc:64/?F,Radius:64/?F,
(wxe_util:colour_bin(OColor)):16/binary,
(wxe_util:colour_bin(CColor)):16/binary>>).
%·%% CREATE LINEAR GRADIENT BRUSH %%·%
%%
%% Creates a native brush, having a linear gradient,
%% starting at (x1,y1) with color c1 to (x2,y2) with color c2
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createLinearGradientBrush(This, X1, Y1, X2, Y2, C1, C2) -> wxGraphicsBrush:wxGraphicsBrush()
when
This :: wxGraphicsContext(),
X1 :: number(),
Y1 :: number(),
X2 :: number(),
Y2 :: number(),
C1 :: wx:wx_colour(),
C2 :: wx:wx_colour().
createLinearGradientBrush(#wx_ref{type=ThisT,ref=ThisRef}, X1, Y1, X2, Y2, C1, C2)
when
is_number(X1),
is_number(Y1),
is_number(X2),
is_number(Y2),
tuple_size(C1) =:= 3;
tuple_size(C1) =:= 4,
tuple_size(C2) =:= 3;
tuple_size(C2) =:= 4 ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:call(?wxGraphicsContext_CreateLinearGradientBrush,
<<ThisRef:32/?UI,0:32,X1:64/?F,Y1:64/?F,X2:64/?F,Y2:64/?F,(wxe_util:colour_bin(C1)):16/binary,(wxe_util:colour_bin(C2)):16/binary>>).
%·%% CREATE FONT %%·%
%%
%% See below...
%% @equiv createFont(This,Font, [])
-spec createFont(This, Font) -> wxGraphicsFont:wxGraphicsFont()
when
This :: wxGraphicsContext(),
Font :: wxFont:wxFont().
createFont(This,Font)
when
is_record(This, wx_ref),
is_record(Font, wx_ref) -> createFont(This,Font, []).
%%
%% Creates a native graphics font from a wxFont and a text colour.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createFont(This, Font, [Option]) -> wxGraphicsFont:wxGraphicsFont()
when
This :: wxGraphicsContext(),
Font :: wxFont:wxFont(),
Option :: {col, wx:wx_colour()}.
createFont(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=FontT,ref=FontRef},
Options)
when
is_list(Options) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(FontT,wxFont),
MOpts = fun({col, Col}, Acc) -> [<<1:32/?UI,(wxe_util:colour_bin(Col)):16/binary,0:32>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:call(?wxGraphicsContext_CreateFont,
<<ThisRef:32/?UI,FontRef:32/?UI, BinOpt/binary>>).
%·%% CREATE MATRIX %%·%
%%
%% See below...
%% @equiv createMatrix(This, [])
-spec createMatrix(This) -> wxGraphicsMatrix:wxGraphicsMatrix()
when
This :: wxGraphicsContext().
createMatrix(This)
when
is_record(This, wx_ref) -> createMatrix(This, []).
%%
%% Creates a native affine transformation matrix from the passed in values.
%%
%% The defaults result in an identity matrix.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createMatrix(This, [Option]) -> wxGraphicsMatrix:wxGraphicsMatrix()
when
This :: wxGraphicsContext(),
Option :: {a, number()}
| {b, number()}
| {c, number()}
| {d, number()}
| {tx, number()}
| {ty, number()}.
createMatrix(#wx_ref{type=ThisT,ref=ThisRef}, Options)
when
is_list(Options) ->
?CLASS(ThisT,wxGraphicsContext),
MOpts = fun({a, A}, Acc) -> [<<1:32/?UI,0:32,A:64/?F>>|Acc];
({b, B}, Acc) -> [<<2:32/?UI,0:32,B:64/?F>>|Acc];
({c, C}, Acc) -> [<<3:32/?UI,0:32,C:64/?F>>|Acc];
({d, D}, Acc) -> [<<4:32/?UI,0:32,D:64/?F>>|Acc];
({tx, Tx}, Acc) -> [<<5:32/?UI,0:32,Tx:64/?F>>|Acc];
({ty, Ty}, Acc) -> [<<6:32/?UI,0:32,Ty:64/?F>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:call(?wxGraphicsContext_CreateMatrix,
<<ThisRef:32/?UI, 0:32,BinOpt/binary>>).
%·%% CREATE PATH %%·%
%%
%% Creates a native graphics path which is initially empty.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec createPath(This) -> wxGraphicsPath:wxGraphicsPath()
when
This :: wxGraphicsContext().
createPath(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:call(?wxGraphicsContext_CreatePath,
<<ThisRef:32/?UI>>).
%·%% CLIP / 2 %%·%
%%
%% Clips drawings to the region, combined to current clipping region
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec clip(This, Region) -> ok
when
This :: wxGraphicsContext(),
Region :: wxRegion:wxRegion().
clip(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=RegionT,ref=RegionRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(RegionT,wxRegion),
wxe_util:cast(?wxGraphicsContext_Clip_1,
<<ThisRef:32/?UI,RegionRef:32/?UI>>).
%·%% CLIP / 5 %%·%
%%
%% Clips drawings to the rectangle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec clip(This, X, Y, W, H) -> ok
when
This :: wxGraphicsContext(),
X :: number(),
Y :: number(),
W :: number(),
H :: number().
clip(#wx_ref{type=ThisT,ref=ThisRef}, X, Y, W, H)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_Clip_4,
<<ThisRef:32/?UI,0:32,X:64/?F,Y:64/?F,W:64/?F,H:64/?F>>).
%·%% RESET CLIP %%·%
%%
%% Resets the clipping to original shape.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec resetClip(This) -> ok
when
This :: wxGraphicsContext().
resetClip(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_ResetClip,
<<ThisRef:32/?UI>>).
%·%% DRAW BITMAP %%·%
%%
%% Draws the bitmap.
%%
%% In case of a mono bitmap, this is treated as a mask and the
%% current brushed is used for filling.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawBitmap(This, Bmp, X, Y, W, H) -> ok
when
This :: wxGraphicsContext(),
Bmp :: wxBitmap:wxBitmap(),
X :: number(),
Y :: number(),
W :: number(),
H :: number().
drawBitmap(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=BmpT,ref=BmpRef}, X, Y, W, H)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(BmpT,wxBitmap),
wxe_util:cast(?wxGraphicsContext_DrawBitmap,
<<ThisRef:32/?UI,BmpRef:32/?UI,X:64/?F,Y:64/?F,W:64/?F,H:64/?F>>).
%·%% DRAW ELLIPSE %%·%
%%
%% Draws an ellipse.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawEllipse(This, X, Y, W, H) -> ok
when
This :: wxGraphicsContext(),
X :: number(),
Y :: number(),
W :: number(),
H :: number().
drawEllipse(#wx_ref{type=ThisT,ref=ThisRef}, X, Y, W, H)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_DrawEllipse,
<<ThisRef:32/?UI,0:32,X:64/?F,Y:64/?F,W:64/?F,H:64/?F>>).
%·%% DRAW ICON %%·%
%%
%% Draws the icon.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawIcon(This, Icon, X, Y, W, H) -> ok
when
This :: wxGraphicsContext(),
Icon :: wxIcon:wxIcon(),
X :: number(),
Y :: number(),
W :: number(),
H :: number().
drawIcon(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=IconT,ref=IconRef}, X, Y, W, H)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(IconT,wxIcon),
wxe_util:cast(?wxGraphicsContext_DrawIcon,
<<ThisRef:32/?UI,IconRef:32/?UI,X:64/?F,Y:64/?F,W:64/?F,H:64/?F>>).
%·%% DRAW LINES %%·%
%%
%% See below...
%% @equiv drawLines(This,Points, [])
-spec drawLines(This, Points) -> ok
when
This :: wxGraphicsContext(),
Points :: [{X :: float(),
Y :: float()}].
drawLines(This,Points)
when
is_record(This, wx_ref),
is_list(Points) -> drawLines(This,Points, []).
%%
%% Draws a polygon.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawLines(This, Points, [Option]) -> ok
when
This :: wxGraphicsContext(),
Points :: [{X :: float(),
Y :: float()}],
Option :: {fillStyle, wx:wx_enum()}. %%<br /> FillStyle = integer
drawLines(#wx_ref{type=ThisT,ref=ThisRef}, Points, Options)
when
is_list(Points),
is_list(Options) ->
?CLASS(ThisT,wxGraphicsContext),
MOpts = fun({fillStyle, FillStyle}, Acc) -> [<<1:32/?UI,FillStyle:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:cast(?wxGraphicsContext_DrawLines,
<<ThisRef:32/?UI,(length(Points)):32/?UI,
(<< <<X:64/?F,Y:64/?F>> || {X,Y} <- Points>>)/binary, BinOpt/binary>>).
%·%% DRAW PATH %%·%
%%
%% See below...
%% @equiv drawPath(This,Path, [])
-spec drawPath(This, Path) -> ok
when
This :: wxGraphicsContext(),
Path :: wxGraphicsPath:wxGraphicsPath().
drawPath(This,Path)
when
is_record(This, wx_ref),
is_record(Path, wx_ref) -> drawPath(This,Path, []).
%%
%% Draws the path by first filling and then stroking.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawPath(This, Path, [Option]) -> ok
when
This :: wxGraphicsContext(),
Path :: wxGraphicsPath:wxGraphicsPath(),
Option :: {fillStyle, wx:wx_enum()}. %%<br /> FillStyle = integer
drawPath(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=PathT,ref=PathRef},
Options)
when
is_list(Options) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(PathT,wxGraphicsPath),
MOpts = fun({fillStyle, FillStyle}, Acc) -> [<<1:32/?UI,FillStyle:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:cast(?wxGraphicsContext_DrawPath,
<<ThisRef:32/?UI,PathRef:32/?UI, BinOpt/binary>>).
%·%% DRAW RECTANGLE %%·%
%%
%% Draws a rectangle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawRectangle(This, X, Y, W, H) -> ok
when
This :: wxGraphicsContext(),
X :: number(),
Y :: number(),
W :: number(),
H :: number().
drawRectangle(#wx_ref{type=ThisT,ref=ThisRef}, X, Y, W, H)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_DrawRectangle,
<<ThisRef:32/?UI,0:32,X:64/?F,Y:64/?F,W:64/?F,H:64/?F>>).
%·%% DRAW ROUNDED RECTANGLE %%·%
%%
%% Draws a rounded rectangle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawRoundedRectangle(This, X, Y, W, H, Radius) -> ok
when
This :: wxGraphicsContext(),
X :: number(),
Y :: number(),
W :: number(),
H :: number(),
Radius :: number().
drawRoundedRectangle(#wx_ref{type=ThisT,ref=ThisRef}, X, Y, W, H, Radius)
when
is_number(X),
is_number(Y),
is_number(W),
is_number(H),
is_number(Radius) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_DrawRoundedRectangle,
<<ThisRef:32/?UI,0:32,X:64/?F,Y:64/?F,W:64/?F,H:64/?F,Radius:64/?F>>).
%·%% DRAW TEXT / 4 %%·%
%%
%% Draws a text at the defined position, at the given angle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawText(This, Str, X, Y) -> ok
when
This :: wxGraphicsContext(),
Str :: unicode:chardata(),
X :: number(),
Y :: number().
drawText(#wx_ref{type=ThisT,ref=ThisRef},Str,X,Y)
when
is_list(Str),
is_number(X),
is_number(Y) ->
?CLASS(ThisT,wxGraphicsContext),
Str_UC = unicode:characters_to_binary([Str,0]),
wxe_util:cast(?wxGraphicsContext_DrawText_3,
<<ThisRef:32/?UI,(byte_size(Str_UC)):32/?UI,(Str_UC)/binary,
0:(((8- ((0+byte_size(Str_UC)) band 16#7)) band 16#7))/unit:8,X:64/?F,Y:64/?F>>).
%·%% DRAW TEXT / 5 %%·%
%%
%% Draws a text at the defined position, at the given angle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawText(This, Str, X, Y, Angle) -> ok
when
This :: wxGraphicsContext(),
Str :: unicode:chardata(),
X :: number(),
Y :: number(),
Angle :: number();
(This, Str, X, Y, BackgroundBrush) -> ok
when
This :: wxGraphicsContext(),
Str :: unicode:chardata(),
X :: number(),
Y :: number(),
BackgroundBrush :: wxGraphicsBrush:wxGraphicsBrush().
drawText(#wx_ref{type=ThisT,ref=ThisRef}, Str, X, Y, Angle)
when
is_list(Str),
is_number(X),
is_number(Y),
is_number(Angle) ->
?CLASS(ThisT,wxGraphicsContext),
Str_UC = unicode:characters_to_binary([Str,0]),
wxe_util:cast(?wxGraphicsContext_DrawText_4_0,
<<ThisRef:32/?UI,(byte_size(Str_UC)):32/?UI,(Str_UC)/binary,
0:(((8- ((0+byte_size(Str_UC)) band 16#7)) band 16#7))/unit:8,X:64/?F,Y:64/?F,Angle:64/?F>>);
drawText(#wx_ref{type=ThisT,ref=ThisRef}, Str, X, Y, #wx_ref{type=BackgroundBrushT,ref=BackgroundBrushRef})
when
is_list(Str),
is_number(X),
is_number(Y) ->
?CLASS(ThisT,wxGraphicsContext),
Str_UC = unicode:characters_to_binary([Str,0]),
?CLASS(BackgroundBrushT,wxGraphicsBrush),
wxe_util:cast(?wxGraphicsContext_DrawText_4_1,
<<ThisRef:32/?UI,(byte_size(Str_UC)):32/?UI,(Str_UC)/binary,
0:(((8- ((0+byte_size(Str_UC)) band 16#7)) band 16#7))/unit:8,X:64/?F,Y:64/?F,BackgroundBrushRef:32/?UI>>).
%·%% DRAW TEXT / 6 %%·%
%%
%% Draws a text at the defined position, at the given angle.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec drawText(This, Str, X, Y, Angle, BackgroundBrush) -> ok
when
This :: wxGraphicsContext(),
Str :: unicode:chardata(),
X :: number(),
Y :: number(),
Angle :: number(),
BackgroundBrush :: wxGraphicsBrush:wxGraphicsBrush().
drawText(#wx_ref{type=ThisT,ref=ThisRef}, Str, X, Y, Angle, #wx_ref{type=BackgroundBrushT,ref=BackgroundBrushRef})
when
is_list(Str),
is_number(X),
is_number(Y),
is_number(Angle) ->
?CLASS(ThisT,wxGraphicsContext),
Str_UC = unicode:characters_to_binary([Str,0]),
?CLASS(BackgroundBrushT,wxGraphicsBrush),
wxe_util:cast(?wxGraphicsContext_DrawText_5,
<<ThisRef:32/?UI,(byte_size(Str_UC)):32/?UI,(Str_UC)/binary,
0:(((8- ((0+byte_size(Str_UC)) band 16#7)) band 16#7))/unit:8,X:64/?F,Y:64/?F,Angle:64/?F,BackgroundBrushRef:32/?UI>>).
%·%% FILL PATH %%·%
%%
%% See below...
%% @equiv fillPath(This,Path, [])
-spec fillPath(This, Path) -> ok
when
This :: wxGraphicsContext(),
Path :: wxGraphicsPath:wxGraphicsPath().
fillPath(This,Path)
when
is_record(This, wx_ref),
is_record(Path, wx_ref) -> fillPath(This,Path, []).
%%
%% Fills the path with the current brush.
%%
%% Return Value:
%% See Also:
%%*%%*%%
%%<br /> FillStyle = integer
-spec fillPath(This, Path, [Option]) -> ok
when
This :: wxGraphicsContext(),
Path :: wxGraphicsPath:wxGraphicsPath(),
Option :: {fillStyle, wx:wx_enum()}.
fillPath(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=PathT,ref=PathRef}, Options)
when
is_list(Options) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(PathT,wxGraphicsPath),
MOpts = fun({fillStyle, FillStyle}, Acc) -> [<<1:32/?UI,FillStyle:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:cast(?wxGraphicsContext_FillPath,
<<ThisRef:32/?UI,PathRef:32/?UI, BinOpt/binary>>).
%·%% STROKE PATH %%·%
%%
%% Strokes along a path with the current pen.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec strokePath(This, Path) -> ok
when
This :: wxGraphicsContext(),
Path :: wxGraphicsPath:wxGraphicsPath().
strokePath(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=PathT,ref=PathRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(PathT,wxGraphicsPath),
wxe_util:cast(?wxGraphicsContext_StrokePath,
<<ThisRef:32/?UI,PathRef:32/?UI>>).
%·%% GET PARTIAL TEXT EXTENTS %%·%
%%
%% Fills the widths array with the widths from the beginning of
%% text to the corresponding character of text.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getPartialTextExtents(This, Text) -> [number()]
when
This :: wxGraphicsContext(),
Text :: unicode:chardata().
getPartialTextExtents(#wx_ref{type=ThisT,ref=ThisRef}, Text)
when
is_list(Text) ->
?CLASS(ThisT,wxGraphicsContext),
Text_UC = unicode:characters_to_binary([Text,0]),
wxe_util:call(?wxGraphicsContext_GetPartialTextExtents,
<<ThisRef:32/?UI,(byte_size(Text_UC)):32/?UI,(Text_UC)/binary,
0:(((8- ((0+byte_size(Text_UC)) band 16#7)) band 16#7))/unit:8>>).
%·%% GET TEXT EXTENT %%·%
%%
%% Gets the dimensions of the string using the currently selected font.
%%
%% string is the text string to measure,
%%
%% w and h are the total width and height respectively,
%%
%% descent is the dimension from the baseline of the
%% font to the bottom of the descender, and
%%
%% externalLeading is any extra vertical space added to
%% the font by the font designer (usually is zero).
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getTextExtent(This, Text) -> Result
when
Result :: {Width :: number(),
Height :: number(),
Descent :: number(),
ExternalLeading :: number()},
This :: wxGraphicsContext(),
Text :: unicode:chardata().
getTextExtent(#wx_ref{type=ThisT,ref=ThisRef}, Text)
when
is_list(Text) ->
?CLASS(ThisT,wxGraphicsContext),
Text_UC = unicode:characters_to_binary([Text,0]),
wxe_util:call(?wxGraphicsContext_GetTextExtent,
<<ThisRef:32/?UI,(byte_size(Text_UC)):32/?UI,(Text_UC)/binary,
0:(((8- ((0+byte_size(Text_UC)) band 16#7)) band 16#7))/unit:8>>).
%·%% ROTATE %%·%
%%
%% Rotates the current transformation matrix (radians),
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec rotate(This, Angle) -> ok
when
This :: wxGraphicsContext(),
Angle :: number().
rotate(#wx_ref{type=ThisT,ref=ThisRef}, Angle)
when
is_number(Angle) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_Rotate,
<<ThisRef:32/?UI,0:32,Angle:64/?F>>).
%·%% SCALE %%·%
%%
%% Scales the current transformation matrix.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec scale(This, XScale, YScale) -> ok
when
This :: wxGraphicsContext(),
XScale :: number(),
YScale :: number().
scale(#wx_ref{type=ThisT,ref=ThisRef}, XScale, YScale)
when
is_number(XScale),
is_number(YScale) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_Scale,
<<ThisRef:32/?UI,0:32,XScale:64/?F,YScale:64/?F>>).
%·%% TRANSLATE %%·%
%%
%% Translates the current transformation matrix.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec translate(This, Dx, Dy) -> ok
when
This :: wxGraphicsContext(),
Dx :: number(),
Dy :: number().
translate(#wx_ref{type=ThisT,ref=ThisRef}, Dx, Dy)
when
is_number(Dx),
is_number(Dy) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_Translate,
<<ThisRef:32/?UI,0:32,Dx:64/?F,Dy:64/?F>>).
%·%% GET TRANSFORM %%·%
%%
%% Gets the current transformation matrix of this context.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getTransform(This) -> wxGraphicsMatrix:wxGraphicsMatrix()
when
This :: wxGraphicsContext().
getTransform(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:call(?wxGraphicsContext_GetTransform,
<<ThisRef:32/?UI>>).
%·%% SET TRANSFORM %%·%
%%
%% Sets the current transformation matrix of this context
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setTransform(This, Matrix) -> ok
when
This :: wxGraphicsContext(),
Matrix :: wxGraphicsMatrix:wxGraphicsMatrix().
setTransform(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=MatrixT,ref=MatrixRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(MatrixT,wxGraphicsMatrix),
wxe_util:cast(?wxGraphicsContext_SetTransform,
<<ThisRef:32/?UI,MatrixRef:32/?UI>>).
%·%% CONCAT TRANSFORM %%·%
%%
%% Concatenates the passed in transform with
%% the current transform of this context
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec concatTransform(This, Matrix) -> ok
when
This :: wxGraphicsContext(),
Matrix :: wxGraphicsMatrix:wxGraphicsMatrix().
concatTransform(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=MatrixT,ref=MatrixRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(MatrixT,wxGraphicsMatrix),
wxe_util:cast(?wxGraphicsContext_ConcatTransform,
<<ThisRef:32/?UI,MatrixRef:32/?UI>>).
%·%% SET BRUSH %%·%
%%
%% Sets the brush for filling paths.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setBrush(This, Brush) -> ok
when
This :: wxGraphicsContext(),
Brush :: wxGraphicsBrush:wxGraphicsBrush()
| wxBrush:wxBrush().
setBrush(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=BrushT,ref=BrushRef}) ->
?CLASS(ThisT,wxGraphicsContext),
BrushOP =
case
?CLASS_T(BrushT,wxGraphicsBrush)
of
true ->
?wxGraphicsContext_SetBrush_1_1;
_ -> ?CLASS(BrushT,wxBrush),
?wxGraphicsContext_SetBrush_1_0
end,
wxe_util:cast(BrushOP,
<<ThisRef:32/?UI,BrushRef:32/?UI>>).
%·%% SET FONT / 2 %%·%
%%
%% Sets the font for drawing text.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setFont(This, Font) -> ok
when
This :: wxGraphicsContext(),
Font :: wxGraphicsFont:wxGraphicsFont().
setFont(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=FontT,ref=FontRef}) ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(FontT,wxGraphicsFont),
wxe_util:cast(?wxGraphicsContext_SetFont_1,
<<ThisRef:32/?UI,FontRef:32/?UI>>).
%·%% SET FONT / 3 %%·%
%%
%% Sets the font for drawing text.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setFont(This, Font, Colour) -> ok
when
This :: wxGraphicsContext(),
Font :: wxFont:wxFont(),
Colour :: wx:wx_colour().
setFont(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=FontT,ref=FontRef}, Colour)
when
tuple_size(Colour) =:= 3;
tuple_size(Colour) =:= 4 ->
?CLASS(ThisT,wxGraphicsContext),
?CLASS(FontT,wxFont),
wxe_util:cast(?wxGraphicsContext_SetFont_2,
<<ThisRef:32/?UI,FontRef:32/?UI,(wxe_util:colour_bin(Colour)):16/binary>>).
%·%% SET PEN %%·%
%%
%% Sets the pen used for stroking.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setPen(This, Pen) -> ok
when
This :: wxGraphicsContext(),
Pen :: wxPen:wxPen()
| wxGraphicsPen:wxGraphicsPen().
setPen(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=PenT,ref=PenRef}) ->
?CLASS(ThisT,wxGraphicsContext),
PenOP = case
?CLASS_T(PenT,wxPen)
of
true ->
?wxGraphicsContext_SetPen_1_1;
_ -> ?CLASS(PenT,wxGraphicsPen),
?wxGraphicsContext_SetPen_1_0
end,
wxe_util:cast(PenOP,
<<ThisRef:32/?UI,PenRef:32/?UI>>).
%·%% STOKE LINE %%·%
%%
%% Strokes a single line.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec strokeLine(This, X1, Y1, X2, Y2) -> ok
when
This :: wxGraphicsContext(),
X1 :: number(),
Y1 :: number(),
X2 :: number(),
Y2 :: number().
strokeLine(#wx_ref{type=ThisT,ref=ThisRef}, X1, Y1, X2, Y2)
when
is_number(X1),
is_number(Y1),
is_number(X2),
is_number(Y2) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_StrokeLine,
<<ThisRef:32/?UI,0:32,X1:64/?F,Y1:64/?F,X2:64/?F,Y2:64/?F>>).
%·%% STROKE LINES %%·%
%%
%% Stroke disconnected lines from begin to end points,
%% fastest method available for this purpose.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec strokeLines(This, Points) -> ok
when
This :: wxGraphicsContext(),
Points :: [{X :: float(),
Y :: float()}].
strokeLines(#wx_ref{type=ThisT,ref=ThisRef}, Points)
when
is_list(Points) ->
?CLASS(ThisT,wxGraphicsContext),
wxe_util:cast(?wxGraphicsContext_StrokeLines,
<<ThisRef:32/?UI,(length(Points)):32/?UI,
(<< <<X:64/?F,Y:64/?F>> || {X,Y} <- Points>>)/binary>>).
%·%% DESTROY %%·%
%%
%%
%% @doc Destroys this object, do not use object again
-spec destroy(This :: wxGraphicsContext()) -> ok.
destroy(Obj=#wx_ref{type=Type}) ->
?CLASS(Type,wxGraphicsContext),
wxe_util:destroy(?DESTROY_OBJECT,Obj),
ok.
%% From wxGraphicsObject
%% @hidden
isNull(This) -> wxGraphicsObject:isNull(This).
%% @hidden
getRenderer(This) -> wxGraphicsObject:getRenderer(This).
|