3500/CopyChannelSetting.h

37 lines
666 B
C++

#ifndef COPYCHANNELSETTING_H
#define COPYCHANNELSETTING_H
#include <QWidget>
#include "global.h"
#include <QCheckBox>
namespace Ui {
class CopyChannelSetting;
}
class CopyChannelSetting : public QWidget
{
Q_OBJECT
public:
explicit CopyChannelSetting(QWidget *parent = nullptr);
~CopyChannelSetting();
QVector<ChannelSetting> copyChannel;
void displayCopyChannel();
private slots:
void on_pushButton_confirm_clicked();
void on_pushButton_selectAll_clicked();
private:
Ui::CopyChannelSetting *ui;
QMap<QString,QCheckBox*> m_mapCheckBox;
signals:
void sgCopyChannelData(QStringList&);
};
#endif // COPYCHANNELSETTING_H