Coverage Report

Created: 2025-12-08 09:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/svx/source/sdr/properties/e3dextrudeproperties.cxx
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
#include <sdr/properties/e3dextrudeproperties.hxx>
21
#include <extrud3d.hxx>
22
23
24
namespace sdr::properties
25
{
26
        E3dExtrudeProperties::E3dExtrudeProperties(SdrObject& rObj)
27
12.9k
        :   E3dCompoundProperties(rObj)
28
12.9k
        {
29
12.9k
        }
30
31
        E3dExtrudeProperties::E3dExtrudeProperties(const E3dExtrudeProperties& rProps, SdrObject& rObj)
32
0
        :   E3dCompoundProperties(rProps, rObj)
33
0
        {
34
0
        }
35
36
        E3dExtrudeProperties::~E3dExtrudeProperties()
37
12.9k
        {
38
12.9k
        }
39
40
        std::unique_ptr<BaseProperties> E3dExtrudeProperties::Clone(SdrObject& rObj) const
41
0
        {
42
0
            return std::unique_ptr<BaseProperties>(new E3dExtrudeProperties(*this, rObj));
43
0
        }
44
45
        void E3dExtrudeProperties::PostItemChange(const sal_uInt16 nWhich)
46
355k
        {
47
            // call parent
48
355k
            E3dCompoundProperties::PostItemChange(nWhich);
49
50
            // handle value change
51
355k
            E3dExtrudeObj& rObj = static_cast<E3dExtrudeObj&>(GetSdrObject());
52
53
355k
            switch(nWhich)
54
355k
            {
55
12.9k
                case SDRATTR_3DOBJ_PERCENT_DIAGONAL:
56
12.9k
                {
57
12.9k
                    rObj.ActionChanged();
58
12.9k
                    break;
59
0
                }
60
0
                case SDRATTR_3DOBJ_BACKSCALE:
61
0
                {
62
0
                    rObj.ActionChanged();
63
0
                    break;
64
0
                }
65
0
                case SDRATTR_3DOBJ_DEPTH:
66
0
                {
67
0
                    rObj.ActionChanged();
68
0
                    break;
69
0
                }
70
355k
            }
71
355k
        }
72
} // end of namespace
73
74
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */