Reworking value editro, part I

This commit is contained in:
2026-01-11 11:37:52 +01:00
parent 6232b560b5
commit 9c35c9ea42
10 changed files with 53 additions and 157 deletions

View File

@@ -1,13 +1,15 @@
#ifndef BCVALUEEDITOR_H
#define BCVALUEEDITOR_H
#ifndef BCValueEditor_H
#define BCValueEditor_H
#include <QWidget>
#include <ui_bcvalueeditor.h>
class QSlider;
class QPushButton;
class BCValue;
class BCValueEditor : public QWidget
class BCValueEditor : public QWidget, private Ui::BCValueEditor
{
Q_OBJECT
@@ -25,9 +27,6 @@ signals:
private:
const BCValue& _bcValue;
QSlider* _slider;
QPushButton* _commitButton;
};
#endif // BCVALUEEDITOR_H
#endif // BCValueEditor_H