summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/accounteditor.h
blob: 9acca2d8be0db3e0192a161b7dd007393b440d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef ACCOUNTEDITOR_H
#define ACCOUNTEDITOR_H

#include "accounteditorbase.h"
#include "configfile.h"

class AccountEditor : public AccountEditorBase
{
	Q_OBJECT

public:
	AccountEditor(Account account = Account(), QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0);

	Account _account;

protected slots:
	void accept();
	void showPasswdToggled(bool toggled);

protected:
	void fillValues();

};

#endif