Added missing files.

This commit is contained in:
2026-01-11 01:13:56 +01:00
parent d3c62335b1
commit 6232b560b5
4 changed files with 194 additions and 0 deletions

32
bcvaluewidget.h Normal file
View File

@@ -0,0 +1,32 @@
#ifndef BCVALUEWIDGET_H
#define BCVALUEWIDGET_H
#include <QWidget>
#include <ui_bcvaluewidget.h>
class QSlider;
class QPushButton;
class BCValue;
class BCValueWidget : public QWidget, private Ui::BCValueWidget
{
Q_OBJECT
public:
explicit BCValueWidget(const BCValue& bcValue, QWidget *parent = nullptr);
int getValue() const;
void setValue(int val);
signals:
void valueChanged(int value);
private:
const BCValue& _bcValue;
};
#endif // BCVALUEWIDGET_H