Files
newspark110/customcontrols/dmcombobox.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

15 lines
340 B
C++

#include "dmcombobox.h"
#include<QDebug>
#include "eventfilterwheel.h"
DMComboBox::DMComboBox(QWidget *parent) :
QComboBox(parent) {
installEventFilter(new EventFilterWheel());
setFocusPolicy(Qt::TabFocus);
}
DMComboBox::~DMComboBox() {
qDebug() << "-----DMComboBox destroying";
qDebug() << "-----DMComboBox destroyed";
}