phonebookui/Phonebook2/ccapplication/ccacommlauncherplugin/src/ccappcommlaunchercustomlistbox.cpp
changeset 0 e686773b3f54
child 3 04ab22b956c2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/ccapplication/ccacommlauncherplugin/src/ccappcommlaunchercustomlistbox.cpp	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,84 @@
+/*
+* 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.cpp
+ *
+ *  Created on: 2009-10-30
+ *      Author: dev
+ */
+
+// System includes
+#include <barsread.h>
+#include <eikclbd.h>
+
+#include "ccappcommlaunchercustomlistbox.h"
+#include "ccappcommlaunchercustomlistboxitemdrawer.h"
+#include "ccappcommlaunchercustomlistboxdata.h"
+
+// --------------------------------------------------------------------------
+// CCCAppCommLauncherCustomListBox::CCCAppCommLauncherCustomListBox
+// --------------------------------------------------------------------------
+//
+inline CCCAppCommLauncherCustomListBox::CCCAppCommLauncherCustomListBox
+            () 
+    {
+    }
+
+// --------------------------------------------------------------------------
+// CCCAppCommLauncherCustomListBox::~CCCAppCommLauncherCustomListBox
+// --------------------------------------------------------------------------
+//
+CCCAppCommLauncherCustomListBox::~CCCAppCommLauncherCustomListBox()
+    {
+    
+    }
+
+// --------------------------------------------------------------------------
+// CCCAppCommLauncherCustomListBox::NewL
+// --------------------------------------------------------------------------
+//
+CCCAppCommLauncherCustomListBox* CCCAppCommLauncherCustomListBox::NewL()
+    {
+    CCCAppCommLauncherCustomListBox* self =
+        new ( ELeave ) CCCAppCommLauncherCustomListBox();
+    
+    return self;
+    }
+
+// --------------------------------------------------------------------------
+// CCCAppCommLauncherCustomListBox::CreateItemDrawerL
+// --------------------------------------------------------------------------
+//
+void CCCAppCommLauncherCustomListBox::CreateItemDrawerL()
+    {    
+    CCCAppCommLauncherCustomListBoxData* columnData = CCCAppCommLauncherCustomListBoxData::NewL();
+
+    CleanupStack::PushL( columnData );  
+    
+    iItemDrawer = new (ELeave) CCCAppCommLauncherCustomListBoxItemDrawer(
+            static_cast<MTextListBoxModel*>(Model()), iCoeEnv->NormalFont(), 
+            columnData);
+    CleanupStack::Pop( columnData );
+    
+    //Ownership has been transferred to iItemDrawer
+    iColumnData = columnData;
+    }
+void CCCAppCommLauncherCustomListBox::SizeChanged()
+	{
+	CAknDoubleLargeStyleListBox::SizeChanged();
+	}
+