2018-12-19 00:13:18 +08:00
|
|
|
/*
|
2022-07-19 19:40:43 +08:00
|
|
|
Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>)
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
2019-02-08 00:24:46 +08:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
2018-12-19 00:13:18 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-02-08 00:24:46 +08:00
|
|
|
GNU Lesser General Public License for more details.
|
2018-12-19 00:13:18 +08:00
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2018-12-19 00:13:18 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef JKQTPENHANCED_PAINTERS_H
|
|
|
|
#define JKQTPENHANCED_PAINTERS_H
|
2019-06-22 20:21:32 +08:00
|
|
|
#include "jkqtcommon/jkqtcommon_imexport.h"
|
2018-12-19 00:13:18 +08:00
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief this class extends the <a href="http://doc.qt.io/qt-5/qpainter.html">QPainter</a>
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtptools_drawing
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
*/
|
2019-06-22 20:21:32 +08:00
|
|
|
class JKQTCOMMON_LIB_EXPORT JKQTPEnhancedPainter : public QPainter {
|
2018-12-19 00:13:18 +08:00
|
|
|
public:
|
2022-09-20 03:53:53 +08:00
|
|
|
/** \brief flags that are used to configure a JKQTPEnhancedPainter */
|
2022-08-31 04:24:24 +08:00
|
|
|
enum PainterFlag { DefaultPaintMode = 0x00, /*!< \brief the default mode, the JKQTPEnhancedPainter draws on a pixel-device */
|
|
|
|
VectorPainting = 0x01, /*!< \brief if set, the JKQTPEnhancedPainter draws onto a vector-device, like a printer, PDF or SVG-output */
|
|
|
|
};
|
2022-09-20 03:53:53 +08:00
|
|
|
Q_ENUM(PainterFlag)
|
|
|
|
/** \brief specifies the plot styles for the error information, e.g. error bars, boxes, lines ...
|
|
|
|
* \ingroup jkqtplotter_basegraphserrors
|
|
|
|
*
|
|
|
|
* \qFlagsNote{JKQTPErrorPlotstyle,JKQTPErrorPlotstyleElements}
|
|
|
|
*
|
|
|
|
* \see JKQTPErrorPlotstyleElements, JKQTPXGraphErrorData, JKQTPYGraphErrorData
|
|
|
|
*/
|
2022-08-31 04:24:24 +08:00
|
|
|
Q_DECLARE_FLAGS(PainterFlags, PainterFlag)
|
2022-09-20 03:53:53 +08:00
|
|
|
Q_FLAG(PainterFlags)
|
2022-08-31 04:24:24 +08:00
|
|
|
|
2018-12-19 00:13:18 +08:00
|
|
|
JKQTPEnhancedPainter(QPaintDevice* device);
|
|
|
|
JKQTPEnhancedPainter();
|
2022-08-31 04:24:24 +08:00
|
|
|
/** \copydoc m_flags */
|
|
|
|
PainterFlags painterFlags() const ;
|
|
|
|
/** \copydoc m_flags */
|
|
|
|
void setPainterFlag(PainterFlag flag, bool enabled=true);
|
|
|
|
/** \copydoc m_flags */
|
|
|
|
void setPainterFlag(PainterFlags flags);
|
|
|
|
|
|
|
|
/** \brief faster variant of QPainter::drawPolyline(),it turns out that drawing single lines is way faster than drawing with drawPolyLine()
|
|
|
|
*
|
|
|
|
* At least for thin (1 Pixel) lines on non-vector-devices, this does not make much difference in appearance
|
|
|
|
*/
|
|
|
|
void drawPolylineFast(const QPointF *points, int pointCount);
|
|
|
|
inline void drawPolylineFast(const QPolygonF &polyline) {
|
|
|
|
drawPolylineFast(polyline.constData(), int(polyline.size()));
|
|
|
|
}
|
|
|
|
void drawPolylineFast(const QPoint *points, int pointCount);
|
|
|
|
inline void drawPolylineFast(const QPolygon &polyline) {
|
|
|
|
drawPolylineFast(polyline.constData(), int(polyline.size()));
|
|
|
|
}
|
2018-12-19 00:13:18 +08:00
|
|
|
|
2022-09-27 07:42:54 +08:00
|
|
|
/** \brief draw a rounded rect, where each corner has a separate radius */
|
|
|
|
void drawComplexRoundedRect(const QRectF& r, double rTopLeft, double rTopRight, double rBottomLeft, double rBottomRight, Qt::SizeMode mode = Qt::AbsoluteSize);
|
2023-12-19 05:24:59 +08:00
|
|
|
/** \brief draw a rounded rect (\a radius >0 ), or a simple rect (\a radius <=0 ) */
|
|
|
|
void drawRoundedRectOrRect(const QRectF& r, double radius, Qt::SizeMode mode = Qt::AbsoluteSize);
|
2018-12-19 00:13:18 +08:00
|
|
|
protected:
|
2019-06-21 21:46:53 +08:00
|
|
|
void initQEnhacedPainter();
|
2018-12-19 00:13:18 +08:00
|
|
|
private:
|
2022-08-31 04:24:24 +08:00
|
|
|
/** \brief flags, specifying how the JKQTPEnhancedPainter works
|
|
|
|
*
|
|
|
|
* \see PainterFlags */
|
|
|
|
PainterFlags m_flags;
|
2018-12-19 00:13:18 +08:00
|
|
|
};
|
|
|
|
|
2022-08-31 04:24:24 +08:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(JKQTPEnhancedPainter::PainterFlags)
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // JKQTPENHANCED_PAINTERS_H
|