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,38 @@
#include "placefile_settings_widget.hpp"
#include "ui_placefile_settings_widget.h"
namespace scwx
{
namespace qt
{
namespace ui
{
class PlacefileSettingsWidgetImpl
{
public:
explicit PlacefileSettingsWidgetImpl(PlacefileSettingsWidget* self) :
self_ {self}
{
}
~PlacefileSettingsWidgetImpl() = default;
PlacefileSettingsWidget* self_;
};
PlacefileSettingsWidget::PlacefileSettingsWidget(QWidget* parent) :
QFrame(parent),
p {std::make_unique<PlacefileSettingsWidgetImpl>(this)},
ui(new Ui::PlacefileSettingsWidget)
{
ui->setupUi(this);
}
PlacefileSettingsWidget::~PlacefileSettingsWidget()
{
delete ui;
}
} // namespace ui
} // namespace qt
} // namespace scwx