Line data Source code
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 <drawinglayer/primitive3d/shadowprimitive3d.hxx>
21 : #include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
22 :
23 :
24 :
25 : using namespace com::sun::star;
26 :
27 :
28 :
29 : namespace drawinglayer
30 : {
31 : namespace primitive3d
32 : {
33 0 : 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 0 : mbShadow3D(bShadow3D)
44 : {
45 0 : }
46 :
47 0 : bool ShadowPrimitive3D::operator==(const BasePrimitive3D& rPrimitive) const
48 : {
49 0 : if(GroupPrimitive3D::operator==(rPrimitive))
50 : {
51 0 : const ShadowPrimitive3D& rCompare = static_cast<const ShadowPrimitive3D&>(rPrimitive);
52 :
53 0 : return (getShadowTransform() == rCompare.getShadowTransform()
54 0 : && getShadowColor() == rCompare.getShadowColor()
55 0 : && getShadowTransparence() == rCompare.getShadowTransparence()
56 0 : && getShadow3D() == rCompare.getShadow3D());
57 : }
58 :
59 0 : return false;
60 : }
61 :
62 : // provide unique ID
63 0 : ImplPrimitive3DIDBlock(ShadowPrimitive3D, PRIMITIVE3D_ID_SHADOWPRIMITIVE3D)
64 :
65 : } // end of namespace primitive3d
66 : } // end of namespace drawinglayer
67 :
68 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|