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(); } );
96 if ( !pMapCanvas->
layers(
true ).contains( pLayer ) )
102 if ( mWebView && mWebView->underMouse() )
108 QString tipText, lastTipText, tipHtml;
117 QColor transparentColor = mWebView->palette().color( QPalette::Window );
118 transparentColor.setAlpha( 0 );
119 mWebView->setStyleSheet( QString(
"background:%1;" ).arg( transparentColor.name( QColor::HexArgb ) ) );
123 mWebView->page()->setLinkDelegationPolicy( QWebPage::DelegateAllLinks );
124 mWebView->setContextMenuPolicy( Qt::NoContextMenu );
125 connect( mWebView, &QWebView::linkClicked,
this, &QgsMapTip::onLinkClicked );
126 connect( mWebView, &QWebView::loadFinished,
this, [=](
bool ) { resizeAndMoveToolTip(); } );
129 mWebView->page()->settings()->setAttribute( QWebSettings::DeveloperExtrasEnabled,
true );
130 mWebView->page()->settings()->setAttribute( QWebSettings::JavascriptEnabled,
true );
131 mWebView->page()->settings()->setAttribute( QWebSettings::LocalStorageEnabled,
true );
134 mWebView->page()->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff );
135 mWebView->page()->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff );
139 switch ( pLayer->
type() )
142 tipText = fetchFeature( pLayer, mapPosition, pMapCanvas );
145 tipText = fetchRaster( pLayer, mapPosition, pMapCanvas );
151 mMapTipVisible = !tipText.isEmpty();
152 if ( !mMapTipVisible )
158 if ( tipText == lastTipText )
164 int cursorOffset = 0;
171 cursorOffset =
static_cast<int>( std::ceil( scale * 32 ) );
175 const int MAX_WIDTH = std::max( pixelPosition.x(), pMapCanvas->width() - pixelPosition.x() ) - cursorOffset - 5;
176 const int MAX_HEIGHT = std::max( pixelPosition.y(), pMapCanvas->height() - pixelPosition.y() ) - 5;
178 mWebView->setMaximumSize( MAX_WIDTH, MAX_HEIGHT );
180 tipHtml = QgsMapTip::htmlText( tipText, MAX_WIDTH );
184 mPosition = pixelPosition;
185 mMapCanvas = pMapCanvas;
186 mWebView->setHtml( tipHtml );
187 lastTipText = tipText;
190 resizeAndMoveToolTip();
194void QgsMapTip::resizeAndMoveToolTip()
198 const QWebElement container = mWebView->page()->mainFrame()->findFirstElement(
199 QStringLiteral(
"#QgsWebViewContainer" )
201 const int width = container.geometry().width();
202 const int height = container.geometry().height();
203 mWebView->resize( width, height );
205 mWebView->adjustSize();
208 int cursorOffset = 0;
216 cursorOffset =
static_cast<int>( std::ceil( scale * 32 ) );
221 mWebView->move( mPosition );
227 int availableWidthRight = mMapCanvas->width() - mPosition.x() - cursorOffset;
228 int availableWidthLeft = mPosition.x() - cursorOffset;
229 int availableHeightBottom = mMapCanvas->height() - mPosition.y();
230 int availableHeightTop = mPosition.y();
233 if ( mWebView->width() < availableWidthRight || availableWidthRight > availableWidthLeft )
235 x = mPosition.x() + cursorOffset;
240 x = mPosition.x() - mWebView->width() - cursorOffset;
244 if ( mWebView->height() < availableHeightBottom || availableHeightBottom > availableHeightTop )
251 y = mPosition.y() - mWebView->height();
253 mWebView->move( x, y );
259 if ( !mMapTipVisible )
265 if ( mDelayedClearTimer.isActive() || mWebView->underMouse() )
272 mDelayedClearTimer.start( msDelay );
275 mWebView->setHtml( QString() );
279 mMapTipVisible =
false;
310 if ( canvasFilter == QLatin1String(
"FALSE" ) )
323 if ( !canvasFilter.isEmpty() )
328 if ( mapTip.isEmpty() )
330 exp.prepare( &context );
339 std::unique_ptr<QgsFeatureRenderer> renderer;
343 renderer->startRender( renderCtx, vlayer->
fields() );
346 const QString filterExpression = renderer->filter( vlayer->
fields() );
347 if ( !filterExpression.isEmpty() )
359 context.setFeature( feature );
362 if ( filter && renderer && !renderer->willRenderFeature( feature, renderCtx ) )
367 if ( !mapTip.isEmpty() )
373 tipString = exp.evaluate( &context ).toString();
376 if ( !tipString.isEmpty() || timer.elapsed() >= 1000 )
384 renderer->stopRender( renderCtx );
421QString QgsMapTip::htmlText(
const QString &text,
int maxWidth )
424 const QFont defaultFont = qApp->font();
425 const int fontSize = defaultFont.pointSize();
426 const QString fontFamily = defaultFont.family();
427 const QString backgroundColor = QgsApplication::palette().base().color().name();
428 const QString strokeColor = QgsApplication::palette().shadow().color().name();
429 const QString textColor = QgsApplication::palette().toolTipText().color().name();
430 return sMapTipTemplate.arg( fontSize ).arg( fontFamily ).arg( textColor ).arg( maxWidth == -1 ?
"" : QString::number( maxWidth ) ).arg( backgroundColor ).arg( strokeColor ).arg( text );
434void QgsMapTip::onLinkClicked(
const QUrl &url )
436 QDesktopServices::openUrl( url );
444 if ( !mapCanvas || !vlayer || !vlayer->
isSpatial() )
448 if ( mapTemplate.isEmpty() && displayExpression.isEmpty() )
470 if ( mapTemplate.isEmpty() )
474 tipText = exp.
evaluate( &context ).toString();
482 return QgsMapTip::htmlText( tipText, mapCanvas->width() / 2 );
488 if ( !mapCanvas || !rlayer || mapTemplate.isEmpty() )
505 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.
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)