Files
libreoffice/drawinglayer/source/attribute/fillgraphicattribute.cxx
Thorsten Behrens 551c204740 Fix tdf#87509 - default sdr attribute is special object.
The drawinglayer attributes signal defaultness by object identity, not
value equalness. That should fix a number of subtle cache and redraw
problems.

Change-Id: I049ffda228a48db71cef108571805c6e41e4b149
2015-05-24 21:49:44 +02:00

159 lines
5.5 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <drawinglayer/attribute/fillgraphicattribute.hxx>
#include <vcl/graph.hxx>
namespace drawinglayer
{
namespace attribute
{
class ImpFillGraphicAttribute
{
public:
// data definitions
Graphic maGraphic;
basegfx::B2DRange maGraphicRange;
// bitfield
bool mbTiling : 1;
// tiling definitions, offsets in X/Y in percent for each 2nd row.
// If both are set, Y is ignored (X has precedence)
double mfOffsetX;
double mfOffsetY;
ImpFillGraphicAttribute(
const Graphic& rGraphic,
const basegfx::B2DRange& rGraphicRange,
bool bTiling,
double fOffsetX,
double fOffsetY)
: maGraphic(rGraphic),
maGraphicRange(rGraphicRange),
mbTiling(bTiling),
mfOffsetX(fOffsetX),
mfOffsetY(fOffsetY)
{
}
ImpFillGraphicAttribute()
: maGraphic(Graphic()),
maGraphicRange(basegfx::B2DRange()),
mbTiling(false),
mfOffsetX(0.0),
mfOffsetY(0.0)
{
}
// data read access
const Graphic& getGraphic() const { return maGraphic; }
const basegfx::B2DRange& getGraphicRange() const { return maGraphicRange; }
bool getTiling() const { return mbTiling; }
double getOffsetX() const { return mfOffsetX; }
double getOffsetY() const { return mfOffsetY; }
bool operator==(const ImpFillGraphicAttribute& rCandidate) const
{
return (getGraphic() == rCandidate.getGraphic()
&& getGraphicRange() == rCandidate.getGraphicRange()
&& getTiling() == rCandidate.getTiling()
&& getOffsetX() == rCandidate.getOffsetX()
&& getOffsetY() == rCandidate.getOffsetY());
}
};
namespace
{
struct theGlobalDefault :
public rtl::Static< FillGraphicAttribute::ImplType, theGlobalDefault > {};
}
FillGraphicAttribute::FillGraphicAttribute(
const Graphic& rGraphic,
const basegfx::B2DRange& rGraphicRange,
bool bTiling,
double fOffsetX,
double fOffsetY)
: mpFillGraphicAttribute(ImpFillGraphicAttribute(
rGraphic, rGraphicRange, bTiling,
basegfx::clamp(fOffsetX, 0.0, 1.0),
basegfx::clamp(fOffsetY, 0.0, 1.0)))
{
}
FillGraphicAttribute::FillGraphicAttribute(const FillGraphicAttribute& rCandidate)
: mpFillGraphicAttribute(rCandidate.mpFillGraphicAttribute)
{
}
FillGraphicAttribute::~FillGraphicAttribute()
{
}
bool FillGraphicAttribute::isDefault() const
{
return mpFillGraphicAttribute.same_object(theGlobalDefault::get());
}
FillGraphicAttribute& FillGraphicAttribute::operator=(const FillGraphicAttribute& rCandidate)
{
mpFillGraphicAttribute = rCandidate.mpFillGraphicAttribute;
return *this;
}
bool FillGraphicAttribute::operator==(const FillGraphicAttribute& rCandidate) const
{
// tdf#87509 default attr is always != non-default attr, even with same values
if(rCandidate.isDefault() != isDefault())
return false;
return rCandidate.mpFillGraphicAttribute == mpFillGraphicAttribute;
}
const Graphic& FillGraphicAttribute::getGraphic() const
{
return mpFillGraphicAttribute->getGraphic();
}
const basegfx::B2DRange& FillGraphicAttribute::getGraphicRange() const
{
return mpFillGraphicAttribute->getGraphicRange();
}
bool FillGraphicAttribute::getTiling() const
{
return mpFillGraphicAttribute->getTiling();
}
double FillGraphicAttribute::getOffsetX() const
{
return mpFillGraphicAttribute->getOffsetX();
}
double FillGraphicAttribute::getOffsetY() const
{
return mpFillGraphicAttribute->getOffsetY();
}
} // end of namespace attribute
} // end of namespace drawinglayer
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */