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
|
/* -*- 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 .
*/
#include <tools/stream.hxx>
#include <tools/vcompat.hxx>
#include <tools/GenericTypeSerializer.hxx>
#include <vcl/hatch.hxx>
ImplHatch::ImplHatch() :
maColor ( COL_BLACK ),
meStyle ( HatchStyle::Single ),
mnDistance ( 1 ),
mnAngle ( 0 )
{
}
bool ImplHatch::operator==( const ImplHatch& rImplHatch ) const
{
return maColor == rImplHatch.maColor &&
meStyle == rImplHatch.meStyle &&
mnDistance == rImplHatch.mnDistance &&
mnAngle == rImplHatch.mnAngle;
}
Hatch::Hatch() = default;
Hatch::Hatch( const Hatch& ) = default;
Hatch::Hatch( HatchStyle eStyle, const Color& rColor,
tools::Long nDistance, Degree10 nAngle10 )
{
mpImplHatch->maColor = rColor;
mpImplHatch->meStyle = eStyle;
mpImplHatch->mnDistance = nDistance;
mpImplHatch->mnAngle = nAngle10;
}
Hatch::~Hatch() = default;
Hatch& Hatch::operator=( const Hatch& ) = default;
bool Hatch::operator==( const Hatch& rHatch ) const
{
return mpImplHatch == rHatch.mpImplHatch;
}
void Hatch::SetColor( const Color& rColor )
{
mpImplHatch->maColor = rColor;
}
void Hatch::SetDistance( tools::Long nDistance )
{
mpImplHatch->mnDistance = nDistance;
}
void Hatch::SetAngle( Degree10 nAngle10 )
{
mpImplHatch->mnAngle = nAngle10;
}
SvStream& ReadHatch( SvStream& rIStm, Hatch& rHatch )
{
VersionCompatRead aCompat(rIStm);
sal_uInt16 nTmpStyle(0);
rIStm.ReadUInt16(nTmpStyle);
rHatch.mpImplHatch->meStyle = static_cast<HatchStyle>(nTmpStyle);
tools::GenericTypeSerializer aSerializer(rIStm);
aSerializer.readColor(rHatch.mpImplHatch->maColor);
sal_Int32 nTmp32(0);
rIStm.ReadInt32(nTmp32);
rHatch.mpImplHatch->mnDistance = nTmp32;
sal_Int16 nTmpAngle(0);
rIStm.ReadInt16(nTmpAngle);
rHatch.mpImplHatch->mnAngle = Degree10(nTmpAngle);
return rIStm;
}
SvStream& WriteHatch( SvStream& rOStm, const Hatch& rHatch )
{
VersionCompatWrite aCompat(rOStm, 1);
rOStm.WriteUInt16( static_cast<sal_uInt16>(rHatch.mpImplHatch->meStyle) );
tools::GenericTypeSerializer aSerializer(rOStm);
aSerializer.writeColor(rHatch.mpImplHatch->maColor);
rOStm.WriteInt32( rHatch.mpImplHatch->mnDistance ).WriteInt16( rHatch.mpImplHatch->mnAngle.get() );
return rOStm;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|