mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:10:05 +00:00
40 lines
614 B
C++
40 lines
614 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <qmaplibre.hpp>
|
|
|
|
namespace Ui
|
|
{
|
|
class SettingsDialog;
|
|
}
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
|
|
class SettingsDialogImpl;
|
|
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
Q_DISABLE_COPY(SettingsDialog)
|
|
|
|
public:
|
|
explicit SettingsDialog(QMapLibre::Settings& mapSettings,
|
|
QWidget* parent = nullptr);
|
|
~SettingsDialog();
|
|
|
|
private:
|
|
friend SettingsDialogImpl;
|
|
std::unique_ptr<SettingsDialogImpl> p;
|
|
Ui::SettingsDialog* ui;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|