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

WrongSpellPrimitive2D class. More...

#include <wrongspellprimitive2d.hxx>

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

Public Member Functions

 WrongSpellPrimitive2D (basegfx::B2DHomMatrix aTransformation, double fStart, double fStop, const basegfx::BColor &rColor)
 constructor More...
 
const basegfx::B2DHomMatrixgetTransformation () const
 data read access More...
 
double getStart () const
 
double getStop () const
 
const basegfx::BColorgetColor () const
 
virtual bool operator== (const BasePrimitive2D &rPrimitive) const override
 compare operator More...
 
virtual sal_uInt32 getPrimitive2DID () const override
 provide unique ID More...
 
- Public Member Functions inherited from drawinglayer::primitive2d::BufferedDecompositionPrimitive2D
 BufferedDecompositionPrimitive2D ()
 
virtual void get2DDecomposition (Primitive2DDecompositionVisitor &rVisitor, const geometry::ViewInformation2D &rViewInformation) const override
 The getDecomposition default implementation will on demand use create2DDecomposition() if maBuffered2DDecomposition is empty. More...
 
void setTransparenceForShadow (sal_uInt16 nTransparenceForShadow)
 
sal_uInt16 getTransparenceForShadow () const
 
- 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 Member Functions

virtual void create2DDecomposition (Primitive2DContainer &rContainer, const geometry::ViewInformation2D &rViewInformation) const override
 create local decomposition More...
 

Private Attributes

basegfx::B2DHomMatrix maTransformation
 geometry definition More...
 
double mfStart
 
double mfStop
 
basegfx::BColor maColor
 color (usually red) 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 drawinglayer::primitive2d::BufferedDecompositionPrimitive2D
const Primitive2DContainergetBuffered2DDecomposition () const
 access methods to maBuffered2DDecomposition. More...
 
void setBuffered2DDecomposition (Primitive2DContainer &&rNew)
 
virtual void create2DDecomposition (Primitive2DContainer &rContainer, const geometry::ViewInformation2D &rViewInformation) const =0
 method which is to be used to implement the local decomposition of a 2D primitive. More...
 
- Protected Member Functions inherited from salhelper::SimpleReferenceObject
virtual ~SimpleReferenceObject () COVERITY_NOEXCEPT_FALSE
 
- Protected Attributes inherited from salhelper::SimpleReferenceObject
oslInterlockedCount m_nCount
 

Detailed Description

WrongSpellPrimitive2D class.

This is a helper primitive to hold evtl. WrongSpell visualisations in the sequence of primitives. The primitive holds this information separated from the TextPortions to where it belongs to, to expand the TextSimplePortionPrimitive2D more as needed.

A renderer who does not want to visualize this (if contained at all) can detect and ignore this primitive. If its decomposition is used, it will be visualized as red wavelines.

The geometric definition defines a line on the X-Axis (no Y-coordinates) which will when transformed by Transformation, create the coordinate data.

Definition at line 47 of file wrongspellprimitive2d.hxx.

Constructor & Destructor Documentation

◆ WrongSpellPrimitive2D()

drawinglayer::primitive2d::WrongSpellPrimitive2D::WrongSpellPrimitive2D ( basegfx::B2DHomMatrix  aTransformation,
double  fStart,
double  fStop,
const basegfx::BColor rColor 
)

constructor

Definition at line 71 of file wrongspellprimitive2d.cxx.

References maColor, and maTransformation.

Member Function Documentation

◆ create2DDecomposition()

void drawinglayer::primitive2d::WrongSpellPrimitive2D::create2DDecomposition ( Primitive2DContainer rContainer,
const geometry::ViewInformation2D rViewInformation 
) const
overrideprivatevirtual

◆ getColor()

const basegfx::BColor & drawinglayer::primitive2d::WrongSpellPrimitive2D::getColor ( ) const
inline

◆ getPrimitive2DID()

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

provide unique ID

Implements drawinglayer::primitive2d::BasePrimitive2D.

Definition at line 99 of file wrongspellprimitive2d.cxx.

References PRIMITIVE2D_ID_WRONGSPELLPRIMITIVE2D.

◆ getStart()

double drawinglayer::primitive2d::WrongSpellPrimitive2D::getStart ( ) const
inline

◆ getStop()

double drawinglayer::primitive2d::WrongSpellPrimitive2D::getStop ( ) const
inline

◆ getTransformation()

const basegfx::B2DHomMatrix & drawinglayer::primitive2d::WrongSpellPrimitive2D::getTransformation ( ) const
inline

data read access

Definition at line 70 of file wrongspellprimitive2d.hxx.

References maTransformation.

Referenced by create2DDecomposition(), operator==(), and drawinglayer::renderWrongSpellPrimitive2D().

◆ operator==()

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

compare operator

Reimplemented from drawinglayer::primitive2d::BasePrimitive2D.

Definition at line 83 of file wrongspellprimitive2d.cxx.

References getColor(), getStart(), getStop(), and getTransformation().

Member Data Documentation

◆ maColor

basegfx::BColor drawinglayer::primitive2d::WrongSpellPrimitive2D::maColor
private

color (usually red)

Definition at line 56 of file wrongspellprimitive2d.hxx.

◆ maTransformation

basegfx::B2DHomMatrix drawinglayer::primitive2d::WrongSpellPrimitive2D::maTransformation
private

geometry definition

Definition at line 51 of file wrongspellprimitive2d.hxx.

◆ mfStart

double drawinglayer::primitive2d::WrongSpellPrimitive2D::mfStart
private

Definition at line 52 of file wrongspellprimitive2d.hxx.

◆ mfStop

double drawinglayer::primitive2d::WrongSpellPrimitive2D::mfStop
private

Definition at line 53 of file wrongspellprimitive2d.hxx.


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