mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +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
|