Add dedicated Placefile Manager dialog separate from settings

This commit is contained in:
Dan Paulat 2023-10-10 22:33:23 -05:00
parent 4a92f11d00
commit f2addd29e6
11 changed files with 215 additions and 41 deletions

View file

@ -0,0 +1,35 @@
#pragma once
#include <QDialog>
namespace Ui
{
class PlacefileDialog;
}
namespace scwx
{
namespace qt
{
namespace ui
{
class PlacefileDialogImpl;
class PlacefileDialog : public QDialog
{
Q_OBJECT
public:
explicit PlacefileDialog(QWidget* parent = nullptr);
~PlacefileDialog();
private:
friend class PlacefileDialogImpl;
std::unique_ptr<PlacefileDialogImpl> p;
Ui::PlacefileDialog* ui;
};
} // namespace ui
} // namespace qt
} // namespace scwx