idlehomescreen/sapiwrapper/hspswrapper/src/itemmap.cpp
changeset 0 f72a12da539e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/idlehomescreen/sapiwrapper/hspswrapper/src/itemmap.cpp	Thu Dec 17 08:40:49 2009 +0200
@@ -0,0 +1,147 @@
+/*
+* Copyright (c) 2008 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:  Item id, name and properties
+*
+*/
+
+
+
+#include "itemmap.h"
+#include "propertymap.h"
+
+namespace hspswrapper{
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+CItemMap::CItemMap()
+    {
+    }
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+void CItemMap::ConstructL()
+    {
+    }
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap* CItemMap::NewL()
+    {
+    CItemMap* self = CItemMap::NewLC();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap* CItemMap::NewLC()
+    {
+    CItemMap* self = new( ELeave ) CItemMap;
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    return self;
+    }
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap::~CItemMap()
+    {
+    delete iItemId;
+    delete iItemName;
+    iProperties.ResetAndDestroy();
+    }
+
+
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap& CItemMap::SetItemIdL(const TDesC8& aItemId )
+    {
+    delete iItemId;
+    iItemId = NULL;
+    iItemId = aItemId.AllocL();
+    return *this;
+    }
+    
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C const TDesC8& CItemMap::ItemId()const
+    {
+    if(iItemId)
+        {
+        return *iItemId;
+        }
+    else
+        {
+        return KNullDesC8;
+        }
+    
+    }
+    
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap& CItemMap::SetItemNameL(const TDesC8& aItemName )
+    {
+    delete iItemName;
+    iItemName = NULL;
+    iItemName = aItemName.AllocL();
+    return *this;
+    }
+    
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C const TDesC8& CItemMap::ItemName()const
+    {
+    if(iItemName)
+       {
+       return *iItemName;
+       }
+   else
+       {
+       return KNullDesC8;
+       }
+    }
+    
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C CItemMap& CItemMap::AddPropertyMapL(CPropertyMap* aPropertyMap )
+    {
+    iProperties.AppendL(aPropertyMap);
+    return *this;
+    }
+    
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+EXPORT_C RPointerArray<CPropertyMap>& CItemMap::Properties()const
+    {
+    return iProperties;
+    }
+}
+