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
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you 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 .
*/
#ifndef INCLUDED_VCL_METAACT_HXX
#define INCLUDED_VCL_METAACT_HXX
#include <sal/config.h>
#include <config_options.h>
#include <o3tl/span.hxx>
#include <rtl/ref.hxx>
#include <salhelper/simplereferenceobject.hxx>
#include <tools/poly.hxx>
#include <vcl/dllapi.h>
#include <vcl/rendercontext/State.hxx>
#include <vcl/bitmapex.hxx>
#include <vcl/font.hxx>
#include <vcl/gdimtf.hxx>
#include <vcl/gfxlink.hxx>
#include <vcl/gradient.hxx>
#include <vcl/hatch.hxx>
#include <vcl/lineinfo.hxx>
#include <vcl/metaactiontypes.hxx>
#include <vcl/region.hxx>
#include <vcl/rendercontext/RasterOp.hxx>
#include <vcl/wall.hxx>
#include <memory>
class OutputDevice;
class SvStream;
enum class DrawTextFlags;
struct ImplMetaReadData
{
rtl_TextEncoding meActualCharSet;
int mnParseDepth;
ImplMetaReadData()
: meActualCharSet(RTL_TEXTENCODING_ASCII_US)
, mnParseDepth(0)
{}
};
struct ImplMetaWriteData
{
rtl_TextEncoding meActualCharSet;
ImplMetaWriteData() :
meActualCharSet( RTL_TEXTENCODING_ASCII_US )
{}
};
class VCL_DLLPUBLIC MetaAction : public salhelper::SimpleReferenceObject
{
private:
MetaActionType mnType;
protected:
virtual ~MetaAction() override;
public:
MetaAction();
explicit MetaAction( MetaActionType nType );
MetaAction( MetaAction const & );
virtual void Execute( OutputDevice* pOut );
oslInterlockedCount GetRefCount() const { return m_nCount; }
virtual rtl::Reference<MetaAction> Clone() const;
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove );
virtual void Scale( double fScaleX, double fScaleY );
MetaActionType GetType() const { return mnType; }
/** \#i10613# Extracted from Printer::GetPreparedMetaFile. Returns true
if given action requires special transparency handling
*/
virtual bool IsTransparent() const { return false; }
};
class VCL_DLLPUBLIC MetaPixelAction final : public MetaAction
{
private:
Point maPt;
Color maColor;
public:
MetaPixelAction();
MetaPixelAction(MetaPixelAction const &) = default;
MetaPixelAction(MetaPixelAction &&) = default;
MetaPixelAction & operator =(MetaPixelAction const &) = delete; // due to MetaAction
MetaPixelAction & operator =(MetaPixelAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPixelAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaPixelAction( const Point& rPt, const Color& rColor );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetPoint() const { return maPt; }
const Color& GetColor() const { return maColor; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetColor(Color rColor) { maColor = rColor; }
};
class VCL_DLLPUBLIC MetaPointAction final : public MetaAction
{
private:
Point maPt;
public:
MetaPointAction();
MetaPointAction(MetaPointAction const &) = default;
MetaPointAction(MetaPointAction &&) = default;
MetaPointAction & operator =(MetaPointAction const &) = delete; // due to MetaAction
MetaPointAction & operator =(MetaPointAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPointAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaPointAction( const Point& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetPoint() const { return maPt; }
void SetPoint(const Point& rPt) { maPt = rPt; }
};
class VCL_DLLPUBLIC MetaLineAction final : public MetaAction
{
private:
LineInfo maLineInfo;
Point maStartPt;
Point maEndPt;
public:
MetaLineAction();
MetaLineAction(MetaLineAction const &) = default;
MetaLineAction(MetaLineAction &&) = default;
MetaLineAction & operator =(MetaLineAction const &) = delete; // due to MetaAction
MetaLineAction & operator =(MetaLineAction &&) = delete; // due to MetaAction
private:
virtual ~MetaLineAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaLineAction( const Point& rStart, const Point& rEnd );
MetaLineAction( const Point& rStart, const Point& rEnd,
const LineInfo& rLineInfo );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetStartPoint() const { return maStartPt; }
const Point& GetEndPoint() const { return maEndPt; }
const LineInfo& GetLineInfo() const { return maLineInfo; }
void SetStartPoint(const Point& rPoint) { maStartPt = rPoint; }
void SetEndPoint(const Point& rPoint) { maEndPt = rPoint; }
void SetLineInfo(const LineInfo& rLineInfo) { maLineInfo = rLineInfo; }
};
class VCL_DLLPUBLIC MetaRectAction final : public MetaAction
{
private:
tools::Rectangle maRect;
public:
MetaRectAction();
MetaRectAction(MetaRectAction const &) = default;
MetaRectAction(MetaRectAction &&) = default;
MetaRectAction & operator =(MetaRectAction const &) = delete; // due to MetaAction
MetaRectAction & operator =(MetaRectAction &&) = delete; // due to MetaAction
private:
virtual ~MetaRectAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaRectAction( const tools::Rectangle& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
};
class VCL_DLLPUBLIC MetaRoundRectAction final : public MetaAction
{
private:
tools::Rectangle maRect;
sal_uInt32 mnHorzRound;
sal_uInt32 mnVertRound;
public:
MetaRoundRectAction();
MetaRoundRectAction(MetaRoundRectAction const &) = default;
MetaRoundRectAction(MetaRoundRectAction &&) = default;
MetaRoundRectAction & operator =(MetaRoundRectAction const &) = delete; // due to MetaAction
MetaRoundRectAction & operator =(MetaRoundRectAction &&) = delete; // due to MetaAction
private:
virtual ~MetaRoundRectAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaRoundRectAction( const tools::Rectangle& rRect,
sal_uInt32 nHorzRound, sal_uInt32 nVertRound );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
sal_uInt32 GetHorzRound() const { return mnHorzRound; }
sal_uInt32 GetVertRound() const { return mnVertRound; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
void SetHorzRound(sal_uInt32 rHorzRound) { mnHorzRound = rHorzRound; }
void SetVertRound(sal_uInt32 rVertRound) { mnVertRound = rVertRound; }
};
class VCL_DLLPUBLIC MetaEllipseAction final : public MetaAction
{
private:
tools::Rectangle maRect;
public:
MetaEllipseAction();
MetaEllipseAction(MetaEllipseAction const &) = default;
MetaEllipseAction(MetaEllipseAction &&) = default;
MetaEllipseAction & operator =(MetaEllipseAction const &) = delete; // due to MetaAction
MetaEllipseAction & operator =(MetaEllipseAction &&) = delete; // due to MetaAction
private:
virtual ~MetaEllipseAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaEllipseAction( const tools::Rectangle& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
};
class VCL_DLLPUBLIC MetaArcAction final : public MetaAction
{
private:
tools::Rectangle maRect;
Point maStartPt;
Point maEndPt;
public:
MetaArcAction();
MetaArcAction(MetaArcAction const &) = default;
MetaArcAction(MetaArcAction &&) = default;
MetaArcAction & operator =(MetaArcAction const &) = delete; // due to MetaAction
MetaArcAction & operator =(MetaArcAction &&) = delete; // due to MetaAction
private:
virtual ~MetaArcAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaArcAction( const tools::Rectangle& rRect,
const Point& rStart, const Point& rEnd );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const Point& GetStartPoint() const { return maStartPt; }
const Point& GetEndPoint() const { return maEndPt; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
void SetStartPoint(const Point& rPoint) { maStartPt = rPoint; }
void SetEndPoint(const Point& rPoint) { maEndPt = rPoint; }
};
class VCL_DLLPUBLIC MetaPieAction final : public MetaAction
{
private:
tools::Rectangle maRect;
Point maStartPt;
Point maEndPt;
public:
MetaPieAction();
MetaPieAction(MetaPieAction const &) = default;
MetaPieAction(MetaPieAction &&) = default;
MetaPieAction & operator =(MetaPieAction const &) = delete; // due to MetaAction
MetaPieAction & operator =(MetaPieAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPieAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaPieAction( const tools::Rectangle& rRect,
const Point& rStart, const Point& rEnd );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const Point& GetStartPoint() const { return maStartPt; }
const Point& GetEndPoint() const { return maEndPt; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
void SetStartPoint(const Point& rPoint) { maStartPt = rPoint; }
void SetEndPoint(const Point& rPoint) { maEndPt = rPoint; }
};
class VCL_DLLPUBLIC MetaChordAction final : public MetaAction
{
private:
tools::Rectangle maRect;
Point maStartPt;
Point maEndPt;
public:
MetaChordAction();
MetaChordAction(MetaChordAction const &) = default;
MetaChordAction(MetaChordAction &&) = default;
MetaChordAction & operator =(MetaChordAction const &) = delete; // due to MetaAction
MetaChordAction & operator =(MetaChordAction &&) = delete; // due to MetaAction
private:
virtual ~MetaChordAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaChordAction( const tools::Rectangle& rRect,
const Point& rStart, const Point& rEnd );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const Point& GetStartPoint() const { return maStartPt; }
const Point& GetEndPoint() const { return maEndPt; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
void SetStartPoint(const Point& rPoint) { maStartPt = rPoint; }
void SetEndPoint(const Point& rPoint) { maEndPt = rPoint; }
};
class VCL_DLLPUBLIC MetaPolyLineAction final : public MetaAction
{
private:
LineInfo maLineInfo;
tools::Polygon maPoly;
public:
MetaPolyLineAction();
MetaPolyLineAction(MetaPolyLineAction const &) = default;
MetaPolyLineAction(MetaPolyLineAction &&) = default;
MetaPolyLineAction & operator =(MetaPolyLineAction const &) = delete; // due to MetaAction
MetaPolyLineAction & operator =(MetaPolyLineAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPolyLineAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaPolyLineAction( const tools::Polygon& );
explicit MetaPolyLineAction( const tools::Polygon&, const LineInfo& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Polygon& GetPolygon() const { return maPoly; }
const LineInfo& GetLineInfo() const { return maLineInfo; }
void SetLineInfo(const LineInfo& rLineInfo) { maLineInfo = rLineInfo; }
void SetPolygon(const tools::Polygon& rPoly) { maPoly = rPoly; }
};
class VCL_DLLPUBLIC MetaPolygonAction final : public MetaAction
{
private:
tools::Polygon maPoly;
public:
MetaPolygonAction();
MetaPolygonAction(MetaPolygonAction const &) = default;
MetaPolygonAction(MetaPolygonAction &&) = default;
MetaPolygonAction & operator =(MetaPolygonAction const &) = delete; // due to MetaAction
MetaPolygonAction & operator =(MetaPolygonAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPolygonAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaPolygonAction( const tools::Polygon& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Polygon& GetPolygon() const { return maPoly; }
void SetPolygon(const tools::Polygon& rPoly) { maPoly = rPoly; }
};
class VCL_DLLPUBLIC MetaPolyPolygonAction final : public MetaAction
{
private:
tools::PolyPolygon maPolyPoly;
public:
MetaPolyPolygonAction();
MetaPolyPolygonAction(MetaPolyPolygonAction const &) = default;
MetaPolyPolygonAction(MetaPolyPolygonAction &&) = default;
MetaPolyPolygonAction & operator =(MetaPolyPolygonAction const &) = delete; // due to MetaAction
MetaPolyPolygonAction & operator =(MetaPolyPolygonAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPolyPolygonAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaPolyPolygonAction( const tools::PolyPolygon& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::PolyPolygon& GetPolyPolygon() const { return maPolyPoly; }
void SetPolyPolygon(const tools::PolyPolygon& rPolyPoly) { maPolyPoly = rPolyPoly; }
};
class SAL_DLLPUBLIC_RTTI MetaTextAction final : public MetaAction
{
private:
Point maPt;
OUString maStr;
sal_Int32 mnIndex;
sal_Int32 mnLen;
public:
MetaTextAction();
MetaTextAction(MetaTextAction const &) = default;
MetaTextAction(MetaTextAction &&) = default;
MetaTextAction & operator =(MetaTextAction const &) = delete; // due to MetaAction
MetaTextAction & operator =(MetaTextAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTextAction( const Point& rPt, const OUString& rStr,
sal_Int32 nIndex, sal_Int32 nLen );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetPoint() const { return maPt; }
const OUString& GetText() const { return maStr; }
sal_Int32 GetIndex() const { return mnIndex; }
sal_Int32 GetLen() const { return mnLen; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetText(const OUString& rStr) { maStr = rStr; }
void SetIndex(sal_Int32 rIndex) { mnIndex = rIndex; }
void SetLen(sal_Int32 rLen) { mnLen = rLen; }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaTextArrayAction final : public MetaAction
{
private:
Point maStartPt;
OUString maStr;
std::vector<sal_Int32> maDXAry;
sal_Int32 mnIndex;
sal_Int32 mnLen;
virtual ~MetaTextArrayAction() override;
public:
MetaTextArrayAction();
MetaTextArrayAction( const MetaTextArrayAction& rAction );
MetaTextArrayAction( const Point& rStartPt, const OUString& rStr,
const std::vector<sal_Int32>& rDXAry, sal_Int32 nIndex,
sal_Int32 nLen );
MetaTextArrayAction( const Point& rStartPt, const OUString& rStr,
o3tl::span<const sal_Int32> pDXAry, sal_Int32 nIndex,
sal_Int32 nLen );
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetPoint() const { return maStartPt; }
const OUString& GetText() const { return maStr; }
sal_Int32 GetIndex() const { return mnIndex; }
sal_Int32 GetLen() const { return mnLen; }
const std::vector<sal_Int32> & GetDXArray() const { return maDXAry; }
void SetPoint(const Point& rPt) { maStartPt = rPt; }
void SetText(const OUString& rStr) { maStr = rStr; }
void SetIndex(sal_Int32 rIndex) { mnIndex = rIndex; }
void SetLen(sal_Int32 rLen) { mnLen = rLen; }
void SetDXArray(std::vector<sal_Int32> aArray);
};
class SAL_DLLPUBLIC_RTTI MetaStretchTextAction final : public MetaAction
{
private:
Point maPt;
OUString maStr;
sal_uInt32 mnWidth;
sal_Int32 mnIndex;
sal_Int32 mnLen;
public:
MetaStretchTextAction();
MetaStretchTextAction(MetaStretchTextAction const &) = default;
MetaStretchTextAction(MetaStretchTextAction &&) = default;
MetaStretchTextAction & operator =(MetaStretchTextAction const &) = delete; // due to MetaAction
MetaStretchTextAction & operator =(MetaStretchTextAction &&) = delete; // due to MetaAction
private:
virtual ~MetaStretchTextAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaStretchTextAction( const Point& rPt, sal_uInt32 nWidth,
const OUString& rStr,
sal_Int32 nIndex, sal_Int32 nLen );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetPoint() const { return maPt; }
const OUString& GetText() const { return maStr; }
sal_uInt32 GetWidth() const { return mnWidth; }
sal_Int32 GetIndex() const { return mnIndex; }
sal_Int32 GetLen() const { return mnLen; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetText(const OUString& rStr) { maStr = rStr; }
void SetWidth(sal_uInt32 rWidth) { mnWidth = rWidth; }
void SetIndex(sal_uInt32 rIndex) { mnIndex = rIndex; }
void SetLen(sal_uInt32 rLen) { mnLen = rLen; }
};
class SAL_DLLPUBLIC_RTTI MetaTextRectAction final : public MetaAction
{
private:
tools::Rectangle maRect;
OUString maStr;
DrawTextFlags mnStyle;
public:
MetaTextRectAction();
MetaTextRectAction(MetaTextRectAction const &) = default;
MetaTextRectAction(MetaTextRectAction &&) = default;
MetaTextRectAction & operator =(MetaTextRectAction const &) = delete; // due to MetaAction
MetaTextRectAction & operator =(MetaTextRectAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextRectAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTextRectAction( const tools::Rectangle& rRect,
const OUString& rStr, DrawTextFlags nStyle );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const OUString& GetText() const { return maStr; }
DrawTextFlags GetStyle() const { return mnStyle; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
void SetText(const OUString& rStr) { maStr = rStr; }
void SetStyle(DrawTextFlags rStyle) { mnStyle = rStyle; }
};
class SAL_DLLPUBLIC_RTTI MetaTextLineAction final : public MetaAction
{
private:
Point maPos;
tools::Long mnWidth;
FontStrikeout meStrikeout;
FontLineStyle meUnderline;
FontLineStyle meOverline;
public:
MetaTextLineAction();
MetaTextLineAction(MetaTextLineAction const &) = default;
MetaTextLineAction(MetaTextLineAction &&) = default;
MetaTextLineAction & operator =(MetaTextLineAction const &) = delete; // due to MetaAction
MetaTextLineAction & operator =(MetaTextLineAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextLineAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTextLineAction( const Point& rPos, tools::Long nWidth,
FontStrikeout eStrikeout,
FontLineStyle eUnderline,
FontLineStyle eOverline );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Point& GetStartPoint() const { return maPos; }
tools::Long GetWidth() const { return mnWidth; }
FontStrikeout GetStrikeout() const { return meStrikeout; }
FontLineStyle GetUnderline() const { return meUnderline; }
FontLineStyle GetOverline() const { return meOverline; }
void SetStartPoint(const Point& rPos) { maPos = rPos; }
void SetWidth(tools::Long rWidth) { mnWidth = rWidth; }
void SetStrikeout(FontStrikeout eStrikeout) { meStrikeout = eStrikeout; }
void SetUnderline(FontLineStyle eUnderline) { meUnderline = eUnderline; }
void SetOverline(FontLineStyle eOverline) { meOverline = eOverline; }
};
class VCL_DLLPUBLIC MetaBmpAction final : public MetaAction
{
private:
Bitmap maBmp;
Point maPt;
public:
MetaBmpAction();
MetaBmpAction(MetaBmpAction const &) = default;
MetaBmpAction(MetaBmpAction &&) = default;
MetaBmpAction & operator =(MetaBmpAction const &) = delete; // due to MetaAction
MetaBmpAction & operator =(MetaBmpAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpAction( const Point& rPt, const Bitmap& rBmp );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Point& GetPoint() const { return maPt; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetPoint(const Point& rPt) { maPt = rPt; }
};
class VCL_DLLPUBLIC MetaBmpScaleAction final : public MetaAction
{
private:
Bitmap maBmp;
Point maPt;
Size maSz;
public:
MetaBmpScaleAction();
MetaBmpScaleAction(MetaBmpScaleAction const &) = default;
MetaBmpScaleAction(MetaBmpScaleAction &&) = default;
MetaBmpScaleAction & operator =(MetaBmpScaleAction const &) = delete; // due to MetaAction
MetaBmpScaleAction & operator =(MetaBmpScaleAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpScaleAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpScaleAction( const Point& rPt, const Size& rSz,
const Bitmap& rBmp );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Point& GetPoint() const { return maPt; }
const Size& GetSize() const { return maSz; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetSize(const Size& rSz) { maSz = rSz; }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaBmpScalePartAction final : public MetaAction
{
private:
Bitmap maBmp;
Point maDstPt;
Size maDstSz;
Point maSrcPt;
Size maSrcSz;
public:
MetaBmpScalePartAction();
MetaBmpScalePartAction(MetaBmpScalePartAction const &) = default;
MetaBmpScalePartAction(MetaBmpScalePartAction &&) = default;
MetaBmpScalePartAction & operator =(MetaBmpScalePartAction const &) = delete; // due to MetaAction
MetaBmpScalePartAction & operator =(MetaBmpScalePartAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpScalePartAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpScalePartAction( const Point& rDstPt, const Size& rDstSz,
const Point& rSrcPt, const Size& rSrcSz,
const Bitmap& rBmp );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Point& GetDestPoint() const { return maDstPt; }
const Size& GetDestSize() const { return maDstSz; }
const Point& GetSrcPoint() const { return maSrcPt; }
const Size& GetSrcSize() const { return maSrcSz; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetDestPoint(const Point& rPt) { maDstPt = rPt; }
void SetDestSize(const Size& rSz) { maDstSz = rSz; }
void SetSrcPoint(const Point& rPt) { maSrcPt = rPt; }
void SetSrcSize(const Size& rSz) { maSrcSz = rSz; }
};
class VCL_DLLPUBLIC MetaBmpExAction final : public MetaAction
{
private:
BitmapEx maBmpEx;
Point maPt;
public:
MetaBmpExAction();
MetaBmpExAction(MetaBmpExAction const &) = default;
MetaBmpExAction(MetaBmpExAction &&) = default;
MetaBmpExAction & operator =(MetaBmpExAction const &) = delete; // due to MetaAction
MetaBmpExAction & operator =(MetaBmpExAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpExAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpExAction( const Point& rPt, const BitmapEx& rBmpEx );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const BitmapEx& GetBitmapEx() const { return maBmpEx; }
const Point& GetPoint() const { return maPt; }
void SetBitmapEx(BitmapEx rBmpEx) { maBmpEx = rBmpEx; }
void SetPoint(const Point& rPt) { maPt = rPt; }
bool IsTransparent() const override { return GetBitmapEx().IsAlpha(); }
};
class VCL_DLLPUBLIC MetaBmpExScaleAction final : public MetaAction
{
private:
BitmapEx maBmpEx;
Point maPt;
Size maSz;
public:
MetaBmpExScaleAction();
MetaBmpExScaleAction(MetaBmpExScaleAction const &) = default;
MetaBmpExScaleAction(MetaBmpExScaleAction &&) = default;
MetaBmpExScaleAction & operator =(MetaBmpExScaleAction const &) = delete; // due to MetaAction
MetaBmpExScaleAction & operator =(MetaBmpExScaleAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpExScaleAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpExScaleAction( const Point& rPt, const Size& rSz,
const BitmapEx& rBmpEx ) ;
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const BitmapEx& GetBitmapEx() const { return maBmpEx; }
const Point& GetPoint() const { return maPt; }
const Size& GetSize() const { return maSz; }
void SetBitmapEx(const BitmapEx& rBmpEx) { maBmpEx = rBmpEx; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetSize(const Size& rSz) { maSz = rSz; }
bool IsTransparent() const override { return GetBitmapEx().IsAlpha(); }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaBmpExScalePartAction final : public MetaAction
{
private:
BitmapEx maBmpEx;
Point maDstPt;
Size maDstSz;
Point maSrcPt;
Size maSrcSz;
public:
MetaBmpExScalePartAction();
MetaBmpExScalePartAction(MetaBmpExScalePartAction const &) = default;
MetaBmpExScalePartAction(MetaBmpExScalePartAction &&) = default;
MetaBmpExScalePartAction & operator =(MetaBmpExScalePartAction const &) = delete; // due to MetaAction
MetaBmpExScalePartAction & operator =(MetaBmpExScalePartAction &&) = delete; // due to MetaAction
private:
virtual ~MetaBmpExScalePartAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaBmpExScalePartAction( const Point& rDstPt, const Size& rDstSz,
const Point& rSrcPt, const Size& rSrcSz,
const BitmapEx& rBmpEx );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const BitmapEx& GetBitmapEx() const { return maBmpEx; }
const Point& GetDestPoint() const { return maDstPt; }
const Size& GetDestSize() const { return maDstSz; }
const Point& GetSrcPoint() const { return maSrcPt; }
const Size& GetSrcSize() const { return maSrcSz; }
void SetBitmapEx(const BitmapEx& rBmpEx) { maBmpEx = rBmpEx; }
void SetDestPoint(const Point& rDstPt) { maDstPt = rDstPt; }
void SetDestSize(const Size& rDstSz) { maDstSz = rDstSz; }
void SetSrcPoint(const Point& rSrcPt) { maSrcPt = rSrcPt; }
void SetSrcSize(const Size& rSrcSz) { maSrcSz = rSrcSz; }
bool IsTransparent() const override { return GetBitmapEx().IsAlpha(); }
};
class SAL_DLLPUBLIC_RTTI MetaMaskAction final : public MetaAction
{
private:
Bitmap maBmp;
Color maColor;
Point maPt;
public:
MetaMaskAction();
MetaMaskAction(MetaMaskAction const &) = default;
MetaMaskAction(MetaMaskAction &&) = default;
MetaMaskAction & operator =(MetaMaskAction const &) = delete; // due to MetaAction
MetaMaskAction & operator =(MetaMaskAction &&) = delete; // due to MetaAction
private:
virtual ~MetaMaskAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaMaskAction( const Point& rPt,
const Bitmap& rBmp,
const Color& rColor );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Color& GetColor() const { return maColor; }
const Point& GetPoint() const { return maPt; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetPoint(const Point& rPt) { maPt = rPt; }
};
class SAL_DLLPUBLIC_RTTI MetaMaskScaleAction final : public MetaAction
{
private:
Bitmap maBmp;
Color maColor;
Point maPt;
Size maSz;
public:
MetaMaskScaleAction();
MetaMaskScaleAction(MetaMaskScaleAction const &) = default;
MetaMaskScaleAction(MetaMaskScaleAction &&) = default;
MetaMaskScaleAction & operator =(MetaMaskScaleAction const &) = delete; // due to MetaAction
MetaMaskScaleAction & operator =(MetaMaskScaleAction &&) = delete; // due to MetaAction
private:
virtual ~MetaMaskScaleAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaMaskScaleAction( const Point& rPt, const Size& rSz,
const Bitmap& rBmp,
const Color& rColor );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Color& GetColor() const { return maColor; }
const Point& GetPoint() const { return maPt; }
const Size& GetSize() const { return maSz; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetPoint(const Point& rPt) { maPt = rPt; }
void SetSize(const Size& rSz) { maSz = rSz; }
};
class SAL_DLLPUBLIC_RTTI MetaMaskScalePartAction final : public MetaAction
{
private:
Bitmap maBmp;
Color maColor;
Point maDstPt;
Size maDstSz;
Point maSrcPt;
Size maSrcSz;
public:
MetaMaskScalePartAction();
MetaMaskScalePartAction(MetaMaskScalePartAction const &) = default;
MetaMaskScalePartAction(MetaMaskScalePartAction &&) = default;
MetaMaskScalePartAction & operator =(MetaMaskScalePartAction const &) = delete; // due to MetaAction
MetaMaskScalePartAction & operator =(MetaMaskScalePartAction &&) = delete; // due to MetaAction
private:
virtual ~MetaMaskScalePartAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaMaskScalePartAction( const Point& rDstPt, const Size& rDstSz,
const Point& rSrcPt, const Size& rSrcSz,
const Bitmap& rBmp,
const Color& rColor );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const Bitmap& GetBitmap() const { return maBmp; }
const Color& GetColor() const { return maColor; }
const Point& GetDestPoint() const { return maDstPt; }
const Size& GetDestSize() const { return maDstSz; }
const Point& GetSrcPoint() const { return maSrcPt; }
const Size& GetSrcSize() const { return maSrcSz; }
void SetBitmap(const Bitmap& rBmp) { maBmp = rBmp; }
void SetColor(Color rColor) { maColor = rColor; }
void SetDestPoint(const Point& rPt) { maDstPt = rPt; }
void SetDestSize(const Size& rSz) { maDstSz = rSz; }
void SetSrcPoint(const Point& rPt) { maSrcPt = rPt; }
void SetSrcSize(const Size& rSz) { maSrcSz = rSz; }
};
class SAL_DLLPUBLIC_RTTI MetaGradientAction final : public MetaAction
{
private:
tools::Rectangle maRect;
Gradient maGradient;
public:
MetaGradientAction();
MetaGradientAction(MetaGradientAction const &) = default;
MetaGradientAction(MetaGradientAction &&) = default;
MetaGradientAction & operator =(MetaGradientAction const &) = delete; // due to MetaAction
MetaGradientAction & operator =(MetaGradientAction &&) = delete; // due to MetaAction
private:
virtual ~MetaGradientAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaGradientAction( const tools::Rectangle& rRect, const Gradient& rGradient );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const Gradient& GetGradient() const { return maGradient; }
void SetGradient(const Gradient& rGradient) { maGradient = rGradient; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
};
class VCL_DLLPUBLIC MetaGradientExAction final : public MetaAction
{
private:
tools::PolyPolygon maPolyPoly;
Gradient maGradient;
public:
MetaGradientExAction();
MetaGradientExAction(MetaGradientExAction const &) = default;
MetaGradientExAction(MetaGradientExAction &&) = default;
MetaGradientExAction & operator =(MetaGradientExAction const &) = delete; // due to MetaAction
MetaGradientExAction & operator =(MetaGradientExAction &&) = delete; // due to MetaAction
private:
virtual ~MetaGradientExAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaGradientExAction( const tools::PolyPolygon& rPolyPoly, const Gradient& rGradient );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::PolyPolygon& GetPolyPolygon() const { return maPolyPoly; }
const Gradient& GetGradient() const { return maGradient; }
void SetPolyPolygon(const tools::PolyPolygon& rPolyPoly) { maPolyPoly = rPolyPoly; }
void SetGradient(const Gradient& rGradient) { maGradient = rGradient; }
};
class SAL_DLLPUBLIC_RTTI MetaHatchAction final : public MetaAction
{
private:
tools::PolyPolygon maPolyPoly;
Hatch maHatch;
public:
MetaHatchAction();
MetaHatchAction(MetaHatchAction const &) = default;
MetaHatchAction(MetaHatchAction &&) = default;
MetaHatchAction & operator =(MetaHatchAction const &) = delete; // due to MetaAction
MetaHatchAction & operator =(MetaHatchAction &&) = delete; // due to MetaAction
private:
virtual ~MetaHatchAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaHatchAction( const tools::PolyPolygon& rPolyPoly, const Hatch& rHatch );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::PolyPolygon& GetPolyPolygon() const { return maPolyPoly; }
const Hatch& GetHatch() const { return maHatch; }
void SetPolyPolygon(const tools::PolyPolygon& rPolyPoly) { maPolyPoly = rPolyPoly; }
void SetHatch(const Hatch& rHatch) { maHatch = rHatch; }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaWallpaperAction final : public MetaAction
{
private:
tools::Rectangle maRect;
Wallpaper maWallpaper;
public:
MetaWallpaperAction();
MetaWallpaperAction(MetaWallpaperAction const &) = default;
MetaWallpaperAction(MetaWallpaperAction &&) = default;
MetaWallpaperAction & operator =(MetaWallpaperAction const &) = delete; // due to MetaAction
MetaWallpaperAction & operator =(MetaWallpaperAction &&) = delete; // due to MetaAction
private:
virtual ~MetaWallpaperAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaWallpaperAction( const tools::Rectangle& rRect,
const Wallpaper& rPaper );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
const Wallpaper& GetWallpaper() const { return maWallpaper; }
void SetWallpaper(const Wallpaper& rWallpaper) { maWallpaper = rWallpaper; }
};
class VCL_DLLPUBLIC MetaClipRegionAction final : public MetaAction
{
private:
vcl::Region maRegion;
bool mbClip;
public:
MetaClipRegionAction();
MetaClipRegionAction(MetaClipRegionAction const &) = default;
MetaClipRegionAction(MetaClipRegionAction &&) = default;
MetaClipRegionAction & operator =(MetaClipRegionAction const &) = delete; // due to MetaAction
MetaClipRegionAction & operator =(MetaClipRegionAction &&) = delete; // due to MetaAction
private:
virtual ~MetaClipRegionAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaClipRegionAction( const vcl::Region& rRegion, bool bClip );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const vcl::Region& GetRegion() const { return maRegion; }
bool IsClipping() const { return mbClip; }
void SetRegion(const vcl::Region& rRegion) { maRegion = rRegion; }
void SetClipping(bool bClip) { mbClip = bClip; }
};
class VCL_DLLPUBLIC MetaISectRectClipRegionAction final : public MetaAction
{
private:
tools::Rectangle maRect;
public:
MetaISectRectClipRegionAction();
MetaISectRectClipRegionAction(MetaISectRectClipRegionAction const &) = default;
MetaISectRectClipRegionAction(MetaISectRectClipRegionAction &&) = default;
MetaISectRectClipRegionAction & operator =(MetaISectRectClipRegionAction const &) = delete; // due to MetaAction
MetaISectRectClipRegionAction & operator =(MetaISectRectClipRegionAction &&) = delete; // due to MetaAction
private:
virtual ~MetaISectRectClipRegionAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaISectRectClipRegionAction( const tools::Rectangle& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::Rectangle& GetRect() const { return maRect; }
void SetRect(const tools::Rectangle& rRect) { maRect = rRect; }
};
class VCL_DLLPUBLIC MetaISectRegionClipRegionAction final : public MetaAction
{
private:
vcl::Region maRegion;
public:
MetaISectRegionClipRegionAction();
MetaISectRegionClipRegionAction(MetaISectRegionClipRegionAction const &) = default;
MetaISectRegionClipRegionAction(MetaISectRegionClipRegionAction &&) = default;
MetaISectRegionClipRegionAction & operator =(MetaISectRegionClipRegionAction const &) = delete; // due to MetaAction
MetaISectRegionClipRegionAction & operator =(MetaISectRegionClipRegionAction &&) = delete; // due to MetaAction
private:
virtual ~MetaISectRegionClipRegionAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaISectRegionClipRegionAction( const vcl::Region& );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const vcl::Region& GetRegion() const { return maRegion; }
void SetRegion(const vcl::Region& rRegion) { maRegion = rRegion; }
};
class VCL_DLLPUBLIC MetaMoveClipRegionAction final : public MetaAction
{
private:
tools::Long mnHorzMove;
tools::Long mnVertMove;
public:
MetaMoveClipRegionAction();
MetaMoveClipRegionAction(MetaMoveClipRegionAction const &) = default;
MetaMoveClipRegionAction(MetaMoveClipRegionAction &&) = default;
MetaMoveClipRegionAction & operator =(MetaMoveClipRegionAction const &) = delete; // due to MetaAction
MetaMoveClipRegionAction & operator =(MetaMoveClipRegionAction &&) = delete; // due to MetaAction
private:
virtual ~MetaMoveClipRegionAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaMoveClipRegionAction( tools::Long nHorzMove, tools::Long nVertMove );
virtual void Scale( double fScaleX, double fScaleY ) override;
tools::Long GetHorzMove() const { return mnHorzMove; }
tools::Long GetVertMove() const { return mnVertMove; }
void SetHorzMove(tools::Long nHorzMove) { mnHorzMove = nHorzMove; }
void SetVertMove(tools::Long nVertMove) { mnVertMove = nVertMove; }
};
class VCL_DLLPUBLIC MetaLineColorAction final : public MetaAction
{
private:
Color maColor;
bool mbSet;
public:
MetaLineColorAction();
MetaLineColorAction(MetaLineColorAction const &) = default;
MetaLineColorAction(MetaLineColorAction &&) = default;
MetaLineColorAction & operator =(MetaLineColorAction const &) = delete; // due to MetaAction
MetaLineColorAction & operator =(MetaLineColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaLineColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaLineColorAction( const Color& rColor, bool bSet );
const Color& GetColor() const { return maColor; }
bool IsSetting() const { return mbSet; }
void SetColor(const Color& rColor) { maColor = rColor; }
void SetSetting(bool rSet) { mbSet = rSet; }
};
class VCL_DLLPUBLIC MetaFillColorAction final : public MetaAction
{
private:
Color maColor;
bool mbSet;
public:
MetaFillColorAction();
MetaFillColorAction(MetaFillColorAction const &) = default;
MetaFillColorAction(MetaFillColorAction &&) = default;
MetaFillColorAction & operator =(MetaFillColorAction const &) = delete; // due to MetaAction
MetaFillColorAction & operator =(MetaFillColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaFillColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaFillColorAction( const Color& rColor, bool bSet );
const Color& GetColor() const { return maColor; }
bool IsSetting() const { return mbSet; }
void SetSetting(bool rSet) { mbSet = rSet; }
void SetColor(Color rColor) { maColor = rColor; }
};
class VCL_DLLPUBLIC MetaTextColorAction final : public MetaAction
{
private:
Color maColor;
public:
MetaTextColorAction();
MetaTextColorAction(MetaTextColorAction const &) = default;
MetaTextColorAction(MetaTextColorAction &&) = default;
MetaTextColorAction & operator =(MetaTextColorAction const &) = delete; // due to MetaAction
MetaTextColorAction & operator =(MetaTextColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaTextColorAction( const Color& );
const Color& GetColor() const { return maColor; }
void SetColor(Color rColor) { maColor = rColor; }
};
class VCL_DLLPUBLIC MetaTextFillColorAction final : public MetaAction
{
private:
Color maColor;
bool mbSet;
public:
MetaTextFillColorAction();
MetaTextFillColorAction(MetaTextFillColorAction const &) = default;
MetaTextFillColorAction(MetaTextFillColorAction &&) = default;
MetaTextFillColorAction & operator =(MetaTextFillColorAction const &) = delete; // due to MetaAction
MetaTextFillColorAction & operator =(MetaTextFillColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextFillColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTextFillColorAction( const Color& rColor, bool bSet );
const Color& GetColor() const { return maColor; }
void SetColor(Color rColor) { maColor = rColor; }
void SetSetting(bool bSet) { mbSet = bSet; }
bool IsSetting() const { return mbSet; }
};
class VCL_DLLPUBLIC MetaTextLineColorAction final : public MetaAction
{
private:
Color maColor;
bool mbSet;
public:
MetaTextLineColorAction();
MetaTextLineColorAction(MetaTextLineColorAction const &) = default;
MetaTextLineColorAction(MetaTextLineColorAction &&) = default;
MetaTextLineColorAction & operator =(MetaTextLineColorAction const &) = delete; // due to MetaAction
MetaTextLineColorAction & operator =(MetaTextLineColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextLineColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTextLineColorAction( const Color& rColor, bool bSet );
const Color& GetColor() const { return maColor; }
void SetColor(const Color& rColor) { maColor = rColor; }
void SetSetting(bool bSet) { mbSet = bSet; }
bool IsSetting() const { return mbSet; }
};
class VCL_DLLPUBLIC MetaOverlineColorAction final : public MetaAction
{
private:
Color maColor;
bool mbSet;
public:
MetaOverlineColorAction();
MetaOverlineColorAction(MetaOverlineColorAction const &) = default;
MetaOverlineColorAction(MetaOverlineColorAction &&) = default;
MetaOverlineColorAction & operator =(MetaOverlineColorAction const &) = delete; // due to MetaAction
MetaOverlineColorAction & operator =(MetaOverlineColorAction &&) = delete; // due to MetaAction
private:
virtual ~MetaOverlineColorAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaOverlineColorAction( const Color& rColor, bool bSet );
const Color& GetColor() const { return maColor; }
void SetColor(const Color& rColor) { maColor = rColor; }
void SetSetting(bool bSet) { mbSet = bSet; }
bool IsSetting() const { return mbSet; }
};
class VCL_DLLPUBLIC MetaTextAlignAction final : public MetaAction
{
private:
TextAlign maAlign;
public:
MetaTextAlignAction();
MetaTextAlignAction(MetaTextAlignAction const &) = default;
MetaTextAlignAction(MetaTextAlignAction &&) = default;
MetaTextAlignAction & operator =(MetaTextAlignAction const &) = delete; // due to MetaAction
MetaTextAlignAction & operator =(MetaTextAlignAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextAlignAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaTextAlignAction( TextAlign eAlign );
TextAlign GetTextAlign() const { return maAlign; }
void SetTextAlign(TextAlign eAlign) { maAlign = eAlign; }
};
class VCL_DLLPUBLIC MetaMapModeAction final : public MetaAction
{
private:
MapMode maMapMode;
public:
MetaMapModeAction();
MetaMapModeAction(MetaMapModeAction const &) = default;
MetaMapModeAction(MetaMapModeAction &&) = default;
MetaMapModeAction & operator =(MetaMapModeAction const &) = delete; // due to MetaAction
MetaMapModeAction & operator =(MetaMapModeAction &&) = delete; // due to MetaAction
private:
virtual ~MetaMapModeAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaMapModeAction( const MapMode& );
virtual void Scale( double fScaleX, double fScaleY ) override;
const MapMode& GetMapMode() const { return maMapMode; }
void SetMapMode(const MapMode& rMapMode) { maMapMode = rMapMode; }
};
// tdf#127471 decl for friend below
namespace emfio { class ScaledFontDetectCorrectHelper; }
class VCL_DLLPUBLIC MetaFontAction final : public MetaAction
{
private:
vcl::Font maFont;
// tdf#127471 for import correction of own wrong written EMF/WMF files allow correction
// of FontScale after import. Only from there, so use a friend here and keep the method private
friend class emfio::ScaledFontDetectCorrectHelper;
void correctFontScale(tools::Long nNewFontScale) { maFont.SetAverageFontWidth(nNewFontScale); }
public:
MetaFontAction();
MetaFontAction(MetaFontAction const &) = default;
MetaFontAction(MetaFontAction &&) = default;
MetaFontAction & operator =(MetaFontAction const &) = delete; // due to MetaAction
MetaFontAction & operator =(MetaFontAction &&) = delete; // due to MetaAction
private:
virtual ~MetaFontAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaFontAction( const vcl::Font& );
virtual void Scale( double fScaleX, double fScaleY ) override;
const vcl::Font& GetFont() const { return maFont; }
void SetFont(const vcl::Font& rFont) { maFont = rFont; }
};
class VCL_DLLPUBLIC MetaPushAction final : public MetaAction
{
private:
vcl::PushFlags mnFlags;
public:
MetaPushAction();
MetaPushAction(MetaPushAction const &) = default;
MetaPushAction(MetaPushAction &&) = default;
MetaPushAction & operator =(MetaPushAction const &) = delete; // due to MetaAction
MetaPushAction & operator =(MetaPushAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPushAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaPushAction( vcl::PushFlags nFlags );
vcl::PushFlags GetFlags() const { return mnFlags; }
void SetPushFlags(const vcl::PushFlags nFlags) { mnFlags = nFlags; }
};
class VCL_DLLPUBLIC MetaPopAction final : public MetaAction
{
public:
MetaPopAction();
MetaPopAction(MetaPopAction const &) = default;
MetaPopAction(MetaPopAction &&) = default;
MetaPopAction & operator =(MetaPopAction const &) = delete; // due to MetaAction
MetaPopAction & operator =(MetaPopAction &&) = delete; // due to MetaAction
private:
virtual ~MetaPopAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
};
class VCL_DLLPUBLIC MetaRasterOpAction final : public MetaAction
{
private:
RasterOp meRasterOp;
public:
MetaRasterOpAction();
MetaRasterOpAction(MetaRasterOpAction const &) = default;
MetaRasterOpAction(MetaRasterOpAction &&) = default;
MetaRasterOpAction & operator =(MetaRasterOpAction const &) = delete; // due to MetaAction
MetaRasterOpAction & operator =(MetaRasterOpAction &&) = delete; // due to MetaAction
private:
virtual ~MetaRasterOpAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaRasterOpAction( RasterOp eRasterOp );
RasterOp GetRasterOp() const { return meRasterOp; }
void SetRasterOp(const RasterOp eRasterOp) { meRasterOp = eRasterOp; }
};
class SAL_DLLPUBLIC_RTTI MetaTransparentAction final : public MetaAction
{
private:
tools::PolyPolygon maPolyPoly;
sal_uInt16 mnTransPercent;
public:
MetaTransparentAction();
MetaTransparentAction(MetaTransparentAction const &) = default;
MetaTransparentAction(MetaTransparentAction &&) = default;
MetaTransparentAction & operator =(MetaTransparentAction const &) = delete; // due to MetaAction
MetaTransparentAction & operator =(MetaTransparentAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTransparentAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaTransparentAction( const tools::PolyPolygon& rPolyPoly, sal_uInt16 nTransPercent );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const tools::PolyPolygon& GetPolyPolygon() const { return maPolyPoly; }
sal_uInt16 GetTransparence() const { return mnTransPercent; }
void SetPolyPolygon(const tools::PolyPolygon& rPolyPoly) { maPolyPoly = rPolyPoly; }
void SetTransparence(const sal_uInt16 nTransPercent) { mnTransPercent = nTransPercent; }
bool IsTransparent() const override { return true; }
};
class SAL_DLLPUBLIC_RTTI MetaFloatTransparentAction final : public MetaAction
{
private:
GDIMetaFile maMtf;
Point maPoint;
Size maSize;
Gradient maGradient;
public:
MetaFloatTransparentAction();
MetaFloatTransparentAction(MetaFloatTransparentAction const &) = default;
MetaFloatTransparentAction(MetaFloatTransparentAction &&) = default;
MetaFloatTransparentAction & operator =(MetaFloatTransparentAction const &) = delete; // due to MetaAction
MetaFloatTransparentAction & operator =(MetaFloatTransparentAction &&) = delete; // due to MetaAction
private:
virtual ~MetaFloatTransparentAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaFloatTransparentAction( const GDIMetaFile& rMtf, const Point& rPos,
const Size& rSize, const Gradient& rGradient );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const GDIMetaFile& GetGDIMetaFile() const { return maMtf; }
const Point& GetPoint() const { return maPoint; }
const Size& GetSize() const { return maSize; }
const Gradient& GetGradient() const { return maGradient; }
void SetGDIMetaFile(const GDIMetaFile &rMtf) { maMtf = rMtf; }
void SetPoint(const Point& rPoint) { maPoint = rPoint; }
void SetSize(const Size& rSize) { maSize = rSize; }
void SetGradient(const Gradient& rGradient) { maGradient = rGradient; }
bool IsTransparent() const override { return true; }
};
class VCL_DLLPUBLIC MetaEPSAction final : public MetaAction
{
private:
GfxLink maGfxLink;
GDIMetaFile maSubst;
Point maPoint;
Size maSize;
public:
MetaEPSAction();
MetaEPSAction(MetaEPSAction const &) = default;
MetaEPSAction(MetaEPSAction &&) = default;
MetaEPSAction & operator =(MetaEPSAction const &) = delete; // due to MetaAction
MetaEPSAction & operator =(MetaEPSAction &&) = delete; // due to MetaAction
private:
virtual ~MetaEPSAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaEPSAction( const Point& rPoint, const Size& rSize,
const GfxLink& rGfxLink, const GDIMetaFile& rSubst );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
const GfxLink& GetLink() const { return maGfxLink; }
const GDIMetaFile& GetSubstitute() const { return maSubst; }
const Point& GetPoint() const { return maPoint; }
const Size& GetSize() const { return maSize; }
void SetLink(const GfxLink& rGfxLink) { maGfxLink = rGfxLink; }
void SetSubstitute(const GDIMetaFile& rSubst) { maSubst = rSubst; }
void SetPoint(const Point& rPoint) { maPoint = rPoint; }
void SetSize(const Size& rSize) { maSize = rSize; }
};
class VCL_DLLPUBLIC MetaRefPointAction final : public MetaAction
{
private:
Point maRefPoint;
bool mbSet;
public:
MetaRefPointAction();
MetaRefPointAction(MetaRefPointAction const &) = default;
MetaRefPointAction(MetaRefPointAction &&) = default;
MetaRefPointAction & operator =(MetaRefPointAction const &) = delete; // due to MetaAction
MetaRefPointAction & operator =(MetaRefPointAction &&) = delete; // due to MetaAction
private:
virtual ~MetaRefPointAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
MetaRefPointAction( const Point& rRefPoint, bool bSet );
const Point& GetRefPoint() const { return maRefPoint; }
void SetRefPoint(const Point& rRefPoint) { maRefPoint = rRefPoint; }
void SetSetting(const bool bSet) { mbSet = bSet; }
bool IsSetting() const { return mbSet; }
};
class VCL_DLLPUBLIC MetaCommentAction final : public MetaAction
{
private:
OString maComment;
sal_Int32 mnValue;
sal_uInt32 mnDataSize;
std::unique_ptr<sal_uInt8[]>
mpData;
SAL_DLLPRIVATE void ImplInitDynamicData( const sal_uInt8* pData, sal_uInt32 nDataSize );
private:
virtual ~MetaCommentAction() override;
public:
explicit MetaCommentAction();
explicit MetaCommentAction( const MetaCommentAction& rAct );
explicit MetaCommentAction( const OString& rComment, sal_Int32 nValue = 0, const sal_uInt8* pData = nullptr, sal_uInt32 nDataSize = 0 );
virtual void Move( tools::Long nHorzMove, tools::Long nVertMove ) override;
virtual void Scale( double fScaleX, double fScaleY ) override;
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
const OString& GetComment() const { return maComment; }
sal_Int32 GetValue() const { return mnValue; }
sal_uInt32 GetDataSize() const { return mnDataSize; }
const sal_uInt8* GetData() const { return mpData.get(); }
void SetComment(const OString& rComment) { maComment = rComment; }
void SetValue(const sal_Int32 nValue) { mnValue = nValue; }
void SetDataSize(const sal_Int32 nDataSize) { mnDataSize = nDataSize; }
void SetData(const sal_uInt8* pData, const sal_uInt32 nDataSize) { ImplInitDynamicData(pData, nDataSize); }
};
class VCL_DLLPUBLIC MetaLayoutModeAction final : public MetaAction
{
private:
vcl::text::ComplexTextLayoutFlags mnLayoutMode;
public:
MetaLayoutModeAction();
MetaLayoutModeAction(MetaLayoutModeAction const &) = default;
MetaLayoutModeAction(MetaLayoutModeAction &&) = default;
MetaLayoutModeAction & operator =(MetaLayoutModeAction const &) = delete; // due to MetaAction
MetaLayoutModeAction & operator =(MetaLayoutModeAction &&) = delete; // due to MetaAction
private:
virtual ~MetaLayoutModeAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaLayoutModeAction( vcl::text::ComplexTextLayoutFlags nLayoutMode );
vcl::text::ComplexTextLayoutFlags GetLayoutMode() const { return mnLayoutMode; }
void SetLayoutMode(const vcl::text::ComplexTextLayoutFlags nLayoutMode) { mnLayoutMode = nLayoutMode; }
};
class VCL_DLLPUBLIC MetaTextLanguageAction final : public MetaAction
{
private:
LanguageType meTextLanguage;
public:
MetaTextLanguageAction();
MetaTextLanguageAction(MetaTextLanguageAction const &) = default;
MetaTextLanguageAction(MetaTextLanguageAction &&) = default;
MetaTextLanguageAction & operator =(MetaTextLanguageAction const &) = delete; // due to MetaAction
MetaTextLanguageAction & operator =(MetaTextLanguageAction &&) = delete; // due to MetaAction
private:
virtual ~MetaTextLanguageAction() override;
public:
virtual void Execute( OutputDevice* pOut ) override;
virtual rtl::Reference<MetaAction> Clone() const override;
explicit MetaTextLanguageAction( LanguageType );
LanguageType GetTextLanguage() const { return meTextLanguage; }
void SetTextLanguage(const LanguageType eTextLanguage) { meTextLanguage = eTextLanguage; }
};
#endif // INCLUDED_VCL_METAACT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|