mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-24 02:39:42 +00:00
20 lines
379 B
C++
20 lines
379 B
C++
#ifndef CSVSETTINGS_CLICKCOMBOBOX_H
|
|
#define CSVSETTINGS_CLICKCOMBOBOX_H
|
|
|
|
#include <QComboBox>
|
|
#include <QMouseEvent>
|
|
|
|
class ClickComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ClickComboBox(QWidget *parent = 0) { }
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
signals:
|
|
void mouseReleased();
|
|
|
|
};
|
|
|
|
#endif /* CSVSETTINGS_CLICKCOMBOBOX_H */
|