1/*
2 * Copyright 2004-2012, Haiku, Inc. All rights reserved.
3 * Copyright 2001, Dr. Zoidberg Enterprises. All rights reserved.
4 *
5 * Distributed under the terms of the MIT License.
6 */
7#ifndef CONFIG_VIEW_H
8#define CONFIG_VIEW_H
9
10
11#include <MailSettingsView.h>
12
13#include <FileConfigView.h>
14
15
16class ConfigView : public BMailSettingsView {
17public:
18								ConfigView();
19
20			void				SetTo(const BMailAddOnSettings& settings);
21
22	virtual status_t			SaveInto(BMailAddOnSettings& settings) const;
23
24private:
25			BPrivate::MailFileConfigView* fFileView;
26			BTextControl*		fTagControl;
27};
28
29
30#endif	// CONFIG_VIEW_H
31