From 3b37149813d940535b12ba3b1edd938c41804a1b Mon Sep 17 00:00:00 2001 From: harlekin Date: Mon, 08 Dec 2003 13:37:32 +0000 Subject: beginning of the new mailer --- (limited to 'noncore/net/mail/logindialog.h') diff --git a/noncore/net/mail/logindialog.h b/noncore/net/mail/logindialog.h new file mode 100644 index 0000000..7a0d1b0 --- a/dev/null +++ b/noncore/net/mail/logindialog.h @@ -0,0 +1,23 @@ +#ifndef LOGINDIALOG_H +#define LOGINDIALOG_H + +#include "logindialogui.h" + +class LoginDialog : public LoginDialogUI +{ + Q_OBJECT + +public: + LoginDialog( QString user, QString pass, QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags flags = 0 ); + QString getUser() { return _user; } + QString getPassword() { return _pass; } + +protected slots: + void accept(); + +private: + QString _user, _pass; + +}; + +#endif -- cgit v0.9.0.2