mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:20:04 +00:00
42 lines
613 B
C++
42 lines
613 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class RadarSiteDialog;
|
|
}
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
|
|
class RadarSiteDialogImpl;
|
|
|
|
class RadarSiteDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RadarSiteDialog(QWidget* parent = nullptr);
|
|
~RadarSiteDialog();
|
|
|
|
std::string radar_site() const;
|
|
|
|
protected:
|
|
void showEvent(QShowEvent*) override;
|
|
|
|
public slots:
|
|
void HandleMapUpdate(double latitude, double longitude);
|
|
|
|
private:
|
|
std::unique_ptr<RadarSiteDialogImpl> p;
|
|
Ui::RadarSiteDialog* ui;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|