fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / drawinglayer / source / primitive3d / shadowprimitive3d.cxx
blobf53726fdfb0435633c9c3cbe38ff111812659075
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 <drawinglayer/primitive3d/shadowprimitive3d.hxx>
21 #include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
23 //////////////////////////////////////////////////////////////////////////////
25 using namespace com::sun::star;
27 //////////////////////////////////////////////////////////////////////////////
29 namespace drawinglayer
31 namespace primitive3d
33 ShadowPrimitive3D::ShadowPrimitive3D(
34 const basegfx::B2DHomMatrix& rShadowTransform,
35 const basegfx::BColor& rShadowColor,
36 double fShadowTransparence,
37 bool bShadow3D,
38 const Primitive3DSequence& rChildren)
39 : GroupPrimitive3D(rChildren),
40 maShadowTransform(rShadowTransform),
41 maShadowColor(rShadowColor),
42 mfShadowTransparence(fShadowTransparence),
43 mbShadow3D(bShadow3D)
47 bool ShadowPrimitive3D::operator==(const BasePrimitive3D& rPrimitive) const
49 if(GroupPrimitive3D::operator==(rPrimitive))
51 const ShadowPrimitive3D& rCompare = (ShadowPrimitive3D&)rPrimitive;
53 return (getShadowTransform() == rCompare.getShadowTransform()
54 && getShadowColor() == rCompare.getShadowColor()
55 && getShadowTransparence() == rCompare.getShadowTransparence()
56 && getShadow3D() == rCompare.getShadow3D());
59 return false;
62 // provide unique ID
63 ImplPrimitive3DIDBlock(ShadowPrimitive3D, PRIMITIVE3D_ID_SHADOWPRIMITIVE3D)
65 } // end of namespace primitive3d
66 } // end of namespace drawinglayer
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */