Skip to content
Snippets Groups Projects
slavestab.h 667 B
Newer Older
#ifndef SLAVESTAB_H
#define SLAVESTAB_H

#include <QWidget>
#include <QBoxLayout>
#include "pcgroupbox.h"

class SlavesTab : public QWidget
{
    Q_OBJECT
    QBoxLayout *layout;
    QBoxLayout *groupboxes;

    LabelledWidget<QLineEdit> *host_address;
    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:
};

#endif // SLAVESTAB_H