33#include <QGraphicsPathItem>
35#include <QSvgRenderer>
38#include "moc_qgslayoutitempolyline.cpp"
40using namespace Qt::StringLiterals;
45 createDefaultPolylineStyleSymbol();
51 createDefaultPolylineStyleSymbol();
78 if ( indexPoint == (
mPolygon.size() - 1 ) )
80 if ( distEnd < radius )
82 else if ( distStart < radius )
86 mPolygon.insert( indexPoint + 1, newPoint );
98 int newSelectNode = index;
100 newSelectNode =
mPolygon.size() - 1;
106void QgsLayoutItemPolyline::createDefaultPolylineStyleSymbol()
108 QVariantMap properties;
109 properties.insert( u
"color"_s, u
"0,0,0,255"_s );
110 properties.insert( u
"width"_s, u
"0.3"_s );
111 properties.insert( u
"capstyle"_s, u
"square"_s );
117void QgsLayoutItemPolyline::refreshSymbol()
119 if (
auto *lLayout =
layout() )
130void QgsLayoutItemPolyline::drawStartMarker( QPainter *painter )
135 switch ( mStartMarker )
144 const double angle = startLine.angle();
145 drawArrow( painter,
mPolygon.at( 0 ), angle );
153 const double angle = startLine.angle();
154 drawSvgMarker( painter,
mPolygon.at( 0 ), angle, mStartMarkerFile, mStartArrowHeadHeight );
161void QgsLayoutItemPolyline::drawEndMarker( QPainter *painter )
166 switch ( mEndMarker )
175 const double angle = endLine.angle();
178 const QVector2D dir = QVector2D( endLine.dx(), endLine.dy() ).normalized();
179 QPointF endPoint = endLine.p2();
180 endPoint += ( dir * 0.5 * mArrowHeadWidth ).toPointF();
182 drawArrow( painter, endPoint, angle );
189 const double angle = endLine.angle();
190 drawSvgMarker( painter, endLine.p2(), angle, mEndMarkerFile, mEndArrowHeadHeight );
196void QgsLayoutItemPolyline::drawArrow( QPainter *painter, QPointF center,
double angle )
201 p.setColor( mArrowHeadStrokeColor );
202 p.setWidthF( mArrowHeadStrokeWidth );
203 painter->setPen( p );
205 b.setColor( mArrowHeadFillColor );
206 painter->setBrush( b );
208 drawArrowHead( painter, center.x(), center.y(), angle, mArrowHeadWidth );
211void QgsLayoutItemPolyline::updateMarkerSvgSizes()
217void QgsLayoutItemPolyline::drawArrowHead( QPainter *p,
const double x,
const double y,
const double angle,
const double arrowHeadWidth )
222 const double angleRad =
angle / 180.0 * M_PI;
223 const QPointF middlePoint( x, y );
229 QPointF p1Rotated, p2Rotated;
230 p1Rotated.setX( p1.x() * std::cos( angleRad ) + p1.y() * -std::sin( angleRad ) );
231 p1Rotated.setY( p1.x() * std::sin( angleRad ) + p1.y() * std::cos( angleRad ) );
232 p2Rotated.setX( p2.x() * std::cos( angleRad ) + p2.y() * -std::sin( angleRad ) );
233 p2Rotated.setY( p2.x() * std::sin( angleRad ) + p2.y() * std::cos( angleRad ) );
235 QPolygonF arrowHeadPoly;
236 arrowHeadPoly << middlePoint;
237 arrowHeadPoly << QPointF( middlePoint.x() + p1Rotated.x(), middlePoint.y() + p1Rotated.y() );
238 arrowHeadPoly << QPointF( middlePoint.x() + p2Rotated.x(), middlePoint.y() + p2Rotated.y() );
239 QPen arrowPen = p->pen();
240 arrowPen.setJoinStyle( Qt::RoundJoin );
241 QBrush arrowBrush = p->brush();
242 arrowBrush.setStyle( Qt::SolidPattern );
243 p->setPen( arrowPen );
244 p->setBrush( arrowBrush );
245 arrowBrush.setStyle( Qt::SolidPattern );
246 p->drawPolygon( arrowHeadPoly );
249void QgsLayoutItemPolyline::drawSvgMarker( QPainter *p, QPointF point,
double angle,
const QString &markerPath,
double height )
const
254 if ( mArrowHeadWidth <= 0 || height <= 0 )
260 if ( markerPath.isEmpty() )
264 const QByteArray &svgContent =
QgsApplication::svgCache()->
svgContent( markerPath, mArrowHeadWidth, mArrowHeadFillColor, mArrowHeadStrokeColor, mArrowHeadStrokeWidth,
266 r.load( svgContent );
268 const QgsScopedQPainterState painterState( p );
269 p->translate( point.x(), point.y() );
271 p->translate( -mArrowHeadWidth / 2.0, -height / 2.0 );
272 r.render( p, QRectF( 0, 0, mArrowHeadWidth, height ) );
277 if ( !
id().isEmpty() )
280 return tr(
"<Polyline>" );
293 const QTransform t = QTransform::fromScale( scale, scale );
295 mPolylineStyleSymbol->startRender( renderContext );
296 mPolylineStyleSymbol->renderPolyline( t.map(
mPolygon ),
nullptr, renderContext );
297 mPolylineStyleSymbol->stopRender( renderContext );
302 drawStartMarker( renderContext.
painter() );
303 drawEndMarker( renderContext.
painter() );
331 mArrowHeadWidth = width;
332 updateMarkerSvgSizes();
341 QPainterPathStroker ps;
344 const QPainterPath strokedOutline = ps.createStroke( path );
346 return strokedOutline;
352 QList<QPointF> uniquePoints;
356 if ( !uniquePoints.contains( point ) )
358 uniquePoints.append( point );
368 return mPolylineStyleSymbol.get();
374 mStartMarkerFile = path;
375 if ( path.isEmpty() || !r.load( path ) )
377 mStartArrowHeadHeight = 0;
382 const QRect viewBox = r.viewBox();
383 mStartArrowHeadHeight = mArrowHeadWidth / viewBox.width() * viewBox.height();
391 mEndMarkerFile = path;
392 if ( path.isEmpty() || !r.load( path ) )
394 mEndArrowHeadHeight = 0;
399 const QRect viewBox = r.viewBox();
400 mEndArrowHeadHeight = mArrowHeadWidth / viewBox.width() * viewBox.height();
407 mArrowHeadStrokeColor = color;
413 mArrowHeadFillColor = color;
419 mArrowHeadStrokeWidth = width;
426 if ( mPolylineStyleSymbol )
439 mPolylineStyleSymbol.get(),
442 elmt.appendChild( pe );
453 elmt.setAttribute( u
"arrowHeadWidth"_s, QString::number( mArrowHeadWidth ) );
456 elmt.setAttribute( u
"outlineWidth"_s, QString::number( mArrowHeadStrokeWidth ) );
457 elmt.setAttribute( u
"markerMode"_s, mEndMarker );
458 elmt.setAttribute( u
"startMarkerMode"_s, mStartMarker );
459 elmt.setAttribute( u
"startMarkerFile"_s, startMarkerPath );
460 elmt.setAttribute( u
"endMarkerFile"_s, endMarkerPath );
467 mArrowHeadWidth = elmt.attribute( u
"arrowHeadWidth"_s, u
"2.0"_s ).toDouble();
470 mArrowHeadStrokeWidth = elmt.attribute( u
"outlineWidth"_s, u
"1.0"_s ).toDouble();
472 const QString startMarkerPath = elmt.attribute( u
"startMarkerFile"_s, QString() );
473 const QString endMarkerPath = elmt.attribute( u
"endMarkerFile"_s, QString() );
492 margin += 0.5 * mArrowHeadWidth;
494 br.adjust( -margin, -margin, margin, margin );
495 prepareGeometryChange();
503double QgsLayoutItemPolyline::computeMarkerMargin()
const
509 margin = mArrowHeadStrokeWidth / 2.0 + mArrowHeadWidth * M_SQRT2;
514 const double startMarkerMargin = std::sqrt( 0.25 * ( mStartArrowHeadHeight * mStartArrowHeadHeight + mArrowHeadWidth * mArrowHeadWidth ) );
515 margin = std::max( startMarkerMargin, margin );
520 const double endMarkerMargin = std::sqrt( 0.25 * ( mEndArrowHeadHeight * mEndArrowHeadHeight + mArrowHeadWidth * mArrowHeadWidth ) );
521 margin = std::max( endMarkerMargin, margin );
@ Millimeters
Millimeters.
@ DisableSymbolClippingToExtent
Force symbol clipping to map extent to be disabled in all situations. This will result in slower rend...
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QgsSvgCache * svgCache()
Returns the application's SVG cache, used for caching SVG images and handling parameter replacement w...
static QColor colorFromString(const QString &string)
Decodes a string into a color value.
static QString colorToString(const QColor &color)
Encodes a color into a string value.
bool isValid() const override
Must be reimplemented in subclasses.
void setArrowHeadWidth(double width)
Sets the width of line arrow heads in mm.
void setEndMarker(MarkerMode mode)
Sets the end marker mode, which controls what marker is drawn at the end of the line.
void setEndSvgMarkerPath(const QString &path)
Sets the path to a SVG marker to draw at the end of the line.
void _writeXmlStyle(QDomDocument &doc, QDomElement &elmt, const QgsReadWriteContext &context) const override
Method called in writeXml.
void setArrowHeadStrokeWidth(double width)
Sets the pen width in millimeters for the stroke of the arrow head.
void _readXmlStyle(const QDomElement &elmt, const QgsReadWriteContext &context) override
Method called in readXml.
void updateBoundingRect() override
void setArrowHeadFillColor(const QColor &color)
Sets the color used to fill the arrow head.
bool _removeNode(int nodeIndex) override
Method called in removeNode.
QgsLineSymbol * symbol()
Returns the line symbol used to draw the shape.
void setArrowHeadStrokeColor(const QColor &color)
Sets the color used to draw the stroke around the arrow head.
void setStartMarker(MarkerMode mode)
Sets the start marker mode, which controls what marker is drawn at the start of the line.
MarkerMode
Vertex marker mode.
@ ArrowHead
Show arrow marker.
@ SvgMarker
Show SVG marker.
@ NoMarker
Don't show marker.
int type() const override
QPainterPath shape() const override
~QgsLayoutItemPolyline() override
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
Accepts the specified style entity visitor, causing it to visit all style entities associated with th...
bool readPropertiesFromElement(const QDomElement &element, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets item state from a DOM element.
QString displayName() const override
Gets item display name.
static QgsLayoutItemPolyline * create(QgsLayout *layout)
Returns a new polyline item for the specified layout.
bool _addNode(int indexPoint, QPointF newPoint, double radius) override
Method called in addNode.
void setSymbol(QgsLineSymbol *symbol)
Sets the symbol used to draw the shape.
QIcon icon() const override
Returns the item's icon.
double arrowHeadWidth() const
Returns the width of line arrow heads in mm.
bool writePropertiesToElement(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores item state within an XML DOM element.
void _draw(QgsLayoutItemRenderContext &context, const QStyleOptionGraphicsItem *itemStyle=nullptr) override
Method called in paint.
void setStartSvgMarkerPath(const QString &path)
Sets the path to a SVG marker to draw at the start of the line.
QgsLayoutItemPolyline(QgsLayout *layout)
Constructor for QgsLayoutItemPolyline for the specified layout.
@ LayoutPolyline
Polyline shape item.
Contains settings and helpers relating to a render of a QgsLayoutItem.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
virtual QString uuid() const
Returns the item identification string.
QString id() const
Returns the item's ID name.
void frameChanged()
Emitted if the item's frame style changes.
double mMaxSymbolBleed
Max symbol bleed.
QRectF mCurrentRectangle
Current bounding rectangle of shape.
bool readPropertiesFromElement(const QDomElement &element, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets item state from a DOM element.
bool setSelectedNode(int index)
Selects a node by index.
bool writePropertiesToElement(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores item state within an XML DOM element.
void updateSceneRect()
Update the current scene rectangle for this item.
double computeDistance(QPointF pt1, QPointF pt2) const
Compute an euclidean distance between 2 nodes.
QgsLayoutNodesItem(QgsLayout *layout)
Constructor for QgsLayoutNodesItem, attached to the specified layout.
QPolygonF mPolygon
Shape's nodes.
const QgsLayout * layout() const
Returns the layout the object is attached to.
static QgsRenderContext createRenderContextForLayout(QgsLayout *layout, QPainter *painter, double dpi=-1)
Creates a render context suitable for the specified layout and painter destination.
A line symbol type, for rendering LineString and MultiLineString geometries.
static std::unique_ptr< QgsLineSymbol > createSimple(const QVariantMap &properties)
Create a line symbol with one symbol layer: SimpleLine with specified properties.
A container for the context for various read/write operations on objects.
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
Contains information about the context of a rendering operation.
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
void setFlag(Qgis::RenderContextFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected).
Scoped object for saving and restoring a QPainter object's state.
An interface for classes which can visit style entity (e.g.
virtual bool visit(const QgsStyleEntityVisitorInterface::StyleLeaf &entity)
Called when the visitor will visit a style entity.
A symbol entity for QgsStyle databases.
QByteArray svgContent(const QString &path, double size, const QColor &fill, const QColor &stroke, double strokeWidth, double widthScaleFactor, double fixedAspectRatio=0, bool blocking=false, const QMap< QString, QString > ¶meters=QMap< QString, QString >(), bool *isMissingImage=nullptr)
Gets the SVG content corresponding to the given path.
static QString svgSymbolPathToName(const QString &path, const QgsPathResolver &pathResolver)
Determines an SVG symbol's name from its path.
static std::unique_ptr< QgsSymbol > loadSymbol(const QDomElement &element, const QgsReadWriteContext &context)
Attempts to load a symbol from a DOM element.
static QString svgSymbolNameToPath(const QString &name, const QgsPathResolver &pathResolver)
Determines an SVG symbol's path from its name.
static QDomElement saveSymbol(const QString &symbolName, const QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
static double estimateMaxSymbolBleed(QgsSymbol *symbol, const QgsRenderContext &context)
Returns the maximum estimated bleed for the symbol.
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored).
Contains information relating to the style entity currently being visited.