mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-02 00:04:53 -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.
45 lines
1.6 KiB
C++
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
|