LibreOffice Module drawinglayer (master) 1
Public Member Functions | Private Attributes | List of all members
drawinglayer::primitive2d::SingleLinePrimitive2D Class Referencefinal

SingleLinePrimitive2D class. More...

#include <PolygonHairlinePrimitive2D.hxx>

Inheritance diagram for drawinglayer::primitive2d::SingleLinePrimitive2D:
[legend]
Collaboration diagram for drawinglayer::primitive2d::SingleLinePrimitive2D:
[legend]

Public Member Functions

 SingleLinePrimitive2D (const basegfx::B2DPoint &rStart, const basegfx::B2DPoint &rEnd, const basegfx::BColor &rBColor)
 constructor More...
 
const basegfx::B2DPointgetStart () const
 data read access More...
 
const basegfx::B2DPointgetEnd () const
 
const basegfx::BColorgetBColor () const
 
virtual bool operator== (const BasePrimitive2D &rPrimitive) const override
 compare operator More...
 
virtual basegfx::B2DRange getB2DRange (const geometry::ViewInformation2D &rViewInformation) const override
 get range More...
 
virtual sal_uInt32 getPrimitive2DID () const override
 provide unique ID More...
 
virtual void get2DDecomposition (Primitive2DDecompositionVisitor &rVisitor, const geometry::ViewInformation2D &rViewInformation) const override
 return as PolygonHairlinePrimitive2D More...
 
- Public Member Functions inherited from drawinglayer::primitive2d::BasePrimitive2D
 BasePrimitive2D ()
 
virtual ~BasePrimitive2D () override
 
virtual bool operator== (const BasePrimitive2D &rPrimitive) const
 the ==operator is mainly needed to allow testing newly-created primitives against their last incarnation which buffers/holds the made decompositions. More...
 
bool operator!= (const BasePrimitive2D &rPrimitive) const
 
virtual basegfx::B2DRange getB2DRange (const geometry::ViewInformation2D &rViewInformation) const
 The default implementation will use getDecomposition results to create the range. More...
 
virtual sal_uInt32 getPrimitive2DID () const =0
 provide unique ID for fast identifying of known primitive implementations in renderers. More...
 
virtual void get2DDecomposition (Primitive2DDecompositionVisitor &rVisitor, const geometry::ViewInformation2D &rViewInformation) const
 The default implementation will return an empty sequence. More...
 
Primitive2DContainer getDecomposition (const css::uno::Sequence< css::beans::PropertyValue > &rViewParameters)
 The getDecomposition implementation for UNO API will use getDecomposition from this implementation. More...
 
css::geometry::RealRectangle2D getRange (const css::uno::Sequence< css::beans::PropertyValue > &rViewParameters)
 The getRange implementation for UNO API will use getRange from this implementation. More...
 
virtual sal_Int64 estimateUsage ()
 
- Public Member Functions inherited from salhelper::SimpleReferenceObject
 SimpleReferenceObject ()
 
void acquire ()
 
void release ()
 

Private Attributes

basegfx::B2DPoint maStart
 the line geometry More...
 
basegfx::B2DPoint maEnd
 
basegfx::BColor maBColor
 the line color More...
 

Additional Inherited Members

- Static Public Member Functions inherited from salhelper::SimpleReferenceObject
static void * operator new (std::size_t nSize)
 
static void * operator new (std::size_t nSize, std::nothrow_t const &rNothrow)
 
static void operator delete (void *pPtr)
 
static void operator delete (void *pPtr, std::nothrow_t const &rNothrow)
 
- Protected Member Functions inherited from salhelper::SimpleReferenceObject
virtual ~SimpleReferenceObject () COVERITY_NOEXCEPT_FALSE
 
- Protected Attributes inherited from salhelper::SimpleReferenceObject
oslInterlockedCount m_nCount
 

Detailed Description

SingleLinePrimitive2D class.

This primitive defines a simple line, just two points. It is sometimes useful for simpler tasks and decomposes to a PolygonHairlinePrimitive2D (see above). It is also a hairline-primitive, see above.

Definition at line 73 of file PolygonHairlinePrimitive2D.hxx.

Constructor & Destructor Documentation

◆ SingleLinePrimitive2D()

drawinglayer::primitive2d::SingleLinePrimitive2D::SingleLinePrimitive2D ( const basegfx::B2DPoint rStart,
const basegfx::B2DPoint rEnd,
const basegfx::BColor rBColor 
)

constructor

Definition at line 98 of file polygonprimitive2d.cxx.

References maEnd, and maStart.

Member Function Documentation

◆ get2DDecomposition()

void drawinglayer::primitive2d::SingleLinePrimitive2D::get2DDecomposition ( Primitive2DDecompositionVisitor rVisitor,
const geometry::ViewInformation2D rViewInformation 
) const
overridevirtual

◆ getB2DRange()

basegfx::B2DRange drawinglayer::primitive2d::SingleLinePrimitive2D::getB2DRange ( const geometry::ViewInformation2D rViewInformation) const
overridevirtual

get range

Reimplemented from drawinglayer::primitive2d::BasePrimitive2D.

Definition at line 123 of file polygonprimitive2d.cxx.

References getEnd(), and getStart().

◆ getBColor()

const basegfx::BColor & drawinglayer::primitive2d::SingleLinePrimitive2D::getBColor ( ) const
inline

◆ getEnd()

const basegfx::B2DPoint & drawinglayer::primitive2d::SingleLinePrimitive2D::getEnd ( ) const
inline

◆ getPrimitive2DID()

sal_uInt32 drawinglayer::primitive2d::SingleLinePrimitive2D::getPrimitive2DID ( ) const
overridevirtual

provide unique ID

Implements drawinglayer::primitive2d::BasePrimitive2D.

Definition at line 133 of file polygonprimitive2d.cxx.

References PRIMITIVE2D_ID_SINGLELINEPRIMITIVE2D.

◆ getStart()

const basegfx::B2DPoint & drawinglayer::primitive2d::SingleLinePrimitive2D::getStart ( ) const
inline

◆ operator==()

bool drawinglayer::primitive2d::SingleLinePrimitive2D::operator== ( const BasePrimitive2D rPrimitive) const
overridevirtual

compare operator

Reimplemented from drawinglayer::primitive2d::BasePrimitive2D.

Definition at line 108 of file polygonprimitive2d.cxx.

References getBColor(), getEnd(), and getStart().

Member Data Documentation

◆ maBColor

basegfx::BColor drawinglayer::primitive2d::SingleLinePrimitive2D::maBColor
private

the line color

Definition at line 81 of file PolygonHairlinePrimitive2D.hxx.

◆ maEnd

basegfx::B2DPoint drawinglayer::primitive2d::SingleLinePrimitive2D::maEnd
private

Definition at line 78 of file PolygonHairlinePrimitive2D.hxx.

◆ maStart

basegfx::B2DPoint drawinglayer::primitive2d::SingleLinePrimitive2D::maStart
private

the line geometry

Definition at line 77 of file PolygonHairlinePrimitive2D.hxx.


The documentation for this class was generated from the following files: