#ifndef SLAVESTAB_H #define SLAVESTAB_H #include <QWidget> #include <QBoxLayout> #include "pcgroupbox.h" #include "labelledfield.h" #include "labelledspinner.h" class SlavesTab : public QWidget { Q_OBJECT QBoxLayout *layout; QBoxLayout *groupboxes; LabelledField *host_address; LabelledSpinner *delay_spinner; LabelledSpinner *time_slave; LabelledSpinner *slaves_by_computer; public: explicit SlavesTab(QWidget *parent = nullptr); void addPcGroupBox(PCGroupBox *pgb); signals: public slots: private slots: void print_command(); }; #endif // SLAVESTAB_H