phonebookengines/cntsortplugin/src/csortkeyarray.h
changeset 49 74b30151afd6
parent 25 76a2435edfd4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookengines/cntsortplugin/src/csortkeyarray.h	Wed Jul 21 11:09:07 2010 +0300
@@ -0,0 +1,83 @@
+/*
+* Copyright (c) 2002 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: 
+*     Sort key array for Contact model ECOM sort plugin.
+*
+*/
+
+
+#ifndef __CSortKeyArray_H__
+#define __CSortKeyArray_H__
+
+// INCLUDES
+#include <SortUtil.h>
+
+// CLASS DESCRIPTION
+/**
+ * Sort key array for Contact model ECOM sort plugin.
+ */
+class CSortKeyArray : public CBase, 
+                      public MSortKeyArray
+    {
+    public:
+        /**
+         * Static constructor.
+         * @return Newly created instance of this class.
+         */
+        static CSortKeyArray* NewL();
+
+        /**
+         * Standard c++ destructor.
+         */
+        ~CSortKeyArray();
+
+    public: // Interface
+        /**
+         * Appends new sortkey to the array.
+         * @param aKey New sortkey to append.
+         */
+        void AppendL(const TSortKey& aKey);
+
+        /**
+         * Resets the sortkey array.
+         */
+        void Reset();
+
+        /**
+         * Sets the text of the key in specified index.
+         * @param aText The text to set to key in index.
+         * @param aIndex The index where the key to be modified is.
+         */
+        void SetText(const TDesC& aText, TInt aIndex);
+
+    public:  // from MSortKeyArray
+        TInt SortKeyCount() const;
+        TSortKey SortKeyAt(TInt aIndex) const;
+        
+    private:
+        /**
+         * C++ constructor.
+         */
+        CSortKeyArray();
+
+    private:  // Data
+        /// Own: Array of key types.
+        RArray<TSortKeyType> iKeyTypes;
+        /// Own: Array of texts that correspond to types in array iKeyTypes.
+        RArray<TPtrC> iTexts;
+    };
+
+#endif // __CSortKeyArray_H__
+
+// End of File