mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 20:12:10 +01:00
22 lines
273 B
C
22 lines
273 B
C
|
#ifndef PASSWORDEDIT_H
|
||
|
#define PASSWORDEDIT_H
|
||
|
|
||
|
#include <QLineEdit>
|
||
|
|
||
|
class PasswordEdit : public QLineEdit
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
PasswordEdit(QWidget *parent = 0);
|
||
|
|
||
|
private slots:
|
||
|
void showPassword();
|
||
|
|
||
|
private:
|
||
|
QAction *_action;
|
||
|
bool _show;
|
||
|
};
|
||
|
|
||
|
#endif // PASSWORDEDIT_H
|