Coverage Report

Created: 2025-12-08 09:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/svx/grfcrop.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_SVX_GRFCROP_HXX
21
#define INCLUDED_SVX_GRFCROP_HXX
22
23
#include <svl/poolitem.hxx>
24
#include <svx/svxdllapi.h>
25
26
class SVXCORE_DLLPUBLIC SvxGrfCrop : public SfxPoolItem
27
{
28
    sal_Int32   m_nLeft, m_nRight, m_nTop, m_nBottom;
29
public:
30
    DECLARE_ITEM_TYPE_FUNCTION(SvxGrfCrop)
31
    SvxGrfCrop( TypedWhichId<SvxGrfCrop>);
32
    SvxGrfCrop( sal_Int32 nLeft,    sal_Int32 nRight,
33
                sal_Int32 nTop,     sal_Int32 nBottom,
34
                TypedWhichId<SvxGrfCrop> );
35
    virtual ~SvxGrfCrop() override;
36
37
130k
    SvxGrfCrop(SvxGrfCrop const &) = default;
38
    SvxGrfCrop(SvxGrfCrop &&) = default;
39
    SvxGrfCrop & operator =(SvxGrfCrop const &) = delete; // due to SfxPoolItem
40
    SvxGrfCrop & operator =(SvxGrfCrop &&) = delete; // due to SfxPoolItem
41
42
    // "pure virtual methods" from SfxPoolItem
43
    virtual bool                operator==( const SfxPoolItem& ) const override;
44
2
    virtual bool supportsHashCode() const override { return true; }
45
    virtual size_t hashCode() const override;
46
    virtual bool GetPresentation( SfxItemPresentation ePres,
47
                                  MapUnit eCoreMetric,
48
                                  MapUnit ePresMetric,
49
                                  OUString &rText,
50
                                  const IntlWrapper& rIntl ) const override;
51
    virtual bool QueryValue( css::uno::Any& rVal,
52
                             sal_uInt8 nMemberId = 0 ) const override;
53
    virtual bool PutValue( const css::uno::Any& rVal,
54
                           sal_uInt8 nMemberId ) override;
55
56
0
    void SetLeft( sal_Int32 nVal )      { ASSERT_CHANGE_REFCOUNTED_ITEM; m_nLeft = nVal; }
Unexecuted instantiation: SvxGrfCrop::SetLeft(int)
Unexecuted instantiation: SvxGrfCrop::SetLeft(int)
57
0
    void SetRight( sal_Int32 nVal )     { ASSERT_CHANGE_REFCOUNTED_ITEM; m_nRight = nVal; }
Unexecuted instantiation: SvxGrfCrop::SetRight(int)
Unexecuted instantiation: SvxGrfCrop::SetRight(int)
58
0
    void SetTop( sal_Int32 nVal )       { ASSERT_CHANGE_REFCOUNTED_ITEM; m_nTop = nVal; }
Unexecuted instantiation: SvxGrfCrop::SetTop(int)
Unexecuted instantiation: SvxGrfCrop::SetTop(int)
59
0
    void SetBottom( sal_Int32 nVal )    { ASSERT_CHANGE_REFCOUNTED_ITEM; m_nBottom = nVal; }
Unexecuted instantiation: SvxGrfCrop::SetBottom(int)
Unexecuted instantiation: SvxGrfCrop::SetBottom(int)
60
61
136k
    sal_Int32 GetLeft() const           { return m_nLeft; }
62
136k
    sal_Int32 GetRight() const          { return m_nRight; }
63
136k
    sal_Int32 GetTop() const            { return m_nTop; }
64
136k
    sal_Int32 GetBottom() const         { return m_nBottom; }
65
};
66
67
#endif  // INCLUDED_SVX_GRFCROP_HXX
68
69
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */