Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / vcl / mapmod.hxx
blob6908833ec49c111c4d4f7a7598f8f51290c572c1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
27 class Point;
28 class Fraction;
29 class SvStream;
30 class OutputDevice;
33 class VCL_DLLPUBLIC MapMode
35 friend class OutputDevice;
37 public:
38 struct ImplMapMode;
40 MapMode();
41 MapMode( const MapMode& rMapMode );
42 MapMode( MapUnit eUnit );
43 MapMode( MapUnit eUnit, const Point& rLogicOrg,
44 const Fraction& rScaleX, const Fraction& rScaleY );
45 ~MapMode();
47 void SetMapUnit( MapUnit eUnit );
48 MapUnit GetMapUnit() const;
50 void SetOrigin( const Point& rOrigin );
51 const Point& GetOrigin() const;
53 void SetScaleX( const Fraction& rScaleX );
54 const Fraction& GetScaleX() const;
55 void SetScaleY( const Fraction& rScaleY );
56 const Fraction& GetScaleY() const;
58 /// Gets the multiplier, which is relative to 1/100 mm units
59 double GetUnitMultiplier() const;
61 MapMode& operator=( const MapMode& rMapMode );
62 MapMode& operator=( MapMode&& rMapMode );
63 bool operator==( const MapMode& rMapMode ) const;
64 bool operator!=( const MapMode& rMapMode ) const
65 { return !(MapMode::operator==( rMapMode )); }
66 bool IsDefault() const;
68 friend VCL_DLLPUBLIC SvStream& ReadMapMode( SvStream& rIStm, MapMode& rMapMode );
69 friend VCL_DLLPUBLIC SvStream& WriteMapMode( SvStream& rOStm, const MapMode& rMapMode );
71 typedef o3tl::cow_wrapper< ImplMapMode > ImplType;
73 private:
74 ImplType mpImplMapMode;
76 SAL_DLLPRIVATE bool IsSimple() const;
79 #endif // INCLUDED_VCL_MAPMOD_HXX
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */