mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-31 00:03:42 -04:00
Run clang-tidy modernize-use-override to remove all the redundant virtual keywords from overridden methods, and add some missing overrides. Another benefit is that this has also added the overrides on destructors, which will cause a build failure if a base class is missing a virtual destructor.
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
/***************************************************************************
|
|
qgsmaptoolzoom.h - map tool for zooming
|
|
----------------------
|
|
begin : January 2006
|
|
copyright : (C) 2006 by Martin Dobias
|
|
email : wonder.sk at gmail dot com
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSMAPTOOLZOOM_H
|
|
#define QGSMAPTOOLZOOM_H
|
|
|
|
#include "qgsmaptool.h"
|
|
#include <QRect>
|
|
#include "qgis_gui.h"
|
|
|
|
class QgsRubberBand;
|
|
|
|
/**
|
|
* \ingroup gui
|
|
* A map tool for zooming into the map.
|
|
* \see QgsMapTool
|
|
*/
|
|
class GUI_EXPORT QgsMapToolZoom : public QgsMapTool
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! constructor
|
|
QgsMapToolZoom( QgsMapCanvas *canvas, bool zoomOut );
|
|
~QgsMapToolZoom() override;
|
|
|
|
Flags flags() const override { return QgsMapTool::Transient; }
|
|
void canvasMoveEvent( QgsMapMouseEvent *e ) override;
|
|
void canvasPressEvent( QgsMapMouseEvent *e ) override;
|
|
void canvasReleaseEvent( QgsMapMouseEvent *e ) override;
|
|
void deactivate() override;
|
|
|
|
protected:
|
|
//! stores actual zoom rect
|
|
QRect mZoomRect;
|
|
|
|
//! indicates whether we're zooming in or out
|
|
bool mZoomOut;
|
|
|
|
//! Flag to indicate a map canvas drag operation is taking place
|
|
bool mDragging;
|
|
|
|
QgsRubberBand *mRubberBand = nullptr;
|
|
};
|
|
|
|
#endif
|