mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:20:04 +00:00
Layer manager dialog stub
This commit is contained in:
parent
f2addd29e6
commit
ad55ec7f51
11 changed files with 283 additions and 0 deletions
35
scwx-qt/source/scwx/qt/ui/layer_dialog.hpp
Normal file
35
scwx-qt/source/scwx/qt/ui/layer_dialog.hpp
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class LayerDialog;
|
||||
}
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace ui
|
||||
{
|
||||
|
||||
class LayerDialogImpl;
|
||||
|
||||
class LayerDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit LayerDialog(QWidget* parent = nullptr);
|
||||
~LayerDialog();
|
||||
|
||||
private:
|
||||
friend class LayerDialogImpl;
|
||||
std::unique_ptr<LayerDialogImpl> p;
|
||||
Ui::LayerDialog* ui;
|
||||
};
|
||||
|
||||
} // namespace ui
|
||||
} // namespace qt
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue