blob: 98ceaf0d16c89b2495bce7bc5be4d15432b7a8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef AUTHENTICATIONFORM_H
#define AUTHENTICATIONFORM_H
#include "user.h"
#include "ui_authenticationform.h"
class AuthenticationForm : public QDialog, public Ui::AuthenticationForm
{
Q_OBJECT
public:
AuthenticationForm(QWidget* parent = 0);
~AuthenticationForm();
virtual int exec( t_user * user_config, const QString & realm, QString & username, QString & password );
protected slots:
virtual void languageChange();
};
#endif
|