42#include <QImageReader>
44#include "moc_qgscreateannotationitemmaptool_impl.cpp"
55 mToolName = tr(
"Annotation tool" );
102 setUseSnappingIndicator(
true );
109 if ( event->button() != Qt::LeftButton )
114 auto createdItem = std::make_unique<QgsAnnotationPointTextItem>( tr(
"Text" ), layerPoint );
115 createdItem->setAlignment( Qt::AlignLeft );
119 createdItem->setFormat( format );
121 createdItem->setUseSymbologyReferenceScale(
true );
122 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
123 mHandler->pushCreatedItem( createdItem.release() );
149 if ( event->button() != Qt::LeftButton )
153 auto createdItem = std::make_unique<QgsAnnotationMarkerItem>( QgsPoint( layerPoint ) );
158 createdItem->setSymbol( markerSymbol.release() );
161 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
163 mHandler->pushCreatedItem( createdItem.release() );
180void QgsCreateLineItemMapTool::lineCaptured(
const QgsCurve *line )
189 auto createdItem = std::make_unique<QgsAnnotationLineItem>( qgis::down_cast<QgsCurve *>( geometry.release() ) );
194 createdItem->setSymbol( lineSymbol.release() );
197 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
199 mHandler->pushCreatedItem( createdItem.release() );
213void QgsCreatePolygonItemMapTool::polygonCaptured(
const QgsCurvePolygon *polygon )
221 auto newPolygon = std::make_unique<QgsCurvePolygon>();
222 newPolygon->setExteriorRing( qgis::down_cast<QgsCurve *>( geometry.release() ) );
223 auto createdItem = std::make_unique<QgsAnnotationPolygonItem>( newPolygon.release() );
228 createdItem->setSymbol( fillSymbol.release() );
231 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
233 mHandler->pushCreatedItem( createdItem.release() );
248 setUseSnappingIndicator(
true );
253 if ( event->button() == Qt::RightButton && mRubberBand )
260 if ( event->button() != Qt::LeftButton )
265 mFirstPoint =
event->snapPoint();
266 mRect.setRect( mFirstPoint.x(), mFirstPoint.y(), mFirstPoint.x(), mFirstPoint.y() );
273 color.setAlphaF( color.alphaF() * alphaScale );
274 mRubberBand->setLineStyle( Qt::DotLine );
275 mRubberBand->setStrokeColor( color );
278 mRubberBand->setFillColor( fillColor );
284 QStringList formatsFilter;
285 formatsFilter.append( QStringLiteral(
"*.svg" ) );
286 const QByteArrayList supportedFormats = QImageReader::supportedImageFormats();
287 for (
const auto &format : supportedFormats )
289 formatsFilter.append( QString( QStringLiteral(
"*.%1" ) ).arg( QString( format ) ) );
291 const QString dialogFilter = QStringLiteral(
"%1 (%2);;%3 (*.*)" ).arg( tr(
"Images" ), formatsFilter.join( QLatin1Char(
' ' ) ), tr(
"All files" ) );
293 const QString imagePath = QFileDialog::getOpenFileName(
nullptr, tr(
"Add Picture Annotation" ), initialDir.isEmpty() ? QDir::homePath() : initialDir, dialogFilter );
295 if ( imagePath.isEmpty() )
307 const double initialWidthPixels = std::abs( devicePoint1.
x() - devicePoint2.
x() );
308 const double initialHeightPixels = std::abs( devicePoint1.
y() - devicePoint2.
y() );
310 const QFileInfo pathInfo( imagePath );
314 if ( pathInfo.suffix().compare( QLatin1String(
"svg" ), Qt::CaseInsensitive ) == 0 )
327 auto createdItem = std::make_unique<QgsAnnotationPictureItem>( format, imagePath, QgsRectangle( point1, point2 ) );
328 if ( size.isValid() )
330 const double pixelsToMm =
mCanvas->mapSettings().outputDpi() / 25.4;
331 if ( size.width() / size.height() > initialWidthPixels / initialHeightPixels )
333 createdItem->setFixedSize( QSizeF( initialWidthPixels / pixelsToMm, size.height() / size.width() * initialWidthPixels / pixelsToMm ) );
337 createdItem->setFixedSize( QSizeF( size.width() / size.height() * initialHeightPixels / pixelsToMm, initialHeightPixels / pixelsToMm ) );
342 mHandler->pushCreatedItem( createdItem.release() );
351 const QgsPointXY mapPoint =
event->snapPoint();
352 mRect.setBottomRight( mapPoint.
toQPointF() );
355 mRubberBand->addPoint( mRect.bottomLeft(),
false );
356 mRubberBand->addPoint( mRect.bottomRight(),
false );
357 mRubberBand->addPoint( mRect.topRight(),
false );
358 mRubberBand->addPoint( mRect.topLeft(),
true );
363 if ( event->key() == Qt::Key_Escape )
393 setUseSnappingIndicator(
true );
398 if ( event->button() == Qt::RightButton && mRubberBand )
405 if ( event->button() != Qt::LeftButton )
410 mFirstPoint =
event->snapPoint();
411 mRect.setRect( mFirstPoint.x(), mFirstPoint.y(), mFirstPoint.x(), mFirstPoint.y() );
418 color.setAlphaF( color.alphaF() * alphaScale );
419 mRubberBand->setLineStyle( Qt::DotLine );
420 mRubberBand->setStrokeColor( color );
423 mRubberBand->setFillColor( fillColor );
434 auto createdItem = std::make_unique<QgsAnnotationRectangleTextItem>( tr(
"Text" ), QgsRectangle( point1, point2 ) );
439 createdItem->setFormat( format );
442 createdItem->setUseSymbologyReferenceScale(
true );
443 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
444 mHandler->pushCreatedItem( createdItem.release() );
453 const QgsPointXY mapPoint =
event->snapPoint();
454 mRect.setBottomRight( mapPoint.
toQPointF() );
457 mRubberBand->addPoint( mRect.bottomLeft(),
false );
458 mRubberBand->addPoint( mRect.bottomRight(),
false );
459 mRubberBand->addPoint( mRect.topRight(),
false );
460 mRubberBand->addPoint( mRect.topLeft(),
true );
465 if ( event->key() == Qt::Key_Escape )
497void QgsCreateLineTextItemMapTool::lineCaptured(
const QgsCurve *line )
506 auto createdItem = std::make_unique<QgsAnnotationLineTextItem>( tr(
"Text" ), qgis::down_cast<QgsCurve *>( geometry.release() ) );
515 createdItem->setFormat( format );
518 createdItem->setUseSymbologyReferenceScale(
true );
519 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
520 mHandler->pushCreatedItem( createdItem.release() );
CaptureTechnique
Capture technique.
@ StraightSegments
Default capture mode - capture occurs with straight line segments.
@ CircularString
Capture in circular strings.
@ Streaming
Streaming points digitizing mode (points are automatically added as the mouse cursor moves).
PictureFormat
Picture formats.
@ Unknown
Invalid or unknown image type.
@ Millimeters
Millimeters.
virtual const QgsAbstractGeometry * simplifiedTypeRef() const
Returns a reference to the simplest lossless representation of this geometry, e.g.
virtual bool isEmpty() const
Returns true if the geometry is empty.
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
static QgsRecentStyleHandler * recentStyleHandler()
Returns the handler for recently used style items.
static QgsImageCache * imageCache()
Returns the application's image cache, used for caching resampled versions of raster images.
static QgsSvgCache * svgCache()
Returns the application's SVG cache, used for caching SVG images and handling parameter replacement w...
QgsCreateLineTextItemMapTool(QgsMapCanvas *canvas, QgsAdvancedDigitizingDockWidget *cadDockWidget)
Constructor.
~QgsCreatePointTextItemMapTool() override
QgsMapTool * mapTool() override
Returns a reference to the associated map tool.
void cadCanvasPressEvent(QgsMapMouseEvent *event) override
Override this method when subclassing this class.
QgsCreatePointTextItemMapTool(QgsMapCanvas *canvas, QgsAdvancedDigitizingDockWidget *cadDockWidget)
Constructor.
QgsCreateAnnotationItemMapToolHandler * handler() const override
Returns the handler object for the map tool.
QgsCreateRectangleTextItemMapTool(QgsMapCanvas *canvas, QgsAdvancedDigitizingDockWidget *cadDockWidget)
Constructor.
QgsMapTool * mapTool() override
Returns a reference to the associated map tool.
void cadCanvasMoveEvent(QgsMapMouseEvent *event) override
Override this method when subclassing this class.
void cadCanvasPressEvent(QgsMapMouseEvent *event) override
Override this method when subclassing this class.
void keyPressEvent(QKeyEvent *event) override
Key event for overriding. Default implementation does nothing.
QgsCreateAnnotationItemMapToolHandler * handler() const override
Returns the handler object for the map tool.
Curve polygon geometry type.
const QgsCurve * exteriorRing() const
Returns the curve polygon's exterior ring.
bool isEmpty() const override
Returns true if the geometry is empty.
Abstract base class for curved geometry type.
QSize originalSize(const QString &path, bool blocking=false) const
Returns the original size (in pixels) of the image at the specified path.
Map canvas is a class for displaying all GIS data types on a canvas.
Base class for all map layer types.
A mouse event which is the result of a user interaction with a QgsMapCanvas.
QgsPointXY mapPoint() const
mapPoint returns the point in coordinates
QgsPointXY snapPoint()
snapPoint will snap the points using the map canvas snapping utils configuration
QPointF toQPointF() const
Converts a point to a QPointF.
static QgsProject * instance()
Returns the QgsProject singleton instance.
QgsSymbol * recentSymbol(const QString &identifier) const
Returns a copy of the recently used symbol with the specified identifier, or nullptr if no symbol wit...
T value(const QString &dynamicKeyPart=QString()) const
Returns settings value.
static const QgsSettingsEntryDouble * settingsDigitizingLineColorAlphaScale
Settings entry digitizing line color alpha scale.
static QgsTextFormat defaultTextFormatForProject(QgsProject *project, QgsStyle::TextFormatContext context=QgsStyle::TextFormatContext::Labeling)
Returns the default text format to use for new text based objects for the specified project,...
@ Labeling
Text format used in labeling.
QSizeF svgViewboxSize(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 >())
Calculates the viewbox size of a (possibly cached) SVG file.
static QgsSymbol * defaultSymbol(Qgis::GeometryType geomType)
Returns a new default symbol for the specified geometry type.
void setAllowHtmlFormatting(bool allow)
Sets whether text should be treated as a HTML document and HTML tags should be used for formatting th...
#define BUILTIN_UNREACHABLE
T qgsgeometry_cast(QgsAbstractGeometry *geom)