Files
libreoffice/drawinglayer/source/primitive3d/modifiedcolorprimitive3d.cxx

75 lines
2.7 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2006-08-09 15:51:16 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2006-08-09 15:51:16 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2006-08-09 15:51:16 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2006-08-09 15:51:16 +00:00
*
* This file is part of OpenOffice.org.
2006-08-09 15:51:16 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2006-08-09 15:51:16 +00:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2006-08-09 15:51:16 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2006-08-09 15:51:16 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_drawinglayer.hxx"
2006-08-09 15:51:16 +00:00
#include <drawinglayer/primitive3d/modifiedcolorprimitive3d.hxx>
2007-03-06 11:36:13 +00:00
#include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
2006-08-09 15:51:16 +00:00
//////////////////////////////////////////////////////////////////////////////
2006-10-19 09:40:02 +00:00
using namespace com::sun::star;
//////////////////////////////////////////////////////////////////////////////
2006-08-09 15:51:16 +00:00
namespace drawinglayer
{
namespace primitive3d
{
2006-10-19 09:40:02 +00:00
ModifiedColorPrimitive3D::ModifiedColorPrimitive3D(
const Primitive3DSequence& rChildren,
2006-08-09 15:51:16 +00:00
const basegfx::BColorModifier& rColorModifier)
2006-10-19 09:40:02 +00:00
: GroupPrimitive3D(rChildren),
2006-08-09 15:51:16 +00:00
maColorModifier(rColorModifier)
{
}
2006-10-19 09:40:02 +00:00
bool ModifiedColorPrimitive3D::operator==(const BasePrimitive3D& rPrimitive) const
2006-08-09 15:51:16 +00:00
{
2006-10-19 09:40:02 +00:00
if(GroupPrimitive3D::operator==(rPrimitive))
2006-08-09 15:51:16 +00:00
{
2006-10-19 09:40:02 +00:00
const ModifiedColorPrimitive3D& rCompare = (ModifiedColorPrimitive3D&)rPrimitive;
2006-08-09 15:51:16 +00:00
return (maColorModifier == rCompare.maColorModifier);
}
return false;
}
// provide unique ID
2007-03-06 11:36:13 +00:00
ImplPrimitrive3DIDBlock(ModifiedColorPrimitive3D, PRIMITIVE3D_ID_MODIFIEDCOLORPRIMITIVE3D)
2006-08-09 15:51:16 +00:00
} // end of namespace primitive3d
} // end of namespace drawinglayer
//////////////////////////////////////////////////////////////////////////////
// eof
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */