ipsservices/ipssossettings/src/ipssetuiitemvalue.cpp
changeset 0 8466d47a6819
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ipsservices/ipssossettings/src/ipssetuiitemvalue.cpp	Thu Dec 17 08:39:21 2009 +0200
@@ -0,0 +1,114 @@
+/*
+* Copyright (c) 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: This file implements class CIpsSetUiItemValue.
+*
+*/
+
+
+
+#include "emailtrace.h"
+#include "ipssetuiitemvalue.h"
+#include "ipssetutilsconsts.h"
+#include "ipssetutilsexception.h"
+
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemValue::CIpsSetUiItemValue()
+// ----------------------------------------------------------------------------
+CIpsSetUiItemValue::CIpsSetUiItemValue()
+    :
+    iUserValue( KErrNotFound ),
+    iItemMaxLength( KIpsSetUiMaxSettingsTextLength ),
+    iItemSettingText( 0 )
+    {
+    FUNC_LOG;
+    }
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemValue::ConstructL()
+// ----------------------------------------------------------------------------
+//
+void CIpsSetUiItemValue::ConstructL()
+    {
+    FUNC_LOG;
+    CIpsSetUiItem::ConstructL();
+
+    iItemSettingText = new ( ELeave ) TIpsSetUtilsTextPlain();
+    }
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemValue::CIpsSetUiItemValue()
+// ----------------------------------------------------------------------------
+//
+CIpsSetUiItemValue::~CIpsSetUiItemValue()
+    {
+    FUNC_LOG;
+    delete iItemSettingText;
+    }
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemValue::NewL()
+// ----------------------------------------------------------------------------
+//
+CIpsSetUiItemValue* CIpsSetUiItemValue::NewL()
+    {
+    FUNC_LOG;
+    CIpsSetUiItemValue* self = NewLC();
+    CleanupStack::Pop( self );
+
+    return self;
+    }
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemsEditText::NewLC()
+// ----------------------------------------------------------------------------
+//
+CIpsSetUiItemValue* CIpsSetUiItemValue::NewLC()
+    {
+    FUNC_LOG;
+    CIpsSetUiItemValue* self =
+        new ( ELeave ) CIpsSetUiItemValue();
+    CleanupStack::PushL( self );
+    self->ConstructL();
+
+    return self;
+    }
+
+// ----------------------------------------------------------------------------
+// CIpsSetUiItemValue::operator=()
+// ----------------------------------------------------------------------------
+//
+CIpsSetUiItemValue& CIpsSetUiItemValue::operator=(
+    const CIpsSetUiItemValue& aBaseItem )
+    {
+    FUNC_LOG;
+    IPS_ASSERT_DEBUG( iItemLabel, ENullPointer, EItemText );
+    IPS_ASSERT_DEBUG( aBaseItem.iItemLabel, ENullPointerInParam, EItemText );
+    IPS_ASSERT_DEBUG( iUserText, ENullPointer, EItemText );
+    IPS_ASSERT_DEBUG( aBaseItem.iUserText, ENullPointerInParam, EItemText );
+
+    iItemFlags = aBaseItem.iItemFlags;
+    iItemType = aBaseItem.iItemType;
+    iItemLabel->Copy( *aBaseItem.iItemLabel );
+    iItemId = aBaseItem.iItemId;
+    iItemResourceId = aBaseItem.iItemResourceId;
+    iItemMaxLength = aBaseItem.iItemMaxLength;
+    iItemSettingText->Copy( *aBaseItem.iItemSettingText );
+    iUserValue = aBaseItem.Value();
+
+    return *this;
+    }
+
+// End of file
+