You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
287 B
C++

#ifndef QTPCOMBOBOX_H
#define QTPCOMBOBOX_H
#include <QtWidgets\qcombobox.h>
class QTpComboBox : public QComboBox
{
Q_OBJECT
public:
QTpComboBox(QWidget *parent);
~QTpComboBox();
private Q_SLOTS:
void onSetCurrentIndex(int index);
};
#endif // QTPCOMBOBOX_H