sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __STARTUP_STATE_OBSERVER_OBJECT_H__ sl@0: #define __STARTUP_STATE_OBSERVER_OBJECT_H__ sl@0: sl@0: sl@0: #include "StartupStateObserver.h" sl@0: sl@0: /** sl@0: @internalTechnology sl@0: sl@0: A dummy startup state observer enabled class useful for unit testing. sl@0: */ sl@0: class CStartupStateObserver: public CBase, public MStartupStateObserver sl@0: { sl@0: public: sl@0: /** sl@0: * Factory method to create an instance of the class sl@0: */ sl@0: static CStartupStateObserver* NewL(); sl@0: sl@0: /** sl@0: * Factory method to create an instance of the class sl@0: * The object is left on the CleanupStack; sl@0: */ sl@0: static CStartupStateObserver* NewLC(); sl@0: sl@0: /* sl@0: * Destructor sl@0: */ sl@0: virtual ~CStartupStateObserver(); sl@0: sl@0: /** sl@0: Internal state for CStartupStateObserver sl@0: @internalComponent sl@0: */ sl@0: enum TSsoState sl@0: { sl@0: SsoUndefined, sl@0: SsoNoPluginsInternalized, sl@0: SsoCriticalPlugingsInternalized, sl@0: SsoAllPluginsInternalized sl@0: }; sl@0: sl@0: /** sl@0: * the method used to process the SSA(Startup State Aware) event for the sl@0: * MStartupStateObserver object. sl@0: * sl@0: * @param aState the TDmDomainState passes into the MStartupStateObserver object. sl@0: */ sl@0: virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState); sl@0: sl@0: /** sl@0: * Initialises the internal state of the object sl@0: */ sl@0: void InitialiseEvent(); sl@0: sl@0: /** sl@0: * Returns the current state of the object sl@0: * @return the current state sl@0: */ sl@0: CStartupStateObserver::TSsoState GetState(); sl@0: sl@0: /** sl@0: * Sets the current state of the object sl@0: * @param aState the new state of the object sl@0: */ sl@0: void SetState(CStartupStateObserver::TSsoState aState); sl@0: sl@0: private: sl@0: /** sl@0: * Default constructor. Make it private so the objects can only be sl@0: * instantiated with NewL sl@0: */ sl@0: CStartupStateObserver(); sl@0: sl@0: /** sl@0: * Initialises the object sl@0: */ sl@0: void Construct(); sl@0: sl@0: private: sl@0: TSsoState iState; sl@0: }; sl@0: sl@0: sl@0: #endif //__STARTUP_STATE_OBSERVER_OBJECT_H__