diff -r 000000000000 -r c53acadfccc6 clfwrapper/ClientSrc/CCLFSortingStyleimpl.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clfwrapper/ClientSrc/CCLFSortingStyleimpl.h Mon Jan 18 20:34:07 2010 +0200 @@ -0,0 +1,132 @@ +/* +* Copyright (c) 2002-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: +* +*/ + + + +#ifndef CCLFSORTINGSTYLEIMPL_H +#define CCLFSORTINGSTYLEIMPL_H + +// INCLUDES +#include +#include + +class TResourceReader; + +// CLASS DECLARATION + +/** +* This class implements MCLFSortingStyle interface. +* +* @lib ContentListingFramework.lib +* @since S60 3.0 +*/ +NONSHARABLE_CLASS( CCLFSortingStyleImpl ) : public CBase, + public MCLFSortingStyle + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CCLFSortingStyleImpl* NewLC(); + + /** + * Two-phased constructor. + */ + static CCLFSortingStyleImpl* NewLC( TResourceReader& aResource ); + + /** + * Destructor. + */ + virtual ~CCLFSortingStyleImpl(); + + protected: // Functions from base classes + + /** + * From MCLFSortingStyle + */ + void ResetL(); + + /** + * From MCLFSortingStyle + */ + void AddFieldL( TCLFFieldId aFieldId ); + + /** + * From MCLFSortingStyle + */ + void GetFieldsL( RArray& aArray ) const; + + /** + * From MCLFSortingStyle + */ + void SetOrdering( TCLFSortingStyleOrdering aOrdering ); + + /** + * From MCLFSortingStyle + */ + TCLFSortingStyleOrdering Ordering() const; + + /** + * From MCLFSortingStyle + */ + void SetSortingDataType( TCLFItemDataType aDataType ); + + /** + * From MCLFSortingStyle + */ + TCLFItemDataType SortingDataType() const; + + /** + * From MCLFSortingStyle + */ + void SetUndefinedItemPosition( + TCLFUndefinedItemPosition aUndefinedItemPosition ); + + /** + * From MCLFSortingStyle + */ + TCLFUndefinedItemPosition UndefinedItemPosition() const; + + + private: + + /** + * C++ default constructor. + */ + CCLFSortingStyleImpl(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL( TResourceReader& aResource ); + + private: // Data + // Own: field ID array + RArray iFieldIDArray; + // Own: data type + TCLFItemDataType iDataType; + // Own: sorting ordering + TCLFSortingStyleOrdering iOrdering; + // Own: + TCLFUndefinedItemPosition iUndefinedItemPosition; + + }; + +#endif // CCLFSORTINGSTYLEIMPL_H + +// End of File