summaryrefslogtreecommitdiffstats
path: root/src/gui/authenticationform.h
blob: 70b4a933e88a28a28f39e8c811cc4c6e3b170b46 (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, const char* name = 0, bool modal = false, Qt::WindowFlags fl = 0);
	~AuthenticationForm();

	virtual int exec( t_user * user_config, const QString & realm, QString & username, QString & password );

protected slots:
	virtual void languageChange();

};

#endif