37 lines
659 B
C++
37 lines
659 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;
|
|
|
|
QList<QCheckBox*> m_listCheckBox;
|
|
signals:
|
|
void sgSetChannelData(QStringList&);
|
|
};
|
|
|
|
#endif // COPYCHANNELSETTING_H
|