2022-09-04 02:12:33 +02:00
|
|
|
#ifndef MAPSETTINGS_H
|
|
|
|
#define MAPSETTINGS_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class MapSettings;
|
|
|
|
}
|
|
|
|
|
2022-09-04 18:16:36 +02:00
|
|
|
class MainWindow;
|
2022-09-04 02:12:33 +02:00
|
|
|
class MapSettings : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-09-04 18:16:36 +02:00
|
|
|
explicit MapSettings(MainWindow *parent = nullptr);
|
2022-09-04 02:12:33 +02:00
|
|
|
~MapSettings();
|
|
|
|
|
2022-09-04 18:16:36 +02:00
|
|
|
private slots:
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
|
2022-09-04 02:12:33 +02:00
|
|
|
private:
|
|
|
|
Ui::MapSettings *ui;
|
2022-09-04 18:16:36 +02:00
|
|
|
MainWindow * main;
|
2022-09-04 02:12:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAPSETTINGS_H
|