Interface mockup 4

This commit is contained in:
Dion Moult
2026-05-05 19:59:51 +10:00
parent ae66550cae
commit e20cea221b
11 changed files with 288 additions and 181 deletions
-17
View File
@@ -86,23 +86,6 @@ QFrame* wrapPanel(QWidget* inner) {
outer_layout->setContentsMargins(6, 6, 6, 6);
outer_layout->setSpacing(0);
auto* frame = new QFrame(outer);
frame->setObjectName("panelFrame");
auto* layout = new QVBoxLayout(frame);
layout->setContentsMargins(8, 8, 8, 8);
layout->setSpacing(0);
layout->addWidget(inner);
outer_layout->addWidget(frame);
return outer;
}
QFrame* wrapInspectorPanel(QWidget* inner) {
auto* outer = new QFrame();
auto* outer_layout = new QVBoxLayout(outer);
outer_layout->setContentsMargins(6, 6, 6, 6);
outer_layout->setSpacing(0);
auto* frame = new QFrame(outer);
frame->setObjectName("panelFrame");
auto* layout = new QVBoxLayout(frame);