Added device filter.

This commit is contained in:
2025-12-27 19:49:41 +01:00
parent 139397f045
commit 84e79c8c17
4 changed files with 27 additions and 16 deletions

View File

@@ -46,7 +46,10 @@ public:
explicit BCDevicePanel(QWidget *parent = nullptr);
void setHeaderText( const QString& headerText);
QString getHeaderText();
QString getHeaderText() const;
void setDeviceID( BCDevice::ID deviceID );
BCDevice::ID getDeviceID() const;
BCValueList& exposeValueList();
@@ -58,8 +61,9 @@ public slots:
protected:
BCDevice::ID _devideID{BCDevice::ID::Invalid};
BCValueModel _valueModel;
BCValueList _myTmpList;
};