QGIS/src/app/qgsdecorationnortharrowdialog.h
Nyall Dawson 4da1ce8404 Drop redundant virtual keywords on overrides
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.
2017-12-16 08:49:36 +10:00

45 lines
1.6 KiB
C++

/***************************************************************************
* Copyright (C) 2003 by Tim Sutton *
* tim@linfiniti.com *
* *
* This is a plugin generated from the QGIS plugin template *
* *
* 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 QGSNORTHARROWPLUGINGUI_H
#define QGSNORTHARROWPLUGINGUI_H
#include "ui_qgsdecorationnortharrowdialog.h"
#include "qgis_app.h"
class QgsDecorationNorthArrow;
class APP_EXPORT QgsDecorationNorthArrowDialog : public QDialog, private Ui::QgsDecorationNorthArrowDialog
{
Q_OBJECT
public:
QgsDecorationNorthArrowDialog( QgsDecorationNorthArrow &deco, QWidget *parent = nullptr );
~QgsDecorationNorthArrowDialog() override;
private:
void drawNorthArrow();
void resizeEvent( QResizeEvent * ) override; //overloads qwidget
private slots:
void buttonBox_accepted();
void buttonBox_rejected();
void showHelp();
void spinAngle_valueChanged( int spinAngle );
void sliderRotation_valueChanged( int rotationValue );
void apply();
protected:
QgsDecorationNorthArrow &mDeco;
};
#endif