QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgslayoutviewtoolmoveitemcontent.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutviewtoolmoveitemcontent.cpp
3 ------------------------------------
4 Date : October 2017
5 Copyright : (C) 2017 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
17
18#include "qgslayout.h"
20#include "qgslayoutundostack.h"
21#include "qgslayoutview.h"
23#include "qgssettings.h"
24
25#include "moc_qgslayoutviewtoolmoveitemcontent.cpp"
26
32
34{
35 if ( event->button() != Qt::LeftButton )
36 {
37 event->ignore();
38 return;
39 }
40
41 const QList<QGraphicsItem *> itemsAtCursorPos = view()->items( event->pos() );
42 if ( itemsAtCursorPos.isEmpty() )
43 return;
44
45 //find highest non-locked QgsLayoutItem at clicked position
46 //(other graphics items may be higher, e.g., selection handles)
47 for ( QGraphicsItem *graphicsItem : itemsAtCursorPos )
48 {
49 QgsLayoutItem *item = dynamic_cast<QgsLayoutItem *>( graphicsItem );
50 if ( item && !item->isLocked() )
51 {
52 //we've found the highest QgsLayoutItem
53 mMoveContentStartPos = event->layoutPoint();
54 mMoveContentItem = item;
55 mMovingItemContent = true;
56 break;
57 }
58 }
59}
60
62{
63 if ( !mMovingItemContent || !mMoveContentItem )
64 {
65 event->ignore();
66 return;
67 }
68
69 //update item preview
70 mMoveContentItem->setMoveContentPreviewOffset( event->layoutPoint().x() - mMoveContentStartPos.x(), event->layoutPoint().y() - mMoveContentStartPos.y() );
71 mMoveContentItem->update();
72}
73
75{
76 if ( event->button() != Qt::LeftButton || !mMovingItemContent || !mMoveContentItem )
77 {
78 event->ignore();
79 return;
80 }
81
82 //update item preview
83 mMoveContentItem->setMoveContentPreviewOffset( 0, 0 );
84
85 const double moveX = event->layoutPoint().x() - mMoveContentStartPos.x();
86 const double moveY = event->layoutPoint().y() - mMoveContentStartPos.y();
87
88 mMoveContentItem->layout()->undoStack()->beginCommand( mMoveContentItem, tr( "Move Item Content" ) );
89 mMoveContentItem->moveContent( -moveX, -moveY );
90 mMoveContentItem->layout()->undoStack()->endCommand();
91 mMoveContentItem = nullptr;
92 mMovingItemContent = false;
93}
94
96{
97 event->accept();
98
99 const QPointF scenePoint = view()->mapToScene( event->position().x(), event->position().y() );
100
101 //select topmost item at position of event
102 QgsLayoutItem *item = layout()->layoutItemAt( scenePoint, true );
103 if ( !item || !item->isSelected() )
104 return;
105
106 const QgsSettings settings;
107 double zoomFactor = settings.value( QStringLiteral( "qgis/zoom_factor" ), 2.0 ).toDouble();
108 bool reverseZoom = settings.value( QStringLiteral( "qgis/reverse_wheel_zoom" ), false ).toBool();
109 bool zoomIn = reverseZoom ? event->angleDelta().y() < 0 : event->angleDelta().y() > 0;
110
111 // "Normal" mouse have an angle delta of 120, precision mouses provide data faster, in smaller steps
112 zoomFactor = 1.0 + ( zoomFactor - 1.0 ) / 120.0 * std::fabs( event->angleDelta().y() );
113
114 if ( event->modifiers() & Qt::ControlModifier )
115 {
116 //holding ctrl while wheel zooming results in a finer zoom
117 zoomFactor = 1.0 + ( zoomFactor - 1.0 ) / 20.0;
118 }
119
120 //calculate zoom scale factor
121 const double scaleFactor = ( zoomIn ? zoomFactor : 1 / zoomFactor );
122
123 const QPointF itemPoint = item->mapFromScene( scenePoint );
124 item->layout()->undoStack()->beginCommand( item, tr( "Zoom Item Content" ), QgsLayoutItem::UndoZoomContent );
125 item->zoomContent( scaleFactor, itemPoint );
126 item->layout()->undoStack()->endCommand();
127}
Base class for graphical items within a QgsLayout.
@ UndoZoomContent
Item content zoomed.
virtual void zoomContent(double factor, QPointF point)
Zooms content of item.
bool isLocked() const
Returns true if the item is locked, and cannot be interacted with using the mouse.
const QgsLayout * layout() const
Returns the layout the object is attached to.
void endCommand()
Saves final state of an object and pushes the active command to the undo history.
void beginCommand(QgsLayoutUndoObjectInterface *object, const QString &commandText, int id=0)
Begins a new undo command for the specified object.
A mouse event which is the result of a user interaction with a QgsLayoutView.
QPointF layoutPoint() const
Returns the event point location in layout coordinates.
void wheelEvent(QWheelEvent *event) override
Mouse wheel event for overriding.
QgsLayoutViewToolMoveItemContent(QgsLayoutView *view)
Constructor for QgsLayoutViewToolMoveItemContent.
void layoutMoveEvent(QgsLayoutViewMouseEvent *event) override
Mouse move event for overriding.
void layoutPressEvent(QgsLayoutViewMouseEvent *event) override
Mouse press event for overriding.
void layoutReleaseEvent(QgsLayoutViewMouseEvent *event) override
Mouse release event for overriding.
void setCursor(const QCursor &cursor)
Sets a user defined cursor for use when the tool is active.
QgsLayoutView * view() const
Returns the view associated with the tool.
QgsLayout * layout() const
Returns the layout associated with the tool.
QgsLayoutViewTool(QgsLayoutView *view, const QString &name)
Constructor for QgsLayoutViewTool, taking a layout view and tool name as parameters.
A graphical widget to display and interact with QgsLayouts.
QgsLayoutItem * layoutItemAt(QPointF position, bool ignoreLocked=false, double searchTolerance=0) const
Returns the topmost layout item at a specified position.
QgsLayoutUndoStack * undoStack()
Returns a pointer to the layout's undo stack, which manages undo/redo states for the layout and it's ...
Stores settings for use within QGIS.
Definition qgssettings.h:65
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.