DSCAnalysisTool/YT_TANGOUS_Release/combobox.h

24 lines
407 B
C
Raw Normal View History

2025-03-06 07:25:37 +00:00
#ifndef COMBOBOX_H
#define COMBOBOX_H
#include <QComboBox>
#include <QMouseEvent>
#include <QSerialPort>
#include <QSerialPortInfo>
class ComboBox : public QComboBox
{
Q_OBJECT
public:
explicit ComboBox(QWidget *parent = nullptr);
~ComboBox();
// 重写鼠标点击事件
void mousePressEvent(QMouseEvent *event);
signals:
private:
void scanActivePort();
};
#endif // COMBOBOX_H