Coverage Report

Created: 2025-12-08 09:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/vcl/mapmod.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
20
#ifndef INCLUDED_VCL_MAPMOD_HXX
21
#define INCLUDED_VCL_MAPMOD_HXX
22
23
#include <vcl/dllapi.h>
24
#include <tools/mapunit.hxx>
25
#include <o3tl/cow_wrapper.hxx>
26
27
#include <ostream>
28
29
class Point;
30
class Fraction;
31
32
class SAL_WARN_UNUSED VCL_DLLPUBLIC MapMode
33
{
34
    friend class        OutputDevice;
35
36
public:
37
    struct SAL_DLLPRIVATE ImplMapMode;
38
39
    MapMode();
40
    MapMode( const MapMode& rMapMode );
41
    explicit MapMode( MapUnit eUnit );
42
    MapMode( MapUnit eUnit, const Point& rLogicOrg,
43
        const Fraction& rScaleX, const Fraction& rScaleY );
44
    ~MapMode();
45
46
    void            SetMapUnit( MapUnit eUnit );
47
    MapUnit         GetMapUnit() const;
48
49
    void            SetOrigin( const Point& rOrigin );
50
    const Point&    GetOrigin() const;
51
52
    void            SetScaleX( const Fraction& rScaleX );
53
    const Fraction& GetScaleX() const;
54
    void            SetScaleY( const Fraction& rScaleY );
55
    const Fraction& GetScaleY() const;
56
57
    MapMode&        operator=( const MapMode& rMapMode );
58
    MapMode&        operator=( MapMode&& rMapMode );
59
    bool            operator==( const MapMode& rMapMode ) const;
60
    bool            operator!=( const MapMode& rMapMode ) const
61
409k
    {
62
409k
        return !(MapMode::operator==( rMapMode ));
63
409k
    }
64
    bool            IsDefault() const;
65
66
    // Compute value usable as hash.
67
    size_t          GetHashValue() const;
68
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;
72
73
    // If only the map unit is set.
74
    bool IsSimple() const;
75
76
private:
77
    ImplType        mpImplMapMode;
78
};
79
80
template<typename charT, typename traits>
81
inline std::basic_ostream<charT, traits> & operator <<(
82
    std::basic_ostream<charT, traits> & rStream, const MapMode& rMode)
83
{
84
    rStream << "MapMode(" << static_cast<unsigned>(rMode.GetMapUnit()) << ",(" << rMode.GetScaleX() << "," << rMode.GetScaleY() << ")@(" << rMode.GetOrigin() << "))";
85
    return rStream;
86
}
87
88
bool TooLargeScaleForMapMode(const Fraction& rScale, int nDPI);
89
90
#endif // INCLUDED_VCL_MAPMOD_HXX
91
92
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */