mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:20:04 +00:00
Added a basic location marker manager.
This commit is contained in:
parent
84233868d6
commit
19415cd0a1
16 changed files with 806 additions and 44 deletions
35
scwx-qt/source/scwx/qt/ui/marker_dialog.hpp
Normal file
35
scwx-qt/source/scwx/qt/ui/marker_dialog.hpp
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class MarkerDialog;
|
||||
}
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace ui
|
||||
{
|
||||
|
||||
class MarkerDialogImpl;
|
||||
|
||||
class MarkerDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MarkerDialog(QWidget* parent = nullptr);
|
||||
~MarkerDialog();
|
||||
|
||||
private:
|
||||
friend class MarkerDialogImpl;
|
||||
std::unique_ptr<MarkerDialogImpl> p;
|
||||
Ui::MarkerDialog* ui;
|
||||
};
|
||||
|
||||
} // namespace ui
|
||||
} // namespace qt
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue