42#include <QImageReader>
45#include "moc_qgscreateannotationitemmaptool_impl.cpp"
47using namespace Qt::StringLiterals;
58 mToolName = tr(
"Annotation tool" );
106 setUseSnappingIndicator(
true );
113 if ( event->button() != Qt::LeftButton )
118 auto createdItem = std::make_unique<QgsAnnotationPointTextItem>( tr(
"Text" ), layerPoint );
119 createdItem->setAlignment( Qt::AlignLeft );
123 createdItem->setFormat( format );
125 createdItem->setUseSymbologyReferenceScale(
true );
126 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
127 mHandler->pushCreatedItem( createdItem.release() );
153 if ( event->button() != Qt::LeftButton )
157 auto createdItem = std::make_unique<QgsAnnotationMarkerItem>( QgsPoint( layerPoint ) );
162 createdItem->setSymbol( markerSymbol.release() );
165 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
167 mHandler->pushCreatedItem( createdItem.release() );
184void QgsCreateLineItemMapTool::lineCaptured(
const QgsCurve *line )
193 auto createdItem = std::make_unique<QgsAnnotationLineItem>( qgis::down_cast<QgsCurve *>( geometry.release() ) );
198 createdItem->setSymbol( lineSymbol.release() );
201 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
203 mHandler->pushCreatedItem( createdItem.release() );
217void QgsCreatePolygonItemMapTool::polygonCaptured(
const QgsCurvePolygon *polygon )
225 auto newPolygon = std::make_unique<QgsCurvePolygon>();
226 newPolygon->setExteriorRing( qgis::down_cast<QgsCurve *>( geometry.release() ) );
227 auto createdItem = std::make_unique<QgsAnnotationPolygonItem>( newPolygon.release() );
232 createdItem->setSymbol( fillSymbol.release() );
235 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
237 mHandler->pushCreatedItem( createdItem.release() );
252 setUseSnappingIndicator(
true );
257 if ( event->button() == Qt::RightButton && mRubberBand )
264 if ( event->button() != Qt::LeftButton )
269 mFirstPoint =
event->snapPoint();
270 mRect.setRect( mFirstPoint.x(), mFirstPoint.y(), mFirstPoint.x(), mFirstPoint.y() );
277 color.setAlphaF( color.alphaF() * alphaScale );
278 mRubberBand->setLineStyle( Qt::DotLine );
279 mRubberBand->setStrokeColor( color );
282 mRubberBand->setFillColor( fillColor );
288 QStringList formatsFilter;
289 formatsFilter.append( u
"*.svg"_s );
290 const QByteArrayList supportedFormats = QImageReader::supportedImageFormats();
291 for (
const auto &format : supportedFormats )
293 formatsFilter.append( QString( u
"*.%1"_s ).arg( QString( format ) ) );
295 const QString dialogFilter = u
"%1 (%2);;%3 (*.*)"_s.arg( tr(
"Images" ), formatsFilter.join(
' '_L1 ), tr(
"All files" ) );
297 const QString imagePath = QFileDialog::getOpenFileName(
nullptr, tr(
"Add Picture Annotation" ), initialDir.isEmpty() ? QDir::homePath() : initialDir, dialogFilter );
299 if ( imagePath.isEmpty() )
311 const double initialWidthPixels = std::abs( devicePoint1.
x() - devicePoint2.
x() );
312 const double initialHeightPixels = std::abs( devicePoint1.
y() - devicePoint2.
y() );
314 const QFileInfo pathInfo( imagePath );
318 if ( pathInfo.suffix().compare(
"svg"_L1, Qt::CaseInsensitive ) == 0 )
331 auto createdItem = std::make_unique<QgsAnnotationPictureItem>( format, imagePath, QgsRectangle( point1, point2 ) );
332 if ( size.isValid() )
334 const double pixelsToMm =
mCanvas->mapSettings().outputDpi() / 25.4;
335 if ( size.width() / size.height() > initialWidthPixels / initialHeightPixels )
337 createdItem->setFixedSize( QSizeF( initialWidthPixels / pixelsToMm, size.height() / size.width() * initialWidthPixels / pixelsToMm ) );
341 createdItem->setFixedSize( QSizeF( size.width() / size.height() * initialHeightPixels / pixelsToMm, initialHeightPixels / pixelsToMm ) );
346 mHandler->pushCreatedItem( createdItem.release() );
355 const QgsPointXY mapPoint =
event->snapPoint();
356 mRect.setBottomRight( mapPoint.
toQPointF() );
359 mRubberBand->addPoint( mRect.bottomLeft(),
false );
360 mRubberBand->addPoint( mRect.bottomRight(),
false );
361 mRubberBand->addPoint( mRect.topRight(),
false );
362 mRubberBand->addPoint( mRect.topLeft(),
true );
367 if ( event->key() == Qt::Key_Escape )
397 setUseSnappingIndicator(
true );
402 if ( event->button() == Qt::RightButton && mRubberBand )
409 if ( event->button() != Qt::LeftButton )
414 mFirstPoint =
event->snapPoint();
415 mRect.setRect( mFirstPoint.x(), mFirstPoint.y(), mFirstPoint.x(), mFirstPoint.y() );
422 color.setAlphaF( color.alphaF() * alphaScale );
423 mRubberBand->setLineStyle( Qt::DotLine );
424 mRubberBand->setStrokeColor( color );
427 mRubberBand->setFillColor( fillColor );
438 auto createdItem = std::make_unique<QgsAnnotationRectangleTextItem>( tr(
"Text" ), QgsRectangle( point1, point2 ) );
443 createdItem->setFormat( format );
446 createdItem->setUseSymbologyReferenceScale(
true );
447 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
448 mHandler->pushCreatedItem( createdItem.release() );
457 const QgsPointXY mapPoint =
event->snapPoint();
458 mRect.setBottomRight( mapPoint.
toQPointF() );
461 mRubberBand->addPoint( mRect.bottomLeft(),
false );
462 mRubberBand->addPoint( mRect.bottomRight(),
false );
463 mRubberBand->addPoint( mRect.topRight(),
false );
464 mRubberBand->addPoint( mRect.topLeft(),
true );
469 if ( event->key() == Qt::Key_Escape )
501void QgsCreateLineTextItemMapTool::lineCaptured(
const QgsCurve *line )
510 auto createdItem = std::make_unique<QgsAnnotationLineTextItem>( tr(
"Text" ), qgis::down_cast<QgsCurve *>( geometry.release() ) );
519 createdItem->setFormat( format );
522 createdItem->setUseSymbologyReferenceScale(
true );
523 createdItem->setSymbologyReferenceScale(
canvas()->scale() );
524 mHandler->pushCreatedItem( createdItem.release() );
CaptureTechnique
Capture technique.
@ NurbsCurve
Digitizes NURBS curves with control points.
@ 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)