feat(parameterUI): add parameter panel
This commit is contained in:
16
src/Gui/ParametersPanel/ParametersPanel.h
Normal file
16
src/Gui/ParametersPanel/ParametersPanel.h
Normal 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_;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user