26#include <QGraphicsView>
38class Q_DECL_EXPORT
KplView :
public QGraphicsView
47 KplView(
double f = 1, QWidget* parent =
nullptr);
58 inline double zoomFactor()
const {
return m_zoomFactor; };
124 QRubberBand* rubberBand;
Kpl main view class.
Definition kplview.h:39
void urlsDropped(QList< QUrl > *list)
Emitted at drop event.
virtual void dragMoveEvent(QDragMoveEvent *e) override
double zoomFactor() const
Returns zoom factor.
Definition kplview.h:58
virtual void keyPressEvent(QKeyEvent *e) override
Implements scrolling of the window by key sequences.
virtual void dropEvent(QDropEvent *e) override
Emits the signal urlsDropped, transferring a list of URLs.
void setZoomFactor(double f)
Sets zoom factor.
KplView(double f=1, QWidget *parent=nullptr)
Constructor.
void mouseLeaved()
Emitted when mouse cursor leaves the widget.
virtual void leaveEvent(QEvent *e) override
Emits the signal mouseLeaved.
virtual void mouseMoveEvent(QMouseEvent *e) override
Implements selection of a rectangular region using the mouse with its right button pressed.
virtual ~KplView()
Destructor.
virtual QSize sizeHint() const override
Calculates recommended size of the widget.
virtual void mousePressEvent(QMouseEvent *e) override
Implements initiation of selection of a rectangular region using the mouse with its right button pres...
virtual void mouseReleaseEvent(QMouseEvent *e) override
Implements finishing of selection of a rectangular region using the mouse with its right button press...
virtual void dragEnterEvent(QDragEnterEvent *e) override
void regionSelected(const QRectF &rect)
Emitted when rectangular region was selected using the mouse with its right button pressed.