mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-30 22:51:16 +01:00
27 lines
595 B
C++
27 lines
595 B
C++
#ifndef AUTHENTICATIONWIDGET_H
|
|
#define AUTHENTICATIONWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QLineEdit>
|
|
#include "passwordedit.h"
|
|
|
|
class AuthenticationWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AuthenticationWidget(QWidget *parent = 0);
|
|
|
|
QString username() const {return _username->text();}
|
|
QString password() const {return _password->text();}
|
|
|
|
void setUsername(const QString &username) {_username->setText(username);}
|
|
void setPassword(const QString &password) {_password->setText(password);}
|
|
|
|
private:
|
|
QLineEdit *_username;
|
|
PasswordEdit *_password;
|
|
};
|
|
|
|
#endif // AUTHENTICATIONWIDGET_H
|