Coverage Report

Created: 2025-12-31 10:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/svx/inc/sxoneitm.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
#ifndef INCLUDED_SVX_INC_SXONEITM_HXX
20
#define INCLUDED_SVX_INC_SXONEITM_HXX
21
22
#include <svx/svddef.hxx>
23
#include <svx/sdmetitm.hxx>
24
25
class SdrOnePositionXItem final : public SdrMetricItem {
26
public:
27
    DECLARE_ITEM_TYPE_FUNCTION(SdrOnePositionXItem)
28
19
    SdrOnePositionXItem(tools::Long nPosX=0): SdrMetricItem(SDRATTR_ONEPOSITIONX, nPosX) {}
29
    virtual SdrOnePositionXItem* Clone(SfxItemPool*) const override
30
0
    {
31
0
        return new SdrOnePositionXItem(*this);
32
0
    }
33
};
34
35
class SdrOnePositionYItem final : public SdrMetricItem {
36
public:
37
    DECLARE_ITEM_TYPE_FUNCTION(SdrOnePositionYItem)
38
19
    SdrOnePositionYItem(tools::Long nPosY=0): SdrMetricItem(SDRATTR_ONEPOSITIONY, nPosY) {}
39
    virtual SdrOnePositionYItem* Clone(SfxItemPool*) const override
40
0
    {
41
0
        return new SdrOnePositionYItem(*this);
42
0
    }
43
};
44
45
class SdrOneSizeWidthItem final : public SdrMetricItem {
46
public:
47
    DECLARE_ITEM_TYPE_FUNCTION(SdrOneSizeWidthItem)
48
19
    SdrOneSizeWidthItem(tools::Long nWdt=0): SdrMetricItem(SDRATTR_ONESIZEWIDTH, nWdt)  {}
49
    virtual SdrOneSizeWidthItem* Clone(SfxItemPool*) const override
50
0
    {
51
0
        return new SdrOneSizeWidthItem(*this);
52
0
    }
53
};
54
55
class SdrOneSizeHeightItem final : public SdrMetricItem {
56
public:
57
    DECLARE_ITEM_TYPE_FUNCTION(SdrOneSizeHeightItem)
58
19
    SdrOneSizeHeightItem(tools::Long nHgt=0): SdrMetricItem(SDRATTR_ONESIZEHEIGHT, nHgt)  {}
59
    virtual SdrOneSizeHeightItem* Clone(SfxItemPool*) const override
60
0
    {
61
0
        return new SdrOneSizeHeightItem(*this);
62
0
    }
63
};
64
65
#endif
66
67
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */