iaupdate/IAD/ui/inc/iaupdatefirsttimeinfo.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:22:02 +0100
branchRCL_3
changeset 26 8b7f4e561641
parent 25 7333d7932ef7
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2008 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:   This file contains the header file of the CIAUpdateFirstTimeInfo
*                class 
*
*/


#ifndef __IAUPDATE_FIRSTTIMEINFO_H__
#define __IAUPDATE_FIRSTTIMEINFO_H__

// INCLUDES
#include <e32base.h>
#include <f32file.h>

// FORWARD DECLARATIONS
class RReadStream;
class RWriteStream;

// CLASS DECLARATION
/**
*
*/

class CIAUpdateFirstTimeInfo : public CBase
    {
public:

    /**
    * Construct a CIAUpdateFirstTimeInfo using two phase construction,
    * and return a pointer to the created object
    * @return A pointer to the created instance of CIAUpdateFirstTimeInfo
    */
    static CIAUpdateFirstTimeInfo* NewL();
    
    /**
    * Construct a CIAUpdateFirstTimeInfo using two phase construction,
    * and return a pointer to the created object
    * @return A pointer to the created instance of CIAUpdateFirstTimeInfo
    */
    static CIAUpdateFirstTimeInfo* NewLC();
    
    /**
    * Destructor
    */
    ~CIAUpdateFirstTimeInfo();

public: // new functions
    
    /**
    * Set Nokia agreement as accepted by an user
    */
    void SetAgreementAcceptedL();
    
    /**
    * Set Nokia agreement as asked (prompted) to an user
    */
    void SetAgreementAskedL();
        
    /**
    * Set automatic update checks as asked (prompted) to an user
    */
    void SetAutomaticUpdatesAskedL();
    
    /**
    * Time stamp of first check updates form application is stored
    */
    void SetFirstTimeIfNotSetL();
    
    /**
    * Is Nokia agreement of Application Update accepted by an user
    *
    * @return True value if agreement accepted 
    */
    TBool AgreementAcceptedL();
    
    /**
    * Is Nokia agreement of Application Update already asked 
    *
    * @return True value if agreement already asked 
    */
    TBool AgreementAskedL();
    
    /**
    * Is activation for automatic update cheks from network already asked 
    *
    * @return True value if agreement already asked 
    */
    TBool AutomaticUpdateChecksAskedL();  
        
    /**
    * There is a delay (eg. 2 weeks) after first check updates request from an application
    * when update check is not performed. This method checks is update check delayed. 
    *
    * @return True value if agreement accepted 
    */
    TBool FirstTimeDelayL();

private:

    /**
    * C++ constructor 
    */
    CIAUpdateFirstTimeInfo();
    
    /**
    * Perform the second phase construction of a CIAUpdateFirstTimeInfo object
    */
    void ConstructL();
    
    void ReadDataL();
    
    void WriteDataL();
    
    void InternalizeL( RReadStream& aStream );
    
    void ExternalizeL( RWriteStream& aStream );
 
private: //data
    	
	RFs iFsSession;
		
	TFileName iPath;
	
	TBool iAgreementAccepted;
	
	TBool iAgreementAsked;
	
	TBool iAutomaticUpdateChecksAsked;   
   
    };


#endif // __IAUPDATE_FIRSTTIMEINFO_H__