emailuis/emailui/inc/FreestyleEmailUiGlobalSettingsData.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 09 Jun 2010 09:22:57 +0300
branchRCL_3
changeset 18 6b8f3b30d0ec
parent 0 8466d47a6819
permissions -rw-r--r--
Revision: 201021 Kit: 2010123

/*
* Copyright (c) 2005-2007 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Freestyle Email header file
*
*/


#ifndef GLOBALSETTINGSSETTINGITEMLISTSETTINGS_H
#define GLOBALSETTINGSSETTINGITEMLISTSETTINGS_H
			
// SYSTEM INCLUDES
#include <e32std.h>

// CLASS DECLARATION
// <cmail> CBase inheritance
class CFsEmailUiGlobalSettingsData : public CBase
// </cmail>
	{
public:
	// construct and destroy
	static CFsEmailUiGlobalSettingsData* NewL();
	
		
private:
    void ConstructL();
	// constructor
	CFsEmailUiGlobalSettingsData();

public:
	TBool& WarnBeforeDelete();
	void SetWarnBeforeDelete( const TBool& aValue );
	TBool& MessageHeader();
	void SetMessageHeader( const TBool& aValue );
	TBool& MessageListLayout();
	void SetMessageListLayout( const TBool& aValue );
	TBool& BodyPreview();
	void SetBodyPreview( const TBool& aValue );
	TBool& TitleDividers();
	void SetTitleDividers( const TBool& aValue );
	TBool& DownloadNotifications();
	void SetDownloadNotifications( const TBool& aValue );
	TInt& ActiveIdle();
	void SetActiveIdle( const TInt& aValue );
	TBool& DownloadHTMLImages();
    void SetDownloadHTMLImages( const TBool& aValue );

private:
	TBool iWarnBeforeDelete;
	TBool iMessageHeader;
	TBool iMessageListLayout;
	TBool iBodyPreview;
	TBool iTitleDividers;
	TBool iDownloadNotifications;
	TBool iDownloadHTMLImages;
	TInt iActiveIdle;
	
	};
#endif // GLOBALSETTINGSSETTINGITEMLISTSETTINGS_H