feat(parameterUI): add parameter panel

This commit is contained in:
parker
2025-07-17 21:00:21 +01:00
parent 353cd7fb63
commit d989bc09dd
7 changed files with 68 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <QWidget>
#include <QVBoxLayout>
class ParametersPanel
: public QWidget
{
public:
ParametersPanel(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
private:
QVBoxLayout* mainLayout_;
QVBoxLayout* parametersLayout_;
QWidget* bgWidget_;
};