1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-19 20:12:10 +01:00
GPXSee/src/GUI/passwordedit.h

22 lines
273 B
C
Raw Normal View History

#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