bump product version to 4.1.6.2
[LibreOffice.git] / svx / source / sdr / properties / e3dextrudeproperties.cxx
blob211868b33572c89d7e91c4b189b64e6329c9b708
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <svx/sdr/properties/e3dextrudeproperties.hxx>
21 #include <svl/itemset.hxx>
22 #include <svx/extrud3d.hxx>
24 //////////////////////////////////////////////////////////////////////////////
26 namespace sdr
28 namespace properties
30 E3dExtrudeProperties::E3dExtrudeProperties(SdrObject& rObj)
31 : E3dCompoundProperties(rObj)
35 E3dExtrudeProperties::E3dExtrudeProperties(const E3dExtrudeProperties& rProps, SdrObject& rObj)
36 : E3dCompoundProperties(rProps, rObj)
40 E3dExtrudeProperties::~E3dExtrudeProperties()
44 BaseProperties& E3dExtrudeProperties::Clone(SdrObject& rObj) const
46 return *(new E3dExtrudeProperties(*this, rObj));
49 void E3dExtrudeProperties::PostItemChange(const sal_uInt16 nWhich)
51 // call parent
52 E3dCompoundProperties::PostItemChange(nWhich);
54 // handle value change
55 E3dExtrudeObj& rObj = (E3dExtrudeObj&)GetSdrObject();
57 switch(nWhich)
59 case SDRATTR_3DOBJ_PERCENT_DIAGONAL:
61 rObj.ActionChanged();
62 break;
64 case SDRATTR_3DOBJ_BACKSCALE:
66 rObj.ActionChanged();
67 break;
69 case SDRATTR_3DOBJ_DEPTH:
71 rObj.ActionChanged();
72 break;
76 } // end of namespace properties
77 } // end of namespace sdr
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */