phonebookui/Phonebook2/UIControls/inc/CPbk2NameOrderSettingItem.h
branchRCL_3
changeset 20 f4a778e096c2
parent 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/UIControls/inc/CPbk2NameOrderSettingItem.h	Wed Sep 01 12:29:52 2010 +0100
@@ -0,0 +1,69 @@
+/*
+* Copyright (c) 2002-2007 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: 
+*     Name Order settings item for Phonebook 2.
+*
+*/
+
+
+#ifndef CPBK2NAMEORDERSETTINGITEM_H
+#define CPBK2NAMEORDERSETTINGITEM_H
+
+// INCLUDES
+#include <aknsettingitemlist.h>
+
+// FORWARD DECLARATIONS
+class CPbk2SortOrderManager;
+
+// CLASS DECLARATION
+
+/**
+ * Name Order settings item.
+ */
+NONSHARABLE_CLASS(CPbk2NameOrderSettingItem) : 
+		public CAknEnumeratedTextPopupSettingItem
+    {
+    public:  // interface
+		/**
+         * Constructor.
+		 * @see CAknEnumeratedTextPopupSettingItem
+         */
+        CPbk2NameOrderSettingItem(
+                CPbk2SortOrderManager& aSortOrderManager, 
+                TInt aResourceId, 
+                TInt& aValue);
+
+        /**
+		 * Returns the value of the setting.
+		 *
+		 * @return selected value
+		 */
+		 TInt Value();
+		 
+    public: // From CAknEnumeratedTextPopupSettingItem
+        void CompleteConstructionL();
+        void StoreL();
+    
+    private: // implementation
+        TPtrC Separator();
+        
+        
+    private: // Data
+        /// Ref: Sort order manager
+        CPbk2SortOrderManager& iSortOrderManager;
+    };
+
+#endif // CPBK2NAMEORDERSETTINGITEM_H
+
+// End of File