70cc2b191b
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
65 lines
2.2 KiB
C++
65 lines
2.2 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/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_DRAWINGLAYER_PRIMITIVE2D_CLIPPEDBORDERLINEPRIMITIVE2D_HXX
|
|
#define INCLUDED_DRAWINGLAYER_PRIMITIVE2D_CLIPPEDBORDERLINEPRIMITIVE2D_HXX
|
|
|
|
#include <drawinglayer/drawinglayerdllapi.h>
|
|
|
|
#include <drawinglayer/primitive2d/borderlineprimitive2d.hxx>
|
|
#include <basegfx/polygon/b2dpolypolygon.hxx>
|
|
#include <basegfx/polygon/b2dpolygon.hxx>
|
|
|
|
|
|
namespace drawinglayer
|
|
{
|
|
namespace primitive2d
|
|
{
|
|
/** BorderLinePrimitive2D clipped by the intersection with a provided
|
|
polygon.
|
|
*/
|
|
class DRAWINGLAYER_DLLPUBLIC ClippedBorderLinePrimitive2D : public BorderLinePrimitive2D
|
|
{
|
|
private:
|
|
const basegfx::B2DPolygon maIntersection;
|
|
|
|
protected:
|
|
virtual basegfx::B2DPolyPolygon getClipPolygon(
|
|
const geometry::ViewInformation2D& rViewInformation) const SAL_OVERRIDE;
|
|
|
|
public:
|
|
/// constructor
|
|
ClippedBorderLinePrimitive2D(
|
|
const basegfx::B2DPoint& rStart,
|
|
const basegfx::B2DPoint& rEnd,
|
|
double fLeftWidth,
|
|
double fDistance,
|
|
double fRightWidth,
|
|
const basegfx::B2DPolygon& rIntersection,
|
|
const basegfx::BColor& rRGBColorRight,
|
|
const basegfx::BColor& rRGBColorLeft,
|
|
const basegfx::BColor& rRGBColorGap,
|
|
bool bHasGapColor,
|
|
const short nStyle,
|
|
double fPatternScale = 1.0 );
|
|
|
|
/// compare operator
|
|
virtual bool operator==(const BasePrimitive2D& rPrimitive) const SAL_OVERRIDE;
|
|
|
|
/// provide unique ID
|
|
DeclPrimitive2DIDBlock()
|
|
};
|
|
} // end of namespace primitive2d
|
|
} // end of namespace drawinglayer
|
|
|
|
|
|
#endif //INCLUDED_DRAWINGLAYER_PRIMITIVE2D_CLIPPEDBORDERLINEPRIMITIVE2D_HXX
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|