/src/libreoffice/svx/source/sdr/properties/e3dextrudeproperties.cxx
Line | Count | Source (jump to first uncovered line) |
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 | 10.4k | : E3dCompoundProperties(rObj) |
28 | 10.4k | { |
29 | 10.4k | } |
30 | | |
31 | | E3dExtrudeProperties::E3dExtrudeProperties(const E3dExtrudeProperties& rProps, SdrObject& rObj) |
32 | 0 | : E3dCompoundProperties(rProps, rObj) |
33 | 0 | { |
34 | 0 | } |
35 | | |
36 | | E3dExtrudeProperties::~E3dExtrudeProperties() |
37 | 10.4k | { |
38 | 10.4k | } |
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 | 304k | { |
47 | | // call parent |
48 | 304k | E3dCompoundProperties::PostItemChange(nWhich); |
49 | | |
50 | | // handle value change |
51 | 304k | E3dExtrudeObj& rObj = static_cast<E3dExtrudeObj&>(GetSdrObject()); |
52 | | |
53 | 304k | switch(nWhich) |
54 | 304k | { |
55 | 10.4k | case SDRATTR_3DOBJ_PERCENT_DIAGONAL: |
56 | 10.4k | { |
57 | 10.4k | rObj.ActionChanged(); |
58 | 10.4k | 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 | 304k | } |
71 | 304k | } |
72 | | } // end of namespace |
73 | | |
74 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |