ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
QCPPainter Class Reference

QPainter subclass used internally. More...

#include <qcustomplot.h>

Inheritance diagram for QCPPainter:
Collaboration diagram for QCPPainter:

Public Types

enum  PainterMode {
  pmDefault = 0x00 , pmVectorized = 0x01 , pmNoCaching = 0x02 , pmNonCosmetic = 0x04 ,
  pmDefault = 0x00 , pmVectorized = 0x01 , pmNoCaching = 0x02 , pmNonCosmetic = 0x04
}
 
enum  PainterMode {
  pmDefault = 0x00 , pmVectorized = 0x01 , pmNoCaching = 0x02 , pmNonCosmetic = 0x04 ,
  pmDefault = 0x00 , pmVectorized = 0x01 , pmNoCaching = 0x02 , pmNonCosmetic = 0x04
}
 

Public Member Functions

 QCPPainter ()
 
 QCPPainter (QPaintDevice *device)
 
bool antialiasing () const
 
PainterModes modes () const
 
void setAntialiasing (bool enabled)
 
void setMode (PainterMode mode, bool enabled=true)
 
void setModes (PainterModes modes)
 
bool begin (QPaintDevice *device)
 
void setPen (const QPen &pen)
 
void setPen (const QColor &color)
 
void setPen (Qt::PenStyle penStyle)
 
void drawLine (const QLineF &line)
 
void drawLine (const QPointF &p1, const QPointF &p2)
 
void save ()
 
void restore ()
 
void makeNonCosmetic ()
 
 QCPPainter ()
 
 QCPPainter (QPaintDevice *device)
 
 ~QCPPainter ()
 
bool antialiasing () const
 
PainterModes modes () const
 
void setAntialiasing (bool enabled)
 
void setMode (PainterMode mode, bool enabled=true)
 
void setModes (PainterModes modes)
 
bool begin (QPaintDevice *device)
 
void setPen (const QPen &pen)
 
void setPen (const QColor &color)
 
void setPen (Qt::PenStyle penStyle)
 
void drawLine (const QLineF &line)
 
void drawLine (const QPointF &p1, const QPointF &p2)
 
void save ()
 
void restore ()
 
void makeNonCosmetic ()
 

Protected Attributes

PainterModes mModes
 
bool mIsAntialiasing
 
QStack< bool > mAntialiasingStack
 

Detailed Description

QPainter subclass used internally.

This QPainter subclass is used to provide some extended functionality e.g. for tweaking position consistency between antialiased and non-antialiased painting. Further it provides workarounds for QPainter quirks.

Warning
This class intentionally hides non-virtual functions of QPainter, e.g. setPen, save and restore. So while it is possible to pass a QCPPainter instance to a function that expects a QPainter pointer, some of the workarounds and tweaks will be unavailable to the function (because it will call the base class implementations of the functions actually hidden by QCPPainter).

Definition at line 637 of file qcustomplot.h.

Member Enumeration Documentation

◆ PainterMode [1/2]

Defines special modes the painter can operate in. They disable or enable certain subsets of features/fixes/workarounds, depending on whether they are wanted on the respective output device.

Enumerator
pmDefault 

0x00 Default mode for painting on screen devices

pmVectorized 

0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes.

pmNoCaching 

0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels

pmNonCosmetic 

0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.)

pmDefault 

0x00 Default mode for painting on screen devices

pmVectorized 

0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes.

pmNoCaching 

0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels

pmNonCosmetic 

0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.)

Definition at line 645 of file qcustomplot.h.

◆ PainterMode [2/2]

Defines special modes the painter can operate in. They disable or enable certain subsets of features/fixes/workarounds, depending on whether they are wanted on the respective output device.

Enumerator
pmDefault 

0x00 Default mode for painting on screen devices

pmVectorized 

0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes.

pmNoCaching 

0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels

pmNonCosmetic 

0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.)

pmDefault 

0x00 Default mode for painting on screen devices

pmVectorized 

0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes.

pmNoCaching 

0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels

pmNonCosmetic 

0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.)

Definition at line 471 of file qcustomplot.h.

Constructor & Destructor Documentation

◆ QCPPainter() [1/4]

QCPPainter::QCPPainter ( )

Creates a new QCPPainter instance and sets default values

Definition at line 251 of file qcustomplot.cpp.

◆ QCPPainter() [2/4]

QCPPainter::QCPPainter ( QPaintDevice *  device)
explicit

Creates a new QCPPainter instance on the specified paint device and sets default values. Just like the analogous QPainter constructor, begins painting on device immediately.

Like begin, this method sets QPainter::NonCosmeticDefaultPen in Qt versions before Qt5.

Definition at line 265 of file qcustomplot.cpp.

◆ QCPPainter() [3/4]

QCPPainter::QCPPainter ( )

◆ QCPPainter() [4/4]

QCPPainter::QCPPainter ( QPaintDevice *  device)

◆ ~QCPPainter()

QCPPainter::~QCPPainter ( )

Definition at line 70 of file qcustomplot.cpp.

Member Function Documentation

◆ antialiasing() [1/2]

bool QCPPainter::antialiasing ( ) const
inline

Definition at line 670 of file qcustomplot.h.

◆ antialiasing() [2/2]

bool QCPPainter::antialiasing ( ) const
inline

Definition at line 496 of file qcustomplot.h.

◆ begin() [1/2]

bool QCPPainter::begin ( QPaintDevice *  device)

Sets the QPainter::NonCosmeticDefaultPen in Qt versions before Qt5 after beginning painting on device. This is necessary to get cosmetic pen consistency across Qt versions, because since Qt5, all pens are non-cosmetic by default, and in Qt4 this render hint must be set to get that behaviour.

The Constructor QCPPainter(QPaintDevice *device) which directly starts painting also sets the render hint as appropriate.

Note
this function hides the non-virtual base class implementation.

Definition at line 367 of file qcustomplot.cpp.

References result.

Referenced by QCustomPlot::savePdf(), and QCustomPlot::toPixmap().

◆ begin() [2/2]

bool QCPPainter::begin ( QPaintDevice *  device)

◆ drawLine() [1/4]

void QCPPainter::drawLine ( const QLineF &  line)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Works around a Qt bug introduced with Qt 4.8 which makes drawing QLineF unpredictable when antialiasing is disabled. Thus when antialiasing is disabled, it rounds the line to integer coordinates and then passes it to the original drawLine.

Note
this function hides the non-virtual base class implementation.

Definition at line 320 of file qcustomplot.cpp.

References mIsAntialiasing, mModes, and pmVectorized.

Referenced by QCPHiddenArea::draw(), QCPArrow::draw(), QCPItemStraightLine::draw(), QCPItemLine::draw(), QCPItemTracer::draw(), QCPItemBracket::draw(), QCPLineEnding::draw(), QCPSelectionDecoratorBracket::drawBracket(), QCPFinancial::drawCandlestickPlot(), QCPGraph::drawError(), QCPGrid::drawGridLines(), QCPGraph::drawLegendIcon(), QCPCurve::drawLegendIcon(), QCPFinancial::drawLegendIcon(), QCPErrorBars::drawLegendIcon(), QCPGraph::drawLinePlot(), QCPStatisticalBox::drawMedian(), QCPFinancial::drawOhlcPlot(), QCPAbstractPlottable1D< DataType >::drawPolyline(), QCPScatterStyle::drawShape(), QCPStatisticalBox::drawStatisticalBox(), QCPGrid::drawSubGridLines(), and QCPStatisticalBox::drawWhiskers().

◆ drawLine() [2/4]

void QCPPainter::drawLine ( const QLineF &  line)

◆ drawLine() [3/4]

void QCPPainter::drawLine ( const QPointF &  p1,
const QPointF &  p2 
)
inline

Definition at line 685 of file qcustomplot.h.

◆ drawLine() [4/4]

void QCPPainter::drawLine ( const QPointF &  p1,
const QPointF &  p2 
)
inline

Definition at line 511 of file qcustomplot.h.

◆ makeNonCosmetic() [1/2]

void QCPPainter::makeNonCosmetic ( )

Changes the pen width to 1 if it currently is 0. This function is called in the setPen overrides when the pmNonCosmetic mode is set.

Definition at line 426 of file qcustomplot.cpp.

Referenced by setPen().

◆ makeNonCosmetic() [2/2]

void QCPPainter::makeNonCosmetic ( )

◆ modes() [1/2]

PainterModes QCPPainter::modes ( ) const
inline

◆ modes() [2/2]

PainterModes QCPPainter::modes ( ) const
inline

Definition at line 497 of file qcustomplot.h.

◆ restore() [1/2]

void QCPPainter::restore ( )

Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to QPainter, the save/restore functions are reimplemented to also save/restore those members.

Note
this function hides the non-virtual base class implementation.
See also
save

Definition at line 414 of file qcustomplot.cpp.

References mAntialiasingStack, and mIsAntialiasing.

Referenced by QCPLayer::draw(), QCPPlottableLegendItem::draw(), and QCPStatisticalBox::drawStatisticalBox().

◆ restore() [2/2]

void QCPPainter::restore ( )

◆ save() [1/2]

void QCPPainter::save ( )

Saves the painter (see QPainter::save). Since QCPPainter adds some new internal state to QPainter, the save/restore functions are reimplemented to also save/restore those members.

Note
this function hides the non-virtual base class implementation.
See also
restore

Definition at line 400 of file qcustomplot.cpp.

References mAntialiasingStack, and mIsAntialiasing.

Referenced by QCPLayer::draw(), QCPPlottableLegendItem::draw(), and QCPStatisticalBox::drawStatisticalBox().

◆ save() [2/2]

void QCPPainter::save ( )

◆ setAntialiasing() [1/2]

void QCPPainter::setAntialiasing ( bool  enabled)

Sets whether painting uses antialiasing or not. Use this method instead of using setRenderHint with QPainter::Antialiasing directly, as it allows QCPPainter to regain pixel exactness between antialiased and non-antialiased painting (Since Qt < 5.0 uses slightly different coordinate systems for AA/Non-AA painting).

Definition at line 334 of file qcustomplot.cpp.

References mIsAntialiasing, mModes, and pmVectorized.

Referenced by QCPLayerable::applyAntialiasingHint(), QCPAxisRect::applyDefaultAntialiasingHint(), QCPColorScale::applyDefaultAntialiasingHint(), and QCPFinancial::drawLegendIcon().

◆ setAntialiasing() [2/2]

void QCPPainter::setAntialiasing ( bool  enabled)

◆ setMode() [1/2]

void QCPPainter::setMode ( QCPPainter::PainterMode  mode,
bool  enabled = true 
)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Sets the mode of the painter. This controls whether the painter shall adjust its fixes/workarounds optimized for certain output devices.

Definition at line 384 of file qcustomplot.cpp.

References mModes.

Referenced by QCustomPlot::savePdf(), QCustomPlot::toPainter(), and QCustomPlot::toPixmap().

◆ setMode() [2/2]

void QCPPainter::setMode ( PainterMode  mode,
bool  enabled = true 
)

◆ setModes() [1/2]

void QCPPainter::setModes ( PainterModes  modes)

◆ setModes() [2/2]

void QCPPainter::setModes ( PainterModes  modes)

◆ setPen() [1/6]

void QCPPainter::setPen ( const QColor &  color)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Sets the pen (by color) of the painter and applies certain fixes to it, depending on the mode of this QCPPainter.

Note
this function hides the non-virtual base class implementation.

Definition at line 294 of file qcustomplot.cpp.

References color, makeNonCosmetic(), mModes, and pmNonCosmetic.

◆ setPen() [2/6]

void QCPPainter::setPen ( const QColor &  color)

◆ setPen() [3/6]

void QCPPainter::setPen ( const QPen &  pen)

◆ setPen() [4/6]

void QCPPainter::setPen ( const QPen &  pen)

◆ setPen() [5/6]

void QCPPainter::setPen ( Qt::PenStyle  penStyle)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Sets the pen (by style) of the painter and applies certain fixes to it, depending on the mode of this QCPPainter.

Note
this function hides the non-virtual base class implementation.

Definition at line 306 of file qcustomplot.cpp.

References makeNonCosmetic(), mModes, and pmNonCosmetic.

◆ setPen() [6/6]

void QCPPainter::setPen ( Qt::PenStyle  penStyle)

Member Data Documentation

◆ mAntialiasingStack

QStack< bool > QCPPainter::mAntialiasingStack
protected

Definition at line 700 of file qcustomplot.h.

Referenced by restore(), and save().

◆ mIsAntialiasing

bool QCPPainter::mIsAntialiasing
protected

Definition at line 697 of file qcustomplot.h.

Referenced by drawLine(), restore(), save(), and setAntialiasing().

◆ mModes

PainterModes QCPPainter::mModes
protected

Definition at line 696 of file qcustomplot.h.

Referenced by drawLine(), setAntialiasing(), setMode(), and setPen().


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