mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-25 01:00:01 +00:00
21 lines
244 B
C
21 lines
244 B
C
|
#ifndef QKEYEDIT_H
|
||
|
#define QKEYEDIT_H
|
||
|
|
||
|
#include <QLineEdit>
|
||
|
|
||
|
class QKeyEdit : public QLineEdit
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit QKeyEdit(QWidget *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
bool event(QEvent *e);
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // QKEYEDIT_H
|