43#include "moc_qgslayoutitemelevationprofile.cpp"
45using namespace Qt::StringLiterals;
47#define CACHE_SIZE_LIMIT 5000
50class QgsLayoutItemElevationProfilePlot :
public Qgs2DXyPlot
54 QgsLayoutItemElevationProfilePlot()
68 const double distanceMin =
xMinimum() * xScale;
69 const double distanceMax =
xMaximum() * xScale;
70 rc.
painter()->translate( plotArea.left(), plotArea.top() );
71 mRenderer->render( rc, plotArea.width(), plotArea.height(), distanceMin, distanceMax, yMinimum(),
yMaximum() );
72 rc.
painter()->translate( -plotArea.left(), -plotArea.top() );
73 mRenderer->renderSubsectionsIndicator( rc, plotArea, distanceMin, distanceMax,
yMinimum(),
yMaximum() );
88 , mPlot( std::make_unique< QgsLayoutItemElevationProfilePlot >() )
90 mBackgroundUpdateTimer =
new QTimer(
this );
91 mBackgroundUpdateTimer->setSingleShot(
true );
92 connect( mBackgroundUpdateTimer, &QTimer::timeout,
this, &QgsLayoutItemElevationProfile::recreateCachedImageInBackground );
94 setCacheMode( QGraphicsItem::NoCache );
121 mRenderJob->cancelGeneration();
145 bool forceUpdate =
false;
150 double value = mTolerance;
170 double value = mPlot->xMinimum();
181 mPlot->setXMinimum( value );
190 double value = mPlot->xMaximum();
201 mPlot->setXMaximum( value );
210 double value = mPlot->yMinimum();
221 mPlot->setYMinimum( value );
230 double value = mPlot->yMaximum();
241 mPlot->setYMaximum( value );
250 double value = mPlot->xAxis().gridIntervalMajor();
261 mPlot->xAxis().setGridIntervalMajor( value );
270 double value = mPlot->xAxis().gridIntervalMinor();
281 mPlot->xAxis().setGridIntervalMinor( value );
290 double value = mPlot->xAxis().labelInterval();
301 mPlot->xAxis().setLabelInterval( value );
310 double value = mPlot->yAxis().gridIntervalMajor();
321 mPlot->yAxis().setGridIntervalMajor( value );
330 double value = mPlot->yAxis().gridIntervalMinor();
341 mPlot->yAxis().setGridIntervalMinor( value );
350 double value = mPlot->yAxis().labelInterval();
361 mPlot->yAxis().setLabelInterval( value );
370 double value = mPlot->margins().left();
383 mPlot->setMargins( margins );
392 double value = mPlot->margins().right();
405 mPlot->setMargins( margins );
414 double value = mPlot->margins().top();
427 mPlot->setMargins( margins );
436 double value = mPlot->margins().bottom();
449 mPlot->setMargins( margins );
457 mCacheInvalidated =
true;
473 return blendMode() != QPainter::CompositionMode_SourceOver;
478 return mEvaluatedOpacity < 1.0;
493 return _qgis_listRefToRaw( mLayers );
498 if (
layers == _qgis_listRefToRaw( mLayers ) )
501 mLayers = _qgis_listRawToRef(
layers );
507 if ( mSources.isEmpty() && !mLayers.isEmpty() )
513 QList< QgsAbstractProfileSource * >
sources;
514 const QList<QgsMapLayer *> layersToGenerate =
layers();
515 sources.reserve( layersToGenerate.size() );
532 QList< QgsAbstractProfileSource * >
sources;
533 sources.reserve( mSources.count() );
534 for (
const auto &source : mSources )
536 if (
const QgsMapLayerRef *layerRef = std::get_if< QgsMapLayerRef >( &source ) )
540 sources << layer->profileSource();
543 else if (
auto profileSource = std::get_if< QgsAbstractProfileSource * >( &source ) )
558 mSources.reserve(
sources.count() );
561 if (
auto layer =
dynamic_cast<QgsMapLayer *
>( profileSource ) )
567 mSources << profileSource;
576 mCurve.reset( curve );
615 mAtlasDriven = enabled;
641 if ( !
mLayout || !painter || !painter->device() || !mUpdatesEnabled )
650 QRectF thisPaintRect = rect();
654 if (
mLayout->renderContext().isPreviewRender() )
660 painter->setClipRect( thisPaintRect );
661 if ( !mCacheFinalImage || mCacheFinalImage->isNull() )
664 painter->setBrush( QBrush( QColor( 125, 125, 125, 125 ) ) );
665 painter->drawRect( thisPaintRect );
666 painter->setBrush( Qt::NoBrush );
668 messageFont.setPointSize( 12 );
669 painter->setFont( messageFont );
670 painter->setPen( QColor( 255, 255, 255, 255 ) );
671 painter->drawText( thisPaintRect, Qt::AlignCenter | Qt::AlignHCenter, tr(
"Rendering profile" ) );
674 ( mRenderJob && mCacheInvalidated && !mDrawingPreview )
676 ( !mRenderJob && !mDrawingPreview )
681 mBackgroundUpdateTimer->start( 1 );
686 if ( mCacheInvalidated && !mDrawingPreview )
690 mBackgroundUpdateTimer->start( 1 );
695 double imagePixelWidth = mCacheFinalImage->width();
696 double scale = rect().width() / imagePixelWidth;
700 painter->scale( scale, scale );
701 painter->setCompositionMode( blendModeForRender() );
702 painter->drawImage( 0, 0, *mCacheFinalImage );
705 painter->setClipRect( thisPaintRect, Qt::NoClip );
718 QPaintDevice *paintDevice = painter->device();
725 painter->setRenderHint( QPainter::LosslessImageRendering,
true );
738 int widthInPixels =
static_cast< int >( std::round( boundingRect().width() * layoutUnitsInInches * destinationDpi ) );
739 int heightInPixels =
static_cast< int >( std::round( boundingRect().height() * layoutUnitsInInches * destinationDpi ) );
740 QImage image = QImage( widthInPixels, heightInPixels, QImage::Format_ARGB32 );
742 image.fill( Qt::transparent );
743 image.setDotsPerMeterX(
static_cast< int >( std::round( 1000 * destinationDpi / 25.4 ) ) );
744 image.setDotsPerMeterY(
static_cast< int >( std::round( 1000 * destinationDpi / 25.4 ) ) );
745 double dotsPerMM = destinationDpi / 25.4;
746 layoutSize *= dotsPerMM;
747 QPainter p( &image );
748 preparePainter( &p );
753 p.scale( dotsPerMM, dotsPerMM );
759 p.scale( 1.0 / dotsPerMM, 1.0 / dotsPerMM );
761 const double mapUnitsPerPixel =
static_cast<double>( mPlot->xMaximum() - mPlot->xMinimum() ) * mPlot->xScale / layoutSize.width();
764 QList< QgsAbstractProfileSource *> sourcesToRender =
sources();
765 std::reverse( sourcesToRender.begin(), sourcesToRender.end() );
772 mPlot->setRenderer( &renderer );
775 mPlot->setSize( layoutSize );
778 mPlot->render( rc, plotContext );
780 mPlot->setRenderer(
nullptr );
782 p.scale( dotsPerMM, dotsPerMM );
790 painter->setCompositionMode( blendModeForRender() );
791 painter->scale( 1 / dotsPerMM, 1 / dotsPerMM );
792 painter->drawImage( 0, 0, image );
793 painter->scale( dotsPerMM, dotsPerMM );
808 double dotsPerMM = paintDevice->logicalDpiX() / 25.4;
809 layoutSize *= dotsPerMM;
810 painter->scale( 1 / dotsPerMM, 1 / dotsPerMM );
812 const double mapUnitsPerPixel =
static_cast<double>( mPlot->xMaximum() - mPlot->xMinimum() ) * mPlot->xScale / layoutSize.width();
815 QList< QgsAbstractProfileSource *> sourcesToRender =
sources();
816 std::reverse( sourcesToRender.begin(), sourcesToRender.end() );
829 mPlot->setRenderer( &renderer );
832 mPlot->setSize( layoutSize );
835 mPlot->render( rc, plotContext );
837 mPlot->setRenderer(
nullptr );
839 painter->setClipRect( thisPaintRect, Qt::NoClip );
854 if ( mAtlasDriven &&
mLayout &&
mLayout->reportContext().layer() )
865 mCurve.reset( curve->clone() );
878 mCacheInvalidated =
true;
889 QDomElement plotElement = doc.createElement( u
"plot"_s );
890 mPlot->writeXml( plotElement, doc, rwContext );
891 layoutProfileElem.appendChild( plotElement );
894 layoutProfileElem.setAttribute( u
"distanceUnit"_s,
qgsEnumValueToKey( mDistanceUnit ) );
896 layoutProfileElem.setAttribute( u
"tolerance"_s, mTolerance );
897 layoutProfileElem.setAttribute( u
"atlasDriven"_s, mAtlasDriven ? u
"1"_s : u
"0"_s );
898 if ( mCrs.isValid() )
900 QDomElement crsElem = doc.createElement( u
"crs"_s );
901 mCrs.writeXml( crsElem, doc );
902 layoutProfileElem.appendChild( crsElem );
906 QDomElement curveElem = doc.createElement( u
"curve"_s );
907 curveElem.appendChild( doc.createTextNode( mCurve->asWkt( ) ) );
908 layoutProfileElem.appendChild( curveElem );
912 QDomElement layersElement = doc.createElement( u
"layers"_s );
915 QDomElement layerElement = doc.createElement( u
"layer"_s );
916 layer.writeXml( layerElement, rwContext );
917 layersElement.appendChild( layerElement );
919 layoutProfileElem.appendChild( layersElement );
923 QDomElement sourcesElement = doc.createElement( u
"profileSources"_s );
924 for (
const auto &source : mSources )
926 if (
const QgsMapLayerRef *layerRef = std::get_if< QgsMapLayerRef >( &source ) )
928 if ( layerRef->get() )
930 QDomElement sourceElement = doc.createElement( u
"profileLayerSource"_s );
931 layerRef->writeXml( sourceElement, rwContext );
932 sourcesElement.appendChild( sourceElement );
935 else if (
auto profileSource = std::get_if< QgsAbstractProfileSource * >( &source ) )
939 QDomElement sourceElement = doc.createElement( u
"profileCustomSource"_s );
940 sourceElement.setAttribute( u
"id"_s, ( *profileSource )->profileSourceId() );
941 sourcesElement.appendChild( sourceElement );
946 layoutProfileElem.appendChild( sourcesElement );
949 if ( mSubsectionsSymbol )
951 QDomElement subsectionsElement = doc.createElement( u
"subsections"_s );
953 subsectionsElement.appendChild( symbolElement );
954 layoutProfileElem.appendChild( subsectionsElement );
962 const QDomElement plotElement = itemElem.firstChildElement( u
"plot"_s );
963 if ( !plotElement.isNull() )
965 mPlot->readXml( plotElement, context );
968 const QDomNodeList crsNodeList = itemElem.elementsByTagName( u
"crs"_s );
970 if ( !crsNodeList.isEmpty() )
972 const QDomElement crsElem = crsNodeList.at( 0 ).toElement();
973 crs.readXml( crsElem );
979 const QDomNodeList curveNodeList = itemElem.elementsByTagName( u
"curve"_s );
980 if ( !curveNodeList.isEmpty() )
982 const QDomElement curveElem = curveNodeList.at( 0 ).toElement();
986 mCurve.reset( curveGeom->clone() );
994 mTolerance = itemElem.attribute( u
"tolerance"_s ).toDouble();
995 mAtlasDriven =
static_cast< bool >( itemElem.attribute( u
"atlasDriven"_s, u
"0"_s ).toInt() );
999 const QDomElement layersElement = itemElem.firstChildElement( u
"layers"_s );
1000 QDomElement layerElement = layersElement.firstChildElement( u
"layer"_s );
1001 while ( !layerElement.isNull() )
1004 ref.
readXml( layerElement, context );
1006 mLayers.append( ref );
1008 layerElement = layerElement.nextSiblingElement( u
"layer"_s );
1014 mSources.reserve( itemElem.elementsByTagName( u
"profileSources"_s ).count() );
1015 const QDomElement sourcesElement = itemElem.firstChildElement( u
"profileSources"_s );
1016 QDomElement sourceElement = sourcesElement.firstChildElement();
1017 while ( !sourceElement.isNull() )
1019 if ( sourceElement.tagName() ==
"profileCustomSource"_L1 )
1021 const QString sourceId = sourceElement.attribute( u
"id"_s );
1024 mSources << profileSource ;
1027 else if ( sourceElement.tagName() ==
"profileLayerSource"_L1 )
1030 ref.
readXml( sourceElement, context );
1038 sourceElement = sourceElement.nextSiblingElement();
1042 const QDomElement subsectionsElement = itemElem.firstChildElement( u
"subsections"_s );
1043 const QDomElement symbolsElement = subsectionsElement.firstChildElement( u
"symbol"_s );
1044 if ( !symbolsElement.isNull() )
1047 if ( subSectionsSymbol )
1056void QgsLayoutItemElevationProfile::recreateCachedImageInBackground()
1062 QPainter *oldPainter = mPainter.release();
1063 QImage *oldImage = mCacheRenderingImage.release();
1066 oldJob->deleteLater();
1074 mCacheRenderingImage.reset(
nullptr );
1078 Q_ASSERT( !mRenderJob );
1079 Q_ASSERT( !mPainter );
1080 Q_ASSERT( !mCacheRenderingImage );
1083 double widthLayoutUnits = layoutSize.width();
1084 double heightLayoutUnits = layoutSize.height();
1086 int w =
static_cast< int >( std::round( widthLayoutUnits * mPreviewScaleFactor ) );
1087 int h =
static_cast< int >( std::round( heightLayoutUnits * mPreviewScaleFactor ) );
1090 if ( w > 5000 || h > 5000 )
1095 h =
static_cast< int>( std::round( w * heightLayoutUnits / widthLayoutUnits ) );
1100 w =
static_cast< int >( std::round( h * widthLayoutUnits / heightLayoutUnits ) );
1104 if ( w <= 0 || h <= 0 )
1107 mCacheRenderingImage = std::make_unique<QImage>( w, h, QImage::Format_ARGB32 );
1110 mCacheRenderingImage->setDotsPerMeterX(
static_cast< int >( std::round( 1000 * w / widthLayoutUnits ) ) );
1111 mCacheRenderingImage->setDotsPerMeterY(
static_cast< int >( std::round( 1000 * h / heightLayoutUnits ) ) );
1114 mCacheRenderingImage->fill( Qt::transparent );
1121 mCacheInvalidated =
false;
1122 mPainter = std::make_unique<QPainter>( mCacheRenderingImage.get() );
1124 QList< QgsAbstractProfileSource *> sourcesToRender =
sources();
1125 std::reverse( sourcesToRender.begin(), sourcesToRender.end() );
1127 mRenderJob = std::make_unique< QgsProfilePlotRenderer >( sourcesToRender,
profileRequest() );
1129 mRenderJob->setSubsectionsSymbol( rendererSubSectionsSymbol.release() );
1131 mRenderJob->startGeneration();
1133 mDrawingPreview =
false;
1136void QgsLayoutItemElevationProfile::profileGenerationFinished()
1138 mPlot->setRenderer( mRenderJob.get() );
1144 const double mapUnitsPerPixel =
static_cast< double >( mPlot->xMaximum() - mPlot->xMinimum() ) * mPlot->xScale /
1145 mCacheRenderingImage->size().width();
1149 mPlot->setSize( mCacheRenderingImage->size() );
1151 QgsPlotRenderContext plotContext;
1152 mPlot->render( rc, plotContext );
1154 mPlot->setRenderer(
nullptr );
1157 mRenderJob.reset(
nullptr );
1158 mPainter.reset(
nullptr );
1159 mCacheFinalImage = std::move( mCacheRenderingImage );
1167 return mDistanceUnit;
1172 mDistanceUnit = unit;
1174 switch ( mDistanceUnit )
1228 mPlot->xAxis().setLabelSuffix( QObject::tr(
"°" ) );
1232 mPlot->xAxis().setLabelSuffix( QString() );
1239 mSubsectionsSymbol.reset( symbol );
1242void QgsLayoutItemElevationProfile::setSourcesPrivate()
@ ForceVector
Always force vector-based rendering, even when the result will be visually different to a raster-base...
DistanceUnit
Units of distance.
@ YardsBritishSears1922Truncated
British yards (Sears 1922 truncated).
@ MilesUSSurvey
US Survey miles.
@ LinksBritishSears1922
British links (Sears 1922).
@ YardsBritishBenoit1895A
British yards (Benoit 1895 A).
@ LinksBritishBenoit1895A
British links (Benoit 1895 A).
@ Centimeters
Centimeters.
@ YardsIndian1975
Indian yards (1975).
@ FeetUSSurvey
US Survey feet.
@ Millimeters
Millimeters.
@ FeetBritishSears1922
British feet (Sears 1922).
@ YardsClarkes
Clarke's yards.
@ YardsIndian
Indian yards.
@ FeetBritishBenoit1895B
British feet (Benoit 1895 B).
@ Miles
Terrestrial miles.
@ LinksUSSurvey
US Survey links.
@ ChainsUSSurvey
US Survey chains.
@ FeetClarkes
Clarke's feet.
@ Unknown
Unknown distance unit.
@ FeetBritish1936
British feet (1936).
@ FeetIndian1962
Indian feet (1962).
@ YardsBritishSears1922
British yards (Sears 1922).
@ FeetIndian1937
Indian feet (1937).
@ YardsIndian1937
Indian yards (1937).
@ Degrees
Degrees, for planar geographic CRS distance measurements.
@ ChainsBritishBenoit1895B
British chains (Benoit 1895 B).
@ LinksBritishSears1922Truncated
British links (Sears 1922 truncated).
@ ChainsBritishBenoit1895A
British chains (Benoit 1895 A).
@ YardsBritishBenoit1895B
British yards (Benoit 1895 B).
@ FeetBritish1865
British feet (1865).
@ YardsIndian1962
Indian yards (1962).
@ FeetBritishSears1922Truncated
British feet (Sears 1922 truncated).
@ MetersGermanLegal
German legal meter.
@ LinksBritishBenoit1895B
British links (Benoit 1895 B).
@ ChainsInternational
International chains.
@ LinksInternational
International links.
@ ChainsBritishSears1922Truncated
British chains (Sears 1922 truncated).
@ FeetIndian
Indian (geodetic) feet.
@ NauticalMiles
Nautical miles.
@ ChainsClarkes
Clarke's chains.
@ LinksClarkes
Clarke's links.
@ ChainsBritishSears1922
British chains (Sears 1922).
@ FeetIndian1975
Indian feet (1975).
@ FeetGoldCoast
Gold Coast feet.
@ FeetBritishBenoit1895A
British feet (Benoit 1895 A).
@ LosslessImageRendering
Render images losslessly whenever possible, instead of the default lossy jpeg rendering used for some...
virtual void renderContent(QgsRenderContext &context, QgsPlotRenderContext &plotContext, const QRectF &plotArea, const QgsPlotData &plotData=QgsPlotData())
Renders the plot content.
Base class for 2-dimensional plot/chart/graphs with an X and Y axes.
double yMaximum() const
Returns the maximum value of the y axis.
double xMinimum() const
Returns the minimum value of the x axis.
double yMinimum() const
Returns the minimum value of the y axis.
double xMaximum() const
Returns the maximum value of the x axis.
Abstract base class for all geometries.
Interface for classes which can generate elevation profiles.
Abstract base class for terrain providers.
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QgsProfileSourceRegistry * profileSourceRegistry()
Returns registry of available profile source implementations.
Represents a coordinate reference system (CRS).
Abstract base class for curved geometry type.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static Q_INVOKABLE QgsGeometry fromWkt(const QString &wkt)
Creates a new geometry from a WKT string.
static QgsLayoutItemElevationProfile * create(QgsLayout *layout)
Returns a new elevation profile item for the specified layout.
Qgs2DXyPlot * plot()
Returns a reference to the elevation plot object, which can be used to set plot appearance and proper...
QgsLayoutItemElevationProfile(QgsLayout *layout)
Constructor for QgsLayoutItemElevationProfile, with the specified parent layout.
~QgsLayoutItemElevationProfile() override
QgsCurve * profileCurve() const
Returns the cross section profile curve, which represents the line along which the profile should be ...
void refreshDataDefinedProperty(QgsLayoutObject::DataDefinedProperty property=QgsLayoutObject::DataDefinedProperty::AllProperties) override
Refreshes a data defined property for the item by reevaluating the property's value and redrawing the...
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of map layers participating in the elevation profile.
void setSubsectionsSymbol(QgsLineSymbol *symbol)
Sets the symbol used to draw the subsections.
QList< QgsMapLayer * > layers() const
Returns the list of map layers participating in the elevation profile.
void invalidateCache() override
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the desired Coordinate Reference System (crs) for the profile.
bool writePropertiesToElement(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores item state within an XML DOM element.
void draw(QgsLayoutItemRenderContext &context) override
Draws the item's contents using the specified item render context.
QgsLayoutItem::Flags itemFlags() const override
Returns the item's flags, which indicate how the item behaves.
QList< QgsAbstractProfileSource * > sources() const
Returns the list of sources participating in the elevation profile.
void setDistanceUnit(Qgis::DistanceUnit unit)
Sets the unit for the distance axis.
void setTolerance(double tolerance)
Sets the tolerance of the request (in crs() units).
QgsCoordinateReferenceSystem crs() const
Returns the desired Coordinate Reference System for the profile.
void setAtlasDriven(bool enabled)
Sets whether the profile curve will follow the current atlas feature.
double tolerance() const
Returns the tolerance of the request (in crs() units).
QgsLineSymbol * subsectionsSymbol()
Returns the symbol used to draw the subsections.
Qgis::DistanceUnit distanceUnit() const
Returns the units for the distance axis.
bool requiresRasterization() const override
Returns true if the item is drawn in such a way that forces the whole layout to be rasterized when ex...
void setSources(const QList< QgsAbstractProfileSource * > &sources)
Sets the list of sources participating in the elevation profile.
bool containsAdvancedEffects() const override
Returns true if the item contains contents with blend modes or transparency effects which can only be...
void paint(QPainter *painter, const QStyleOptionGraphicsItem *itemStyle, QWidget *pWidget) override
QIcon icon() const override
Returns the item's icon.
void previewRefreshed()
Emitted whenever the item's preview has been refreshed.
void setProfileCurve(QgsCurve *curve)
Sets the cross section profile curve, which represents the line along which the profile should be gen...
bool readPropertiesFromElement(const QDomElement &element, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets item state from a DOM element.
QgsProfileRequest profileRequest() const
Returns the profile request used to generate the elevation profile.
int type() const override
@ LayoutElevationProfile
Elevation profile item.
Contains settings and helpers relating to a render of a QgsLayoutItem.
virtual void drawFrame(QgsRenderContext &context)
Draws the frame around the item.
QColor backgroundColor(bool useDataDefined=true) const
Returns the background color for this item.
virtual void refreshDataDefinedProperty(QgsLayoutObject::DataDefinedProperty property=QgsLayoutObject::DataDefinedProperty::AllProperties)
Refreshes a data defined property for the item by reevaluating the property's value and redrawing the...
QgsLayoutSize sizeWithUnits() const
Returns the item's current size, including units.
QgsLayoutItem(QgsLayout *layout, bool manageZValue=true)
Constructor for QgsLayoutItem, with the specified parent layout.
void refreshItemSize()
Refreshes an item's size by rechecking it against any possible item fixed or minimum sizes.
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
virtual void drawBackground(QgsRenderContext &context)
Draws the background for the item.
bool shouldDrawItem() const
Returns whether the item should be drawn in the current context.
@ FlagOverridesPaint
Item overrides the default layout item painting method.
@ FlagDisableSceneCaching
Item should not have QGraphicsItem caching enabled.
void sizePositionChanged()
Emitted when the item's size or position changes.
bool frameEnabled() const
Returns true if the item includes a frame.
bool hasBackground() const
Returns true if the item has a background.
void refresh() override
Refreshes the item, causing a recalculation of any property overrides and recalculation of its positi...
friend class QgsLayoutItemElevationProfile
void setBackgroundEnabled(bool drawBackground)
Sets whether this item has a background drawn under it or not.
QPainter::CompositionMode blendMode() const
Returns the item's composition blending mode.
void backgroundTaskCountChanged(int count)
Emitted whenever the number of background tasks an item is executing changes.
QgsPropertyCollection mDataDefinedProperties
const QgsLayout * layout() const
Returns the layout the object is attached to.
QPointer< QgsLayout > mLayout
DataDefinedProperty
Data defined properties for different item types.
@ ElevationProfileMaximumDistance
Maximum distance value for elevation profile.
@ MarginBottom
Bottom margin.
@ ElevationProfileElevationMinorInterval
Minor grid line interval for elevation profile elevation axis.
@ ElevationProfileDistanceMinorInterval
Minor grid line interval for elevation profile distance axis.
@ ElevationProfileMinimumDistance
Minimum distance value for elevation profile.
@ ElevationProfileMaximumElevation
Maximum elevation value for elevation profile.
@ ElevationProfileDistanceLabelInterval
Label interval for elevation profile distance axis.
@ ElevationProfileTolerance
Tolerance distance for elevation profiles.
@ ElevationProfileMinimumElevation
Minimum elevation value for elevation profile.
@ MarginRight
Right margin.
@ ElevationProfileElevationLabelInterval
Label interval for elevation profile elevation axis.
@ ElevationProfileDistanceMajorInterval
Major grid line interval for elevation profile distance axis.
@ ElevationProfileElevationMajorInterval
Major grid line interval for elevation profile elevation axis.
@ AllProperties
All properties for item.
static QgsRenderContext createRenderContextForLayout(QgsLayout *layout, QPainter *painter, double dpi=-1)
Creates a render context suitable for the specified layout and painter destination.
static Q_DECL_DEPRECATED double scaleFactorFromItemStyle(const QStyleOptionGraphicsItem *style)
Extracts the scale factor from an item style.
void refreshed()
Emitted when the layout has been refreshed and items should also be refreshed and updated.
A line symbol type, for rendering LineString and MultiLineString geometries.
Base class for all map layer types.
Perform transforms between map coordinates and device coordinates.
Defines the four margins of a rectangle.
void setBottom(double bottom)
Sets the bottom margin to bottom.
void setLeft(double left)
Sets the left margin to left.
void setRight(double right)
Sets the right margin to right.
void setTop(double top)
Sets the top margin to top.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
Adds a message to the log instance (and creates it if necessary).
Encapsulates one or more plot series.
Contains information about the context of a plot rendering operation.
Generates and renders elevation profile plots.
void setSubsectionsSymbol(QgsLineSymbol *symbol)
Sets the symbol used to draw the subsections.
void cancelGenerationWithoutBlocking()
Triggers cancellation of the generation job without blocking.
void generateSynchronously()
Generate the profile results synchronously in this thread.
void generationFinished()
Emitted when the profile generation is finished (or canceled).
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
QgsProfileRequest & setExpressionContext(const QgsExpressionContext &context)
Sets the expression context used to evaluate expressions.
QgsProfileRequest & setTransformContext(const QgsCoordinateTransformContext &context)
Sets the transform context, for use when transforming coordinates from a source to the request's crs(...
QgsProfileRequest & setTerrainProvider(QgsAbstractTerrainProvider *provider)
Sets the terrain provider.
QgsProfileRequest & setTolerance(double tolerance)
Sets the tolerance of the request (in crs() units).
QgsProfileRequest & setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the desired Coordinate Reference System (crs) for the profile.
void profileSourceUnregistered(const QString &sourceId)
Signal emitted once a profile source is unregistered.
void profileSourceRegistered(const QString &sourceId, const QString &sourceName)
Signal emitted once a profile source is registered.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
A container for the context for various read/write operations on objects.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
void setMapToPixel(const QgsMapToPixel &mtp)
Sets the context's map to pixel transform, which transforms between map coordinates and device coordi...
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
Scoped object for saving and restoring a QPainter object's state.
static std::unique_ptr< QgsSymbol > loadSymbol(const QDomElement &element, const QgsReadWriteContext &context)
Attempts to load a symbol from a DOM element.
static QDomElement saveSymbol(const QString &symbolName, const QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
static Q_INVOKABLE double fromUnitToUnitFactor(Qgis::DistanceUnit fromUnit, Qgis::DistanceUnit toUnit)
Returns the conversion factor between the specified distance units.
static Q_INVOKABLE QString toAbbreviatedString(Qgis::DistanceUnit unit)
Returns a translated abbreviation representing a distance unit.
Represents a vector layer which manages a vector based dataset.
T qgsEnumKeyToValue(const QString &key, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given key of an enum.
QString qgsEnumValueToKey(const T &value, bool *returnOk=nullptr)
Returns the value for the given key of an enum.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
T qgsgeometry_cast(QgsAbstractGeometry *geom)
_LayerRef< QgsMapLayer > QgsMapLayerRef
TYPE * resolveWeakly(const QgsProject *project, MatchType matchType=MatchType::All)
Resolves the map layer by attempting to find a matching layer in a project using a weak match.
TYPE * get() const
Returns a pointer to the layer, or nullptr if the reference has not yet been matched to a layer.
bool readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads the layer's properties from an XML element.