26 lines
529 B
C++
26 lines
529 B
C++
#ifndef RSTOZEROSETWIDGET_H
|
|
#define RSTOZEROSETWIDGET_H
|
|
#include <QFrame>
|
|
#include "ui_rstozerosetwidget.h"
|
|
|
|
class RSToZeroSetWidget:public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RSToZeroSetWidget(QWidget* parent=nullptr);
|
|
|
|
private slots:
|
|
void on_dsbZAAxisToZero1Vel_valueChanged(double value);
|
|
void on_dsbZAAxisToZero2Vel_valueChanged(double value);
|
|
void on_dsbZAAxisToZero3Vel_valueChanged(double value);
|
|
|
|
private:
|
|
void loadSet();
|
|
|
|
private:
|
|
Ui::RSToZeroSetWidget* ui;
|
|
|
|
};
|
|
|
|
#endif // RSTOZEROSETWIDGET_H
|