QGIS API Documentation 3.99.0-Master (21b3aa880ba)
Loading...
Searching...
No Matches
qgsinstallgridshiftdialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsinstallgridshiftdialog.h
3 -------------------
4 begin : September 2019
5 copyright : (C) 2019 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef QGSINSTALLGRIDSHIFTDIALOG_H
19#define QGSINSTALLGRIDSHIFTDIALOG_H
20
21#include "ui_qgsinstallgridshiftdialog.h"
22
23#include "qgis_gui.h"
24
25#include <QDialog>
26
27#define SIP_NO_FILE
28
30class GUI_EXPORT QgsInstallGridShiftFileDialog : public QDialog, private Ui::QgsInstallGridShiftFileDialogBase
31{
32 Q_OBJECT
33 public:
34 QgsInstallGridShiftFileDialog( const QString &gridName, QWidget *parent = nullptr );
35
36 void setDescription( const QString &html );
37 void setDownloadMessage( const QString &message );
38
39 private slots:
40
41 void installFromFile();
42
43 private:
44 QString mGridName;
45};
47
48#endif // QGSINSTALLGRIDSHIFTDIALOG_H