summaryrefslogtreecommitdiffabout
path: root/kmicromail/libmailwrapper/logindialog.h
Unidiff
Diffstat (limited to 'kmicromail/libmailwrapper/logindialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/libmailwrapper/logindialog.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/kmicromail/libmailwrapper/logindialog.h b/kmicromail/libmailwrapper/logindialog.h
new file mode 100644
index 0000000..f406f2c
--- a/dev/null
+++ b/kmicromail/libmailwrapper/logindialog.h
@@ -0,0 +1,23 @@
1#ifndef LOGINDIALOG_H
2#define LOGINDIALOG_H
3
4#include "logindialogui.h"
5
6class LoginDialog : public LoginDialogUI
7{
8 Q_OBJECT
9
10public:
11 LoginDialog(const QString&user,const QString&pass, QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags flags = 0 );
12 QString getUser() { return _user; }
13 QString getPassword() { return _pass; }
14
15protected slots:
16 void accept();
17
18private:
19 QString _user, _pass;
20
21};
22
23#endif