phonebookui/Phonebook2/ccapplication/ccacommlauncherplugin/inc/ccappcommlaunchercustomlistbox.h
changeset 0 e686773b3f54
child 3 04ab22b956c2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/ccapplication/ccacommlauncherplugin/inc/ccappcommlaunchercustomlistbox.h	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,69 @@
+/*
+* 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: 
+*
+*/
+/*
+ * ccappcommlaunchercustomlistbox.h
+ *
+ *  Created on: 2009-10-30
+ *      Author: dev
+ */
+
+#ifndef CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_
+#define CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_
+
+//  INCLUDES
+#include <aknlists.h>
+
+// FORWARD DECLARATIONS
+class CCCAppCommLauncherCustomListBoxData;
+
+
+NONSHARABLE_CLASS(CCCAppCommLauncherCustomListBox) :
+            public CAknDoubleLargeStyleListBox
+    {                   
+    public: // Constructors and destructor
+
+        /**
+         * Creates a new instance of this class.
+         */
+        static CCCAppCommLauncherCustomListBox* NewL();
+
+        /**
+         * Destructor.
+         */
+        ~CCCAppCommLauncherCustomListBox();
+        
+    public:
+    	
+        /** CreateItemDrawerL()
+        *
+        * Chooses which itemdrawer to use.
+        */
+        void CreateItemDrawerL(); 
+        
+        void SizeChanged();
+        
+    private: // Implementation
+    	
+    	CCCAppCommLauncherCustomListBox();
+
+    private: // Data
+        /// Doesnt Own - Ownership Transferred to CPbk2ContactViewCustomListBoxItemDrawer
+    	CCCAppCommLauncherCustomListBoxData* iColumnData;
+    };
+
+
+#endif /* CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_ */