mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
d5c2560212
Save the bindings in the conf file in a map.
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
|