diff -r 000000000000 -r 8466d47a6819 ipsservices/ipssosplugin/inc/ipsplgsettingsobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ipsservices/ipssosplugin/inc/ipsplgsettingsobserver.h Thu Dec 17 08:39:21 2009 +0200 @@ -0,0 +1,131 @@ +/* +* Copyright (c) 2007-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: Email settings observer class +* +*/ + +#ifndef IPSPLGSETTINGSOBSERVER_H +#define IPSPLGSETTINGSOBSERVER_H + +// INCLUDES + + +// FORWARD DECLARATIONS +class CRepository; +class MFSMailEventObserver; +class MIpsPlgSettingsObserverCallback; + +const TUid KCRUidExtendedSettings = {0x102071F1}; + +// CLASS DECLARATION + +/** +* MIpsPlgSettingsObserverCallback +*/ +class MIpsPlgSettingsObserverCallback + { +public: + virtual void SettingsChangedL( TFSMailMsgId aAccount )=0; + }; + +/** +* CIpsPlgSettingsObserver +*/ +class CIpsPlgSettingsObserver : public CActive + { +public: // Constructors and destructor + + /** + * Two-phased constructor. + * + */ + static CIpsPlgSettingsObserver* NewL( + TFSMailMsgId aAccount, + CRepository& aCenRep, + MIpsPlgSettingsObserverCallback& aIPSCallback ); + + /** + * Destructor. + */ + virtual ~CIpsPlgSettingsObserver(); + + /** + * + */ + void SetKeyAndActivateL( + TUint32 aKey, + const RPointerArray& aObservers ); + + /** + * + */ + void UnActivate( ); + + /** + * + */ + TFSMailMsgId MailboxId(); + +private: + + /** + * Private C++ constructor. + * + */ + CIpsPlgSettingsObserver( + TFSMailMsgId aAccount, + CRepository& aCenRep, + MIpsPlgSettingsObserverCallback& aIPSCallback ); + +private: + + void ConstructL(); + + /** + * From CActive + */ + void RunL(); + + /** + * From CActive + */ + void DoCancel(); + + /** + * Function to handle error during running the operation + * @since Series60 2.6 + * @return KErrNone, when error has been handled + */ + virtual TInt RunError( TInt aError ); + + /** + * + */ + void Activate(); + +private: // Data + + CRepository& iCenRep; + TUint32 iKey; + TFSMailMsgId iAccount; + + // pointers not ovned + RPointerArray iFSObservers; + MIpsPlgSettingsObserverCallback& iIPSCallback; + + }; + +#endif // IPSPLGSETTINGSOBSERVER_H + +// End of File