ca3341c7b4
* Instead of abusing BArchive::Archive() we now use a BMailSettingsView as a base view for all filter/protocol settings that works with BMailAddOnSettings. * Cleanups in E-mail which is now completely layout friendly. But also still crashes when changing the views.
26 lines
518 B
C++
26 lines
518 B
C++
/*
|
|
* Copyright 2012, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _MAIL_SETTINGS_VIEW_H
|
|
#define _MAIL_SETTINGS_VIEW_H
|
|
|
|
|
|
#include <MailSettings.h>
|
|
#include <View.h>
|
|
|
|
|
|
class BMailSettingsView : public BView {
|
|
public:
|
|
BMailSettingsView(const char* name);
|
|
virtual ~BMailSettingsView();
|
|
|
|
// virtual BString DescriptiveName() const = 0;
|
|
|
|
virtual status_t SaveInto(
|
|
BMailAddOnSettings& settings) const = 0;
|
|
};
|
|
|
|
|
|
#endif // _MAIL_SETTINGS_VIEW_H
|