Sensors now work over broadcast pipe
Added Polynomal actor Added Item adding dialog Added Factor Actor
This commit is contained in:
parent
f6aaebafc6
commit
772d21a982
63 changed files with 1450 additions and 225 deletions
30
src/ui/actorwidgets/polynomalactorwidget.h
Normal file
30
src/ui/actorwidgets/polynomalactorwidget.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef POLYNOMALACTORWIDGET_H
|
||||
#define POLYNOMALACTORWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "../../actors/polynomalactor.h"
|
||||
|
||||
namespace Ui {
|
||||
class PolynomalActorWidget;
|
||||
}
|
||||
|
||||
class PolynomalActorWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
SensorStore* sensors_;
|
||||
PolynomalActor* actor_;
|
||||
|
||||
public:
|
||||
explicit PolynomalActorWidget(PolynomalActor* regulator, SensorStore* sensors = nullptr, QWidget *parent = nullptr);
|
||||
~PolynomalActorWidget();
|
||||
|
||||
private slots:
|
||||
|
||||
void setPow();
|
||||
void setSensor(const QModelIndex &index);
|
||||
|
||||
private:
|
||||
Ui::PolynomalActorWidget *ui;
|
||||
};
|
||||
|
||||
#endif // POLYNOMALACTORWIDGET_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue