110VCGQ/485SWJ/CGQ485V2/CGQ485/mycombobox.h

20 lines
302 B
C
Raw Normal View History

2024-11-18 10:09:39 +08:00
#ifndef MYCOMBOBOX_H
#define MYCOMBOBOX_H
#include <QComboBox>
#include <QMouseEvent>
class MyComboBox : public QComboBox
{
Q_OBJECT
public:
MyComboBox(QWidget *parent);
protected:
virtual void mousePressEvent(QMouseEvent *event);
signals:
void clicked();
};
#endif // MYCOMBOBOX_H