38#include <QDesktopServices>
45#include "moc_qgsmaptip.cpp"
48const QString QgsMapTip::sMapTipTemplate =
"<html>\n"
53 " font: %1pt \"%2\";\n"
57 " #QgsWebViewContainer {\n"
58 " background-color: %5;\n"
59 " border: 1px solid %6;\n"
60 " display: inline-block;\n"
63 " #QgsWebViewContainerInner {\n"
69 " <div id='QgsWebViewContainer'>\n"
70 " <div id='QgsWebViewContainerInner'>\n"
81 mMapTipVisible =
false;
83 mDelayedClearTimer.setSingleShot(
true );
84 connect( &mDelayedClearTimer, &QTimer::timeout,
this, [ = ]() {this->
clear();} );
89 const QPoint &pixelPosition,
99 if ( !pMapCanvas->
layers(
true ).contains( pLayer ) )
105 if ( mWebView && mWebView->underMouse() )
111 QString tipText, lastTipText, tipHtml;
120 QColor transparentColor = mWebView->palette().color( QPalette::Window );
121 transparentColor.setAlpha( 0 );
122 mWebView->setStyleSheet( QString(
"background:%1;" ).arg( transparentColor.name( QColor::HexArgb ) ) );
126 mWebView->page()->setLinkDelegationPolicy( QWebPage::DelegateAllLinks );
127 mWebView->setContextMenuPolicy( Qt::NoContextMenu );
128 connect( mWebView, &QWebView::linkClicked,
this, &QgsMapTip::onLinkClicked );
129 connect( mWebView, &QWebView::loadFinished,
this, [ = ](
bool ) { resizeAndMoveToolTip(); } );
132 mWebView->page()->settings()->setAttribute( QWebSettings::DeveloperExtrasEnabled,
true );
133 mWebView->page()->settings()->setAttribute( QWebSettings::JavascriptEnabled,
true );
134 mWebView->page()->settings()->setAttribute( QWebSettings::LocalStorageEnabled,
true );
137 mWebView->page()->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff );
138 mWebView->page()->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff );
143 switch ( pLayer->
type() )
146 tipText = fetchFeature( pLayer, mapPosition, pMapCanvas );
149 tipText = fetchRaster( pLayer, mapPosition, pMapCanvas );
155 mMapTipVisible = !tipText.isEmpty();
156 if ( !mMapTipVisible )
162 if ( tipText == lastTipText )
168 int cursorOffset = 0;
175 cursorOffset =
static_cast< int >( std::ceil( scale * 32 ) );
179 const int MAX_WIDTH = std::max( pixelPosition.x(), pMapCanvas->width() - pixelPosition.x() ) - cursorOffset - 5;
180 const int MAX_HEIGHT = std::max( pixelPosition.y(), pMapCanvas->height() - pixelPosition.y() ) - 5;
182 mWebView->setMaximumSize( MAX_WIDTH, MAX_HEIGHT );
184 tipHtml = QgsMapTip::htmlText( tipText, MAX_WIDTH );
188 mPosition = pixelPosition;
189 mMapCanvas = pMapCanvas;
190 mWebView->setHtml( tipHtml );
191 lastTipText = tipText;
194 resizeAndMoveToolTip();
199void QgsMapTip::resizeAndMoveToolTip()
203 const QWebElement container = mWebView->page()->mainFrame()->findFirstElement(
204 QStringLiteral(
"#QgsWebViewContainer" ) );
205 const int width = container.geometry().width();
206 const int height = container.geometry().height();
207 mWebView->resize( width, height );
209 mWebView->adjustSize();
212 int cursorOffset = 0;
220 cursorOffset =
static_cast< int >( std::ceil( scale * 32 ) );
225 mWebView->move( mPosition );
231 int availableWidthRight = mMapCanvas->width() - mPosition.x() - cursorOffset;
232 int availableWidthLeft = mPosition.x() - cursorOffset;
233 int availableHeightBottom = mMapCanvas->height() - mPosition.y();
234 int availableHeightTop = mPosition.y();
237 if ( mWebView->width() < availableWidthRight || availableWidthRight > availableWidthLeft )
239 x = mPosition.x() + cursorOffset;
244 x = mPosition.x() - mWebView->width() - cursorOffset;
248 if ( mWebView->height() < availableHeightBottom || availableHeightBottom > availableHeightTop )
255 y = mPosition.y() - mWebView->height();
257 mWebView->move( x, y );
263 if ( !mMapTipVisible )
269 if ( mDelayedClearTimer.isActive() || mWebView->underMouse() )
276 mDelayedClearTimer.start( msDelay );
279 mWebView->setHtml( QString() );
283 mMapTipVisible =
false;
315 if ( canvasFilter == QLatin1String(
"FALSE" ) )
328 if ( !canvasFilter.isEmpty() )
333 if ( mapTip.isEmpty() )
335 exp.prepare( &context );
344 std::unique_ptr< QgsFeatureRenderer > renderer;
348 renderer->startRender( renderCtx, vlayer->
fields() );
351 const QString filterExpression = renderer->filter( vlayer->
fields() );
352 if ( ! filterExpression.isEmpty() )
364 context.setFeature( feature );
367 if ( filter && renderer && !renderer->willRenderFeature( feature, renderCtx ) )
372 if ( !mapTip.isEmpty() )
378 tipString = exp.evaluate( &context ).toString();
381 if ( !tipString.isEmpty() || timer.elapsed() >= 1000 )
389 renderer->stopRender( renderCtx );
427QString QgsMapTip::htmlText(
const QString &text,
int maxWidth )
431 const QFont defaultFont = qApp->font();
432 const int fontSize = defaultFont.pointSize();
433 const QString fontFamily = defaultFont.family();
434 const QString backgroundColor = QgsApplication::palette().base().color().name();
435 const QString strokeColor = QgsApplication::palette().shadow().color().name();
436 const QString textColor = QgsApplication::palette().toolTipText().color().name();
437 return sMapTipTemplate.arg( fontSize ).arg( fontFamily ).arg( textColor ).arg( maxWidth == -1 ?
"" : QString::number( maxWidth ) ).arg( backgroundColor ).arg( strokeColor ).arg( text );
441void QgsMapTip::onLinkClicked(
const QUrl &url )
443 QDesktopServices::openUrl( url );
451 if ( !mapCanvas || !vlayer || !vlayer->
isSpatial() )
455 if ( mapTemplate.isEmpty() && displayExpression.isEmpty() )
477 if ( mapTemplate.isEmpty() )
481 tipText = exp.
evaluate( &context ).toString();
489 return QgsMapTip::htmlText( tipText, mapCanvas->width() / 2 );
496 if ( !mapCanvas || !rlayer || mapTemplate.isEmpty() )
513 return QgsMapTip::htmlText( tipText, mapCanvas->width() / 2 );
@ ExactIntersect
Use exact geometry intersection (slower) instead of bounding boxes.
static const double UI_SCALE_FACTOR
UI scaling factor.
static QgsApplication * instance()
Returns the singleton instance of the QgsApplication.
static QgsExpressionContextScope * mapLayerPositionScope(const QgsPointXY &position)
Sets the expression context variables which are available for expressions triggered by moving the mou...
static QgsExpressionContextScope * mapSettingsScope(const QgsMapSettings &mapSettings)
Creates a new scope which contains variables and functions relating to a QgsMapSettings object.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Class for parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
static QString replaceExpressionText(const QString &action, const QgsExpressionContext *context, const QgsDistanceArea *distanceArea=nullptr)
This function replaces each expression between [% and %] in the string with the result of its evaluat...
QVariant evaluate()
Evaluate the feature and return the result.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
@ Filter
Features may be filtered, i.e. some features may not be rendered (categorized, rule based ....
virtual QgsFeatureRenderer * clone() const =0
Create a deep copy of this renderer.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & combineFilterExpression(const QString &expression)
Modifies the existing filter expression to add an additional expression filter.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
QgsFeatureRequest & setExpressionContext(const QgsExpressionContext &context)
Sets the expression context used to evaluate filter expressions.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
static QString filterForLayer(QgsMapCanvas *canvas, QgsVectorLayer *layer)
Constructs a filter to use for selecting features from the given layer, in order to apply filters whi...
Map canvas is a class for displaying all GIS data types on a canvas.
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
const QgsDateTimeRange & temporalRange() const
Returns map canvas datetime range.
QList< QgsMapLayer * > layers(bool expandGroupLayers=false) const
Returns the list of layers shown within the map canvas.
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
virtual bool isVisibleInTemporalRange(const QgsDateTimeRange &range) const
Returns true if the layer should be visible and rendered for the specified time range.
Base class for all map layer types.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
virtual QgsRectangle extent() const
Returns the extent of the layer.
virtual QgsMapLayerTemporalProperties * temporalProperties()
Returns the layer's temporal properties.
double scale() const
Returns the calculated map scale.
QgsPointXY mapToLayerCoordinates(const QgsMapLayer *layer, QgsPointXY point) const
transform point coordinates from output CRS to layer's CRS
void showMapTip(QgsMapLayer *thepLayer, QgsPointXY &mapPosition, const QPoint &pixelPosition, QgsMapCanvas *mpMapCanvas)
Show a maptip at a given point on the map canvas.
static QString rasterMapTipPreviewText(QgsMapLayer *layer, QgsMapCanvas *mapCanvas, const QString &mapTemplate)
Returns the html that would be displayed in a maptip for a given layer.
static QString vectorMapTipPreviewText(QgsMapLayer *layer, QgsMapCanvas *mapCanvas, const QString &mapTemplate, const QString &displayExpression)
Returns the html that would be displayed in a maptip for a given layer.
QgsMapTip()
Default constructor.
void clear(QgsMapCanvas *mpMapCanvas=nullptr, int msDelay=0)
Clear the current maptip if it exists.
A class to represent a 2D point.
Represents a raster layer.
A rectangle specified with double values.
bool contains(const QgsRectangle &rect) const
Returns true when rectangle contains other rectangle.
void setYMinimum(double y)
Set the minimum y value.
void setXMinimum(double x)
Set the minimum x value.
void setYMaximum(double y)
Set the maximum y value.
QgsPointXY center() const
Returns the center point of the rectangle.
void setXMaximum(double x)
Set the maximum x value.
Contains information about the context of a rendering operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
static QgsRenderContext fromMapSettings(const QgsMapSettings &mapSettings)
create initialized QgsRenderContext instance from given QgsMapSettings
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
This class is a composition of two QSettings instances:
bool isTemporal() const
Returns true if the object's temporal range is enabled, and the object will be filtered when renderin...
Represents a vector layer which manages a vector based data sets.
long long featureCount(const QString &legendKey) const
Number of features rendered with specified legend key.
bool isSpatial() const FINAL
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
QString displayExpression
The QgsWebView class is a collection of stubs to mimic the API of QWebView on systems where the real ...
#define QgsDebugMsgLevel(str, level)