1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_MAPMOD_HXX
21 #define INCLUDED_VCL_MAPMOD_HXX
23 #include <vcl/dllapi.h>
24 #include <tools/mapunit.hxx>
25 #include <o3tl/cow_wrapper.hxx>
34 class VCL_DLLPUBLIC MapMode
36 friend class OutputDevice
;
42 MapMode( const MapMode
& rMapMode
);
43 explicit MapMode( MapUnit eUnit
);
44 MapMode( MapUnit eUnit
, const Point
& rLogicOrg
,
45 const Fraction
& rScaleX
, const Fraction
& rScaleY
);
48 void SetMapUnit( MapUnit eUnit
);
49 MapUnit
GetMapUnit() const;
51 void SetOrigin( const Point
& rOrigin
);
52 const Point
& GetOrigin() const;
54 void SetScaleX( const Fraction
& rScaleX
);
55 const Fraction
& GetScaleX() const;
56 void SetScaleY( const Fraction
& rScaleY
);
57 const Fraction
& GetScaleY() const;
59 MapMode
& operator=( const MapMode
& rMapMode
);
60 MapMode
& operator=( MapMode
&& rMapMode
);
61 bool operator==( const MapMode
& rMapMode
) const;
62 bool operator!=( const MapMode
& rMapMode
) const
63 { return !(MapMode::operator==( rMapMode
)); }
64 bool IsDefault() const;
66 friend SvStream
& ReadMapMode( SvStream
& rIStm
, MapMode
& rMapMode
);
67 friend SvStream
& WriteMapMode( SvStream
& rOStm
, const MapMode
& rMapMode
);
69 // tdf#117984 needs to be thread-safe due to being used e.g. in Bitmaps
70 // vcl::ScopedBitmapAccess in parallelized 3D renderer
71 typedef o3tl::cow_wrapper
< ImplMapMode
, o3tl::ThreadSafeRefCountingPolicy
> ImplType
;
74 ImplType mpImplMapMode
;
76 SAL_DLLPRIVATE
bool IsSimple() const;
79 template<typename charT
, typename traits
>
80 inline std::basic_ostream
<charT
, traits
> & operator <<(
81 std::basic_ostream
<charT
, traits
> & rStream
, const MapMode
& rMode
)
83 rStream
<< "MapMode(" << static_cast<unsigned>(rMode
.GetMapUnit()) << ",(" << rMode
.GetScaleX() << "," << rMode
.GetScaleY() << ")@(" << rMode
.GetOrigin() << "))";
87 #endif // INCLUDED_VCL_MAPMOD_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */