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