/* Copyright (c) 2008-2020 Jan W. Krieger () This software is free software: you can redistribute it and/or modify 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 (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 GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #ifndef JKQTPDRAWINGTOOLS_H_INCLUDED #define JKQTPDRAWINGTOOLS_H_INCLUDED #include "jkqtcommon/jkqtcommon_imexport.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "jkqtcommon/jkqtpmathtools.h" #include "jkqtcommon/jkqtpcodestructuring.h" class JKQTPEnhancedPainter; // forward /*! \brief tool class with static values used by JKQTPlotter/JKQTBasePlotter \ingroup jkqtptools_drawing */ struct JKQTPlotterDrawingTools { /** \brief smallest linewidth any line in JKQTPlotter/JKQTBasePlotter may have */ static JKQTCOMMON_LIB_EXPORT const double ABS_MIN_LINEWIDTH; }; /** \brief symbols that can be used to plot a datapoint for a graph * \ingroup jkqtptools_drawing */ enum JKQTPGraphSymbols { JKQTPNoSymbol=0, /*!< \brief plots no symbol at all (usefull together with error bars) */ JKQTPDot, /*!< \brief a small dot \image html symbols/symbol_dot.png */ JKQTPCross, /*!< \brief a X cross \image html symbols/symbol_cross.png */ JKQTPPlus, /*!< \brief a + cross \image html symbols/symbol_plus.png */ JKQTPCircle, /*!< \brief an unfilled circle \image html symbols/symbol_circle.png */ JKQTPFilledCircle, /*!< \brief a filled circle \image html symbols/symbol_filled_circle.png */ JKQTPRect, /*!< \brief an unfilled rectangle \image html symbols/symbol_rect.png */ JKQTPFilledRect, /*!< \brief a filled rectangle \image html symbols/symbol_filled_rect.png */ JKQTPTriangle, /*!< \brief an unfilled triangle (tip at top) \image html symbols/symbol_triangle.png */ JKQTPFilledTriangle, /*!< \brief a filled triangle (tip at top) \image html symbols/symbol_filled_triangle.png */ JKQTPDiamond, /*!< \brief an unfilled diamond \image html symbols/symbol_diamond.png */ JKQTPFilledDiamond, /*!< \brief a filled diamond \image html symbols/symbol_filled_diamond.png */ JKQTPstar, /*!< \brief an unfilled diamond \image html symbols/symbol_star.png */ JKQTPFilledStar, /*!< \brief a filled diamond \image html symbols/symbol_filled_star.png */ JKQTPPentagon, /*!< \brief an unfilled pentagon \image html symbols/symbol_pentagon.png */ JKQTPFilledPentagon, /*!< \brief a filled pentagon \image html symbols/symbol_filled_pentagon.png */ JKQTPAsterisc, /*!< \brief an asterisc star with 5 arms \image html symbols/symbol_asterisc.png */ JKQTPHourglass, /*!< \brief an hour glass symbol \image html symbols/symbol_hourglass.png */ JKQTPFilledHourglass, /*!< \brief a filled hour glass symbol \image html symbols/symbol_filled_hourglass.png */ JKQTPCurvedTriangle, /*!< \brief a curved triangle\image html symbols/symbol_curved_triangle.png */ JKQTPFilledCurvedTriangle, /*!< \brief a filled curved triangle\image html symbols/symbol_filled_curved_triangle.png */ JKQTPHexagon, /*!< \brief an unfilled hexagon \image html symbols/symbol_hexagon.png */ JKQTPFilledHexagon, /*!< \brief a filled hexagon \image html symbols/symbol_filled_hexagon.png */ JKQTPRectCross, /*!< \brief a square symbol with a cross inside \image html symbols/symbol_rect_cross.png */ JKQTPRectPlus, /*!< \brief a square symbol with a plus inside \image html symbols/symbol_rect_plus.png */ JKQTPRectTriangle, /*!< \brief a square symbol with a triangle inside \image html symbols/symbol_rect_triangle.png */ JKQTPRectDownTriangle, /*!< \brief a square symbol with a triangle (tip to the bottom) inside \image html symbols/symbol_rect_downtriangle.png */ JKQTPRectLeftTriangle, /*!< \brief a square symbol with a triangle (tip to the left) inside \image html symbols/symbol_rect_lefttriangle.png */ JKQTPRectRightTriangle, /*!< \brief a square symbol with a triangle (tip to the right) inside \image html symbols/symbol_rect_righttriangle.png */ JKQTPCircleCross, /*!< \brief a circle symbol with a cross inside \image html symbols/symbol_circle_cross.png */ JKQTPCirclePlus, /*!< \brief a circle symbol with a plus inside \image html symbols/symbol_circle_plus.png */ JKQTPCirclePeace, /*!< \brief a circled peace symbol \image html symbols/symbol_circle_peace.png */ JKQTPDiamondPlus, /*!< \brief a diamond symbol with a plus inside \image html symbols/symbol_diamond_plus.png */ JKQTPDiamondCross, /*!< \brief a diamond symbol with a cross inside \image html symbols/symbol_diamond_cross.png */ JKQTPTripod, /*!< \brief a tripod symbol \image html symbols/symbol_tripod.png */ JKQTPDownTripod, /*!< \brief a tripod symbol, pointing down \image html symbols/symbol_down_tripod.png */ JKQTPLeftTripod, /*!< \brief a tripod symbol, pointing to the left \image html symbols/symbol_left_tripod.png */ JKQTPRightTripod, /*!< \brief a tripod symbol, pointing to the right \image html symbols/symbol_right_tripod.png */ JKQTPAsterisc6, /*!< \brief an asterisc star with 6 arms \image html symbols/symbol_asterisc6.png */ JKQTPAsterisc8, /*!< \brief an asterisc star with 8 arms \image html symbols/symbol_asterisc8.png */ JKQTPPeace, /*!< \brief a peace symbol \image html symbols/symbol_peace.png */ JKQTPTarget, /*!< \brief a target symbol (circle with cross) \image html symbols/symbol_target.png */ JKQTPDownTriangle, /*!< \brief an unfilled triangle (tip at bottom) \image html symbols/symbol_down_triangle.png */ JKQTPFilledDownTriangle, /*!< \brief a filled triangle (tip at bottom) \image html symbols/symbol_filled_down_triangle.png */ JKQTPLeftTriangle, /*!< \brief an unfilled triangle (tip to the left) \image html symbols/symbol_left_triangle.png */ JKQTPFilledLeftTriangle, /*!< \brief a filled triangle (tip to the left) \image html symbols/symbol_filled_left_triangle.png */ JKQTPRightTriangle, /*!< \brief an unfilled triangle (tip to the right) \image html symbols/symbol_right_triangle.png */ JKQTPFilledRightTriangle, /*!< \brief a filled triangle (tip to the right) \image html symbols/symbol_filled_right_triangle.png */ JKQTPDownCurvedTriangle, /*!< \brief a curved triangle, pointing down \image html symbols/symbol_down_curved_triangle.png */ JKQTPFilledDownCurvedTriangle, /*!< \brief a filled curved triangle, pointing down \image html symbols/symbol_filled_down_curved_triangle.png */ JKQTPLeftCurvedTriangle, /*!< \brief a curved triangle, pointing to the left \image html symbols/symbol_left_curved_triangle.png */ JKQTPFilledLeftCurvedTriangle, /*!< \brief a filled curved triangle, pointing to the left \image html symbols/symbol_filled_left_curved_triangle.png */ JKQTPRightCurvedTriangle, /*!< \brief a curved triangle, pointing to the right \image html symbols/symbol_right_curved_triangle.png */ JKQTPFilledRightCurvedTriangle, /*!< \brief a filled curved triangle, pointing to the right \image html symbols/symbol_filled_right_curved_triangle.png */ JKQTPOctagon, /*!< \brief an unfilled octagon \image html symbols/symbol_octagon.png */ JKQTPFilledOctagon, /*!< \brief a filled octagon \image html symbols/symbol_filled_octagon.png */ JKQTPUpDownTriangle, /*!< \brief a overlay of an up and a down triangle symbol \image html symbols/symbol_updowntriangle.png */ JKQTPFilledUpDownTriangle, /*!< \brief a filled version of the overlay of an up and a down triangle \image html symbols/symbol_filled_updowntriangle.png */ JKQTPHorizontalHourglass, /*!< \brief a horizontal hour glass symbol \image html symbols/symbol_horizontal_hourglass.png */ JKQTPFilledHorizontalHourglass, /*!< \brief a filled horizontal hour glass symbol \image html symbols/symbol_filled_horizontal_hourglass.png */ JKQTPSantaClauseHouse, /*!< \brief a small house symbol ("Das is das haus vom Nicolaus") \image html symbols/symbol_santaclause.png */ JKQTPFilledSantaClauseHouse, /*!< \brief a filled small house symbol ("Das is das haus vom Nicolaus") \image html symbols/symbol_filled_santaclause.png */ JKQTPMale, /*!< \brief a male symbol \image html symbols/symbol_male.png */ JKQTPFemale, /*!< \brief a female symbol \image html symbols/symbol_female.png */ JKQTPSymbolCount, /*!< \brief can be used to iterate over all symbols using: for (int i=0; i(JKQTPSymbolCount); i++) { JKQTPGraphSymbols s=static_cast(i); ... } */ JKQTPMaxSymbolID=JKQTPSymbolCount-1, /*!< \brief points to the last available symbol, can be used to iterate over all symbols: for (int i=0; i<=static_cast(JKQTPMaxSymbolID); i++) { JKQTPGraphSymbols s=static_cast(i); ... } */ JKQTPDefaultSymbol=JKQTPCross, /*!< \brief a default symbol used for plotting */ }; /** \brief converts a JKQTPGraphSymbols variable into a identifier string * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT QString JKQTPGraphSymbols2String(JKQTPGraphSymbols pos); /** \brief converts a JKQTPGraphSymbols variable into a human-readable string * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT QString JKQTPGraphSymbols2NameString(JKQTPGraphSymbols pos); /** \brief converts a String into a JKQTPGraphSymbols * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT JKQTPGraphSymbols String2JKQTPGraphSymbols(const QString& pos); /** \brief symbols that can be used to plot a datapoint for a graph * \ingroup jkqtptools_drawing * * \image html geo_arrow_tips.png * * Note that all arrows end at the designated line-end (here indicated by dashed grey lines), even circles and rectangle: * * \image html geo_arrow_tipsatlineend.png * * \see \ref JKQTPlotterGeometricArrows and \ref JKQTPlotterGeometricGraphs */ enum JKQTPLineDecoratorStyle { JKQTPNoDecorator=0, /*!< \brief no decorator, i.e. a simple line-end */ JKQTPArrow, /*!< \brief a simple arrow tip, unfilled \image html JKQTPArrow.png*/ JKQTPFilledArrow, /*!< \brief a nice filled arrow tip \image html JKQTPFilledArrow.png */ JKQTPTriangleDecorator, /*!< \brief a triangular arrow tip \image html JKQTPTriangleDecorator.png */ JKQTPFilledTriangleDecorator, /*!< \brief a triangular filled arrow tip \image html JKQTPFilledTriangleDecorator.png */ JKQTPTriangleDecoratorAndBar, /*!< \brief a triangular arrow tip, with vertical bar \image html JKQTPTriangleDecoratorAndBar.png */ JKQTPFilledTriangleDecoratorAndBar, /*!< \brief a triangular filled arrow tip, with vertical bar \image html JKQTPFilledTriangleDecoratorAndBar.png */ JKQTPDoubleArrow, /*!< \brief a nice double-arrow tip \image html JKQTPDoubleArrow.png*/ JKQTPFilledDoubleArrow, /*!< \brief a nice filled double-arrow tip \image html JKQTPFilledDoubleArrow.png */ JKQTPCircleDecorator, /*!< \brief an open circle tip \image html JKQTPCircleDecorator.png */ JKQTPFilledCircleDecorator, /*!< \brief a filled circle tip \image html JKQTPFilledCircleDecorator.png */ JKQTPRectangleDecorator, /*!< \brief an open rectangle tip \image html JKQTPRectangleDecorator.png */ JKQTPFilledRectangleDecorator, /*!< \brief a filled rectangle tip \image html JKQTPFilledRectangleDecorator.png */ JKQTPArrowAndBar, /*!< \brief a simple arrow tip, unfilled, with vertical bar \image html JKQTPArrowAndBar.png */ JKQTPDoubleArrowAndBar, /*!< \brief a simple double-arrow tip, unfilled, with vertical bar \image html JKQTPDoubleArrowAndBar.png */ JKQTPBarDecorator, /*!< \brief a full vertical bar \image html JKQTPBarDecorator.png */ JKQTPBracketDecorator, /*!< \brief a vertical bracket decorator \image html JKQTPBracketDecorator.png */ JKQTPDiamondDecorator, /*!< \brief an open diamond tip \image html JKQTPDiamondDecorator.png */ JKQTPDiamondDecoratorAndBar, /*!< \brief an open diamond tip \image html JKQTPDiamondDecoratorAndBar.png */ JKQTPFilledDiamondDecorator, /*!< \brief a filled diamond tip \image html JKQTPFilledDiamondDecorator.png */ JKQTPFilledDiamondDecoratorAndBar, /*!< \brief a filled diamond tip \image html JKQTPFilledDiamondDecoratorAndBar.png */ JKQTPHalfBarDecorator, /*!< \brief a half vertical bar \image html JKQTPHalfBarDecorator.png */ JKQTPHarpoonDecorator, /*!< \brief an harpoon arrow \image html JKQTPHarpoonDecorator.png */ JKQTPHarpoonDecoratorAndBar, /*!< \brief an harpoon arrow, with vertical bar \image html JKQTPHarpoonDecoratorAndBar.png */ JKQTPSkewedBarDecorator, /*!< \brief a skewed vertical bar \image html JKQTPSkewedBarDecorator.png */ JKQTPLineDecoratorCount, /*!< \brief can be used to iterate over all symbols using: for (int i=0; i(JKQTPLineDecoratorCount); i++) { JKQTPLineDecoratorStyle s=static_cast(i); ... } */ JKQTPMaxLineDecoratorID=JKQTPLineDecoratorCount-1, /*!< \brief points to the last available symbol, can be used to iterate over all symbols: for (int i=0; i<=static_cast(JKQTPMaxLineDecoratorID); i++) { JKQTPLineDecoratorStyle s=static_cast(i); ... } */ JKQTPDefaultLineDecorator=JKQTPFilledArrow /*!< \brief a default symbol used for plotting */ }; /** \brief converts a JKQTPLineDecoratorStyle variable into a identifier string * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT QString JKQTPLineDecoratorStyle2String(JKQTPLineDecoratorStyle pos); /** \brief converts a JKQTPLineDecoratorStyle variable into a human-readable string * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT QString JKQTPLineDecoratorStyle2NameString(JKQTPLineDecoratorStyle pos); /** \brief converts a String into a JKQTPLineDecoratorStyle * \ingroup jkqtptools_drawing */ JKQTCOMMON_LIB_EXPORT JKQTPLineDecoratorStyle String2JKQTPLineDecoratorStyle(const QString& pos); /*! \brief plot the specified symbol at pixel position x,y. Note that this function only draws the decorator, NOT the line pointing to it! \ingroup jkqtptools_drawing \tparam TPainter Type of \a painter: A class like JKQTPEnhancedPainter or QPainter \param painter the QPainter to draw to \param x x-coordinate of the decorator tip \param y y-coordinate of the decorator tip \param angle_rad angle of the line pointing to (x,y), given in radians, 0rad points to the right, >0rad is a counter-clockwise rotation, as calculated by atan2() from dx, dy of a line! \param style type of the decorator to plot, see JKQTPLineDecoratorStyle \param size size of the decorator \param[out] line_start optional output parameter: when drawing the line let it end here, not necessarily at (x,y) */ template inline void JKQTPPlotLineDecorator(TPainter& painter, double x, double y, double angle_rad, JKQTPLineDecoratorStyle style, double size, QPointF* line_start=nullptr); /** \brief calculates the tail decorator size from the line width \a line_width, using decoratorSizeFactor and a non-linear scaling function that levels off towards small \a line_width and increases sub-linearly for large ones, so the arrow heads to not grow too much */ JKQTCOMMON_LIB_EXPORT double JKQTPLineDecoratorStyleCalcDecoratorSize(double line_width, double decoratorSizeFactor); /*! \brief plot the specified symbol at pixel position x,y \ingroup jkqtptools_drawing \tparam TPainter Type of \a painter: A class like JKQTPEnhancedPainter or QPainter \param painter the QPainter to draw to \param x x-coordinate of the symbol center \param y y-coordinate of the symbol center \param symbol type of the symbol to plot, see JKQTPGraphSymbols \param size size (width/height) of the symbol around (\a x , \a y) \param symbolLineWidth width of the lines used to draw the symbol \param color color of the symbol lines \param fillColor color of the symbol filling */ template inline void JKQTPPlotSymbol(TPainter& painter, double x, double y, JKQTPGraphSymbols symbol, double size, double symbolLineWidth, QColor color, QColor fillColor); /*! \brief plot the specified symbol at pixel position x,y \ingroup jkqtptools_drawing \param paintDevice the paint device to draw on \param x x-coordinate of the symbol center \param y y-coordinate of the symbol center \param symbol type of the symbol to plot, see JKQTPGraphSymbols \param size size (width/height) of the symbol around (\a x , \a y) \param symbolLineWidth width of the lines used to draw the symbol \param color color of the symbol lines \param fillColor color of the symbol filling */ JKQTCOMMON_LIB_EXPORT void JKQTPPlotSymbol(QPaintDevice& paintDevice, double x, double y, JKQTPGraphSymbols symbol, double size, double symbolLineWidth, QColor color, QColor fillColor); /*! \brief draw a tooltip, using the current brush and pen of the provided painter \ingroup jkqtptools_drawing \tparam TPainter Type of \a painter: A class like JKQTPEnhancedPainter or QPainter \param painter QPainter-like object to use for painting \param x x-coordinate of position the tooltip points to \param y y-coordinate of position the tooltip points to \param rect rectangle of the main tooltip area \image html tooltiptool_example.png */ template inline void JKQTPDrawTooltip(TPainter& painter, double x, double y, const QRectF& rect); template inline void JKQTPPlotSymbol(TPainter& painter, double x, double y, JKQTPGraphSymbols symbol, double symbolSize, double symbolLineWidth, QColor color, QColor fillColor) { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); QPen p=painter.pen(); p.setColor(color); p.setWidthF(qMax(JKQTPlotterDrawingTools::ABS_MIN_LINEWIDTH, symbolLineWidth)); p.setStyle(Qt::SolidLine); p.setCapStyle(Qt::FlatCap); painter.setPen(p); QBrush b=painter.brush(); b.setColor(fillColor); b.setStyle(Qt::SolidPattern); const double w=symbolSize; const double w2=w/2.0; const double w45=fabs(w*cos(45.0/180.0*JKQTPSTATISTICS_PI)); const double w3=w/3.0; // calculate star cordinates as static values static int star5_items=0; static double star5cordsx[10]; static double star5cordsy[10]; if (star5_items==0) { star5_items=5; double angle=360.0/double(star5_items)/180.0*JKQTPSTATISTICS_PI; for (int i=0; i(i)+0.5)*angle; star5cordsx[i*2]=sin(a); star5cordsx[i*2+1]=0.5*sin(a+angle/2.0); star5cordsy[i*2]=cos(a); star5cordsy[i*2+1]=0.5*cos(a+angle/2.0); } } static int star6_items=0; static double star6cordsx[12]; static double star6cordsy[12]; if (star6_items==0) { star6_items=6; double angle=360.0/double(star6_items)/180.0*JKQTPSTATISTICS_PI; for (int i=0; i(i)+0.5)*angle; star6cordsx[i*2]=sin(a); star6cordsx[i*2+1]=0.5*sin(a+angle/2.0); star6cordsy[i*2]=cos(a); star6cordsy[i*2+1]=0.5*cos(a+angle/2.0); } } static int star8_items=0; static double star8cordsx[16]; static double star8cordsy[16]; if (star8_items==0) { star8_items=8; double angle=360.0/double(star8_items)/180.0*JKQTPSTATISTICS_PI; for (int i=0; i(i)+0.5)*angle; star8cordsx[i*2]=sin(a); star8cordsx[i*2+1]=0.5*sin(a+angle/2.0); star8cordsy[i*2]=cos(a); star8cordsy[i*2+1]=0.5*cos(a+angle/2.0); } } switch(symbol) { case JKQTPDot: painter.drawPoint(QPointF(x,y)); break; case JKQTPCross:{ QPainterPath path; path.moveTo(x-w2,y-w2); path.lineTo(x+w2,y+w2); path.moveTo(x-w2,y+w2); path.lineTo(x+w2,y-w2); painter.drawPath(path); } break; case JKQTPPlus:{ QVector lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< lines; lines< inline void JKQTPDrawTooltip(TPainter& painter, double x, double y, const QRectF& rect) { QPolygonF poly; if (yrect.bottom()) { poly<rect.left()) { poly< inline void JKQTPPlotLineDecorator(TPainter& painter, double x, double y, double angle_rad, JKQTPLineDecoratorStyle style, double size, QPointF* line_start) { if (line_start) *line_start=QPointF(x,y); static double default_theta_open_tip=60.0/2.0 /180.0*JKQTPSTATISTICS_PI; static double tan__default_theta_open_tip=tan(default_theta_open_tip); static double default_theta_closed_tip=50.0/2.0 /180.0*JKQTPSTATISTICS_PI; static double tan__default_theta_closed_tip=tan(default_theta_closed_tip); QPen pinit=painter.pen(); pinit.setCapStyle(Qt::FlatCap); pinit.setJoinStyle(Qt::RoundJoin); QPen p0=pinit; p0.setWidthF(0); { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); painter.translate(x,y); painter.rotate(angle_rad/JKQTPSTATISTICS_PI*180.0); painter.setPen(p0); switch(style) { case JKQTPArrow: case JKQTPArrowAndBar: { const QPointF poly[3] = { QPointF(size, -tan__default_theta_open_tip*size), QPointF(0,0), QPointF(size, tan__default_theta_open_tip*size) }; painter.setPen(pinit); if (style==JKQTPArrowAndBar) painter.drawLine(QPointF(0,-tan__default_theta_open_tip*size), QPointF(0,tan__default_theta_open_tip*size)); painter.drawPolyline(poly, 3); } break; case JKQTPHarpoonDecorator: case JKQTPHarpoonDecoratorAndBar: { painter.setPen(pinit); if (style==JKQTPHarpoonDecoratorAndBar) painter.drawLine(QPointF(0,-tan__default_theta_open_tip*size), QPointF(0,tan__default_theta_open_tip*size)); painter.drawLine(QPointF(0,0), QPointF(size, tan__default_theta_open_tip*size)); } break; case JKQTPDoubleArrow: case JKQTPDoubleArrowAndBar: { const QPointF poly[3] = { QPointF(size, -tan__default_theta_open_tip*size), QPointF(0,0), QPointF(size, tan__default_theta_open_tip*size) }; painter.setPen(pinit); if (style==JKQTPDoubleArrowAndBar) painter.drawLine(QPointF(0,-tan__default_theta_open_tip*size), QPointF(0,tan__default_theta_open_tip*size)); painter.drawPolyline(poly, 3); painter.translate(4.0*pinit.widthF(),0); painter.drawPolyline(poly, 3); if (line_start) *line_start=QPointF(x,y)+QPointF(4.0*pinit.widthF()*cos(angle_rad),4.0*pinit.widthF()*sin(angle_rad)); } break; case JKQTPFilledArrow: case JKQTPFilledDoubleArrow: { const QPointF poly[4] = { QPointF(0,0), QPointF(size, tan__default_theta_closed_tip*size), QPointF(0.75*size,0), QPointF(size, -tan__default_theta_closed_tip*size) }; painter.drawPolygon(poly, 4); if (style==JKQTPFilledDoubleArrow) { painter.translate(0.5*size, 0); painter.drawPolygon(poly, 4); if (line_start) *line_start=QPointF(x,y)+QPointF(1.25*size*cos(angle_rad),1.25*size*sin(angle_rad)); } else { if (line_start) *line_start=QPointF(x,y)+QPointF(0.75*size*cos(angle_rad),0.75*size*sin(angle_rad)); } } break; case JKQTPTriangleDecorator: case JKQTPTriangleDecoratorAndBar: { const QPointF poly[3] = { QPointF(size, -tan__default_theta_closed_tip*size), QPointF(0,0), QPointF(size, tan__default_theta_closed_tip*size) }; painter.setBrush(Qt::NoBrush); painter.setPen(pinit); painter.drawConvexPolygon(poly, 3); if (style==JKQTPTriangleDecoratorAndBar) painter.drawLine(QPointF(0,-tan__default_theta_closed_tip*size), QPointF(0,tan__default_theta_closed_tip*size)); if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPFilledTriangleDecorator: case JKQTPFilledTriangleDecoratorAndBar: { const QPointF poly[3] = { QPointF(size, -tan__default_theta_closed_tip*size), QPointF(0,0), QPointF(size, tan__default_theta_closed_tip*size) }; painter.setPen(p0); painter.drawConvexPolygon(poly, 3); if (style==JKQTPFilledTriangleDecoratorAndBar) { painter.setPen(pinit); painter.drawLine(QPointF(0,-tan__default_theta_closed_tip*size), QPointF(0,tan__default_theta_closed_tip*size)); } if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPDiamondDecorator: case JKQTPDiamondDecoratorAndBar: { const QPointF poly[4] = { QPointF(0,0), QPointF(size/2.0, -tan__default_theta_closed_tip*size), QPointF(size,0), QPointF(size/2.0, tan__default_theta_closed_tip*size) }; painter.setBrush(Qt::NoBrush); painter.setPen(pinit); painter.drawConvexPolygon(poly, 4); if (style==JKQTPDiamondDecoratorAndBar) painter.drawLine(QPointF(0,-tan__default_theta_closed_tip*size), QPointF(0,tan__default_theta_closed_tip*size)); if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPFilledDiamondDecorator: case JKQTPFilledDiamondDecoratorAndBar: { const QPointF poly[4] = { QPointF(0,0), QPointF(size/2.0, -tan__default_theta_closed_tip*size), QPointF(size,0), QPointF(size/2.0, tan__default_theta_closed_tip*size) }; painter.setPen(p0); painter.drawConvexPolygon(poly, 4); if (style==JKQTPFilledDiamondDecoratorAndBar) { painter.setPen(pinit); painter.drawLine(QPointF(0,-tan__default_theta_closed_tip*size), QPointF(0,tan__default_theta_closed_tip*size)); } if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPCircleDecorator: case JKQTPFilledCircleDecorator: { if (style==JKQTPCircleDecorator) { painter.setBrush(Qt::NoBrush); painter.setPen(pinit); } else { painter.setPen(p0); } painter.drawEllipse(QRectF(0,-size/2.0,size,size)); if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPRectangleDecorator: case JKQTPFilledRectangleDecorator: { if (style==JKQTPRectangleDecorator) { painter.setBrush(Qt::NoBrush); painter.setPen(pinit); } else { painter.setPen(p0); } painter.drawRect(QRectF(0,-size/2.0,size,size)); if (line_start) *line_start=QPointF(x,y)+QPointF(size*cos(angle_rad),size*sin(angle_rad)); } break; case JKQTPBarDecorator: { painter.setPen(pinit); painter.drawLine(QPointF(0,-tan__default_theta_open_tip*size), QPointF(0,tan__default_theta_open_tip*size)); } break; case JKQTPHalfBarDecorator: { painter.setPen(pinit); painter.drawLine(QPointF(0,0), QPointF(0,tan__default_theta_open_tip*size)); } break; case JKQTPSkewedBarDecorator: { painter.setPen(pinit); painter.drawLine(QPointF(0.25*size,-tan__default_theta_open_tip*size), QPointF(-0.25*size,tan__default_theta_open_tip*size)); } break; case JKQTPBracketDecorator: { const QPointF poly[4] = { QPointF(-size*0.2,-tan__default_theta_open_tip*size), QPointF(0,-tan__default_theta_open_tip*size), QPointF(0,tan__default_theta_open_tip*size), QPointF(-size*0.2, tan__default_theta_open_tip*size) }; painter.setPen(pinit); painter.drawPolyline(poly, 4); } break; case JKQTPLineDecoratorCount: case JKQTPNoDecorator: break; } } } #endif // JKQTPDRAWINGTOOLS_H_INCLUDED