Files
oak-editor/ui/comboboxex.h
T
2018-07-20 19:06:57 +01:00

19 lines
311 B
C++

#ifndef COMBOBOXEX_H
#define COMBOBOXEX_H
#include <QComboBox>
#include <QDebug>
class ComboBoxEx : public QComboBox {
Q_OBJECT
public:
ComboBoxEx(QWidget* parent = 0);
private slots:
void index_changed(int);
private:
int index;
void wheelEvent(QWheelEvent* e);
};
#endif // COMBOBOXEX_H