3500/CopyChannelSetting.h

37 lines
666 B
C
Raw Normal View History

2023-04-14 19:30:30 +08:00
#ifndef COPYCHANNELSETTING_H
#define COPYCHANNELSETTING_H
#include <QWidget>
2023-04-17 17:40:26 +08:00
#include "global.h"
#include <QCheckBox>
2023-04-14 19:30:30 +08:00
namespace Ui {
class CopyChannelSetting;
}
class CopyChannelSetting : public QWidget
{
Q_OBJECT
public:
explicit CopyChannelSetting(QWidget *parent = nullptr);
~CopyChannelSetting();
2023-04-17 17:40:26 +08:00
QVector<ChannelSetting> copyChannel;
void displayCopyChannel();
private slots:
void on_pushButton_confirm_clicked();
void on_pushButton_selectAll_clicked();
2023-04-14 19:30:30 +08:00
private:
Ui::CopyChannelSetting *ui;
2023-04-17 17:40:26 +08:00
2024-09-11 16:37:00 +08:00
QMap<QString,QCheckBox*> m_mapCheckBox;
2023-04-17 17:40:26 +08:00
signals:
2024-09-11 16:37:00 +08:00
void sgCopyChannelData(QStringList&);
2023-04-14 19:30:30 +08:00
};
#endif // COPYCHANNELSETTING_H