Add placefile settings initial layout

This commit is contained in:
Dan Paulat 2023-07-22 14:15:56 -05:00
parent ae1bca3602
commit 4c685e5abb
8 changed files with 207 additions and 4 deletions

View file

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