Newer
Older
#ifndef SLAVESTAB_H
#define SLAVESTAB_H
#include <QWidget>
#include <QBoxLayout>
Ollivier Corentin
committed
#include <QSpinBox>
Ollivier Corentin
committed
#include "labelledwidget.h"
class SlavesTab : public QWidget
{
Q_OBJECT
QBoxLayout *layout;
QBoxLayout *groupboxes;
Ollivier Corentin
committed
LabelledWidget<QLineEdit> *host_address;
Ollivier Corentin
committed
LabelledWidget<QSpinBox> *delay_spinner;
LabelledWidget<QSpinBox> *time_slave;
LabelledWidget<QSpinBox> *slaves_by_computer;
public:
explicit SlavesTab(QWidget *parent = nullptr);
void addPcGroupBox(PCGroupBox *pgb);
signals:
public slots:
private slots:
Ollivier Corentin
committed
void launchSlaves();
};
#endif // SLAVESTAB_H