diff -r 000000000000 -r 5e5d6b214f4f uiservicetab/vimpstengine/tsrc/vimpstengine_ut/src/stubs/s_cch.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiservicetab/vimpstengine/tsrc/vimpstengine_ut/src/stubs/s_cch.h Tue Feb 02 10:12:18 2010 +0200 @@ -0,0 +1,280 @@ +/* +* s_cch.h :Copyright (c) 2009 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: s_cch.h +* +*/ + +#ifndef MyCchServiceH +#define MyCchServiceH + +// EXTERNAL INCLUDES +#include +#include + + +_LIT(KTestUserName, "hi123"); +_LIT(KOwnUserNameMatch,"gizmo:Sharath"); // dont change this value +_LIT(KTestPassword, "password"); +_LIT(KTestDescription, "error"); + +class MyCCch : public CCch + { + +public: + + /** + * Two-phased constructor. + */ + static CCch* NewL(); + + /** + * Two-phased constructor. + */ + static CCch* NewLC(); + + /** + * Destructor. + */ + // ~CCch(); + + /** + * Returns one service + * + * @param aId Service id + * @return Service or NULL if not found. Ownership is not transferred. + */ + // CCchService* GetService( TInt aId ); + + /** + * Returns service ids of all configured services + * + * @param aIds Array of TInt to be filled with ids + * @return Symbian error code + */ + // TInt GetServiceIds( RArray& aIds ) const; + + /** + * Returns services fulfilling the search criteria + * + * @param aType Service type + * @param aServices Array of CCchService to be filled + * @return Symbian error code + */ + // TInt GetServices( TCCHSubserviceType aType, + // RPointerArray& aServices ); + + /** + * Returns ETrue if connectivity dialogs are allowed in service enabling. + * + * @return ETrue if connectivity dialogs are allowed in service enabling + */ + // TBool ConnectivityDialogsAllowed() const; + + /** + * For allowing/disallowing connectivity dialogs showing in + * service enabling. + * + * @param aConnectivityDialogsAllowed Boolean to set connectivity dialogs + * allowed/disallowed + */ + //void SetConnectivityDialogsAllowed( + //TBool aConnectivityDialogsAllowed ); + + /** + * For getting cchui api. + * + * @return reference to cchui api. + */ + // MCchUi& CchUiApi() const; + + + + /** + * The constructor + */ + // void CCch(); + + + + /** + * By default Symbian 2nd phase constructor is private. + */ + // void ConstructL(); + +private: // data + + /** + * Cch client implementation + * Own. + */ + //CCchImpl* iImplementation; + +#ifdef _DEBUG + // friend class UT_CchUi; +#endif + }; + +class MyCchService : public CCchService + { + TInt Enable( TCCHSubserviceType aType ); + + /** + * Launches service disable. See MCchServiceObserver for status changes. + * + * @param aType Type of service + * @return Symbian error + */ + TInt Disable( TCCHSubserviceType aType ); + + /** + * Returns the current service state + * + * @param aType Type of service + * @param aStatus Status of the service, return value + * @return Symbian error code + */ + TInt GetStatus( TCCHSubserviceType aType, + TCchServiceStatus& aStatus ) const ; + + /** + * Returns the connection parameters + * + * @param aType Type of service + * @param aParameter Connection parameter of the service + * @param aValue Value of the parameter + * @return Symbian error code + */ + TInt GetConnectionParameter( TCCHSubserviceType aType, + TCchConnectionParameter aParameter, TInt& aValue ) const; + + /** + * Returns the connection parameters + * + * @param aType Type of service + * @param aParameter Connection parameter of the service + * @param aValue Value of the parameter + * @return Symbian error code + */ + TInt GetConnectionParameter( TCCHSubserviceType aType, + TCchConnectionParameter aParameter, RBuf& aValue ) const; + + /** + * Sets the connection parameters + * + * @param aType The type of service + * @param aParameter Connection parameter of the service + * @param aValue Value of the parameter + * @return Symbian error code + */ + TInt SetConnectionParameter( TCCHSubserviceType aType, + TCchConnectionParameter aParameter, TInt aValue ); + + /** + * Sets the connection parameters + * + * @param aType The type of service + * @param aParameter Connection parameter of the service + * @param aValue Value of the parameter + * @return Symbian error code + */ + TInt SetConnectionParameter( TCCHSubserviceType aType, + TCchConnectionParameter aParameter, const TDesC& aValue ); + + /** + * Reserves the service for exclusive usage + * + * @param aType Type of service + * @return Symbian error code + */ + TInt Reserve( TCCHSubserviceType aType ); + + /** + * Frees the service of exclusive usage + * + * @param aType Type of service + * @return Symbian error code + */ + TInt Free( TCCHSubserviceType aType ); + + /** + * Is the service reserved + * + * @param aType Type of service + * @param aReserved True if the service is reserved + * @return Symbian error code + */ + TInt IsReserved( TCCHSubserviceType aType, TBool& aReserved ) const; + + /** + * Returns the service id + * + * @return The id of the service + */ + TInt ServiceId() const; + + /** + * @deprecated Do not use this anymore, change to AddObserver! + * + * Adds observer for listening service events + * + * @param aObserver Event observing class + */ + void SetObserver( MCchServiceStatusObserver& aObserver ); + + /** + * @deprecated Do not use this anymore, change to + * RemoveObserver method with paramater + * + * Removes the observer of service events + */ + void RemoveObserver( ); + + /** + * Adds observer for listening service events + * + * @param aObserver Event observing class + * @return KErrAlreadyExist Observer already added + * KErrNone Observer was added + */ + TInt AddObserver( MCchServiceStatusObserver& aObserver ); + + /** + * Removes the observer of service events + * + * @param aObserver Event observing class + * @return KErrNotFound Observer was not found + * KErrNone Observer was removed + */ + TInt RemoveObserver( MCchServiceStatusObserver& aObserver ); + + /** + * Checks if the type is supported + * + * @param aType Type of service + * @param aSupported True if the service type is supported + * @return Symbian error code + */ + TInt IsSupported( TCCHSubserviceType aType, TBool& aSupported ) const; + + private: + MCchServiceStatusObserver* iObserver; + + }; + + +#endif //MyCchService + + + +