--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/UIControls/inc/CPbk2ContactEditorUIAddressHomeField.h Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,84 @@
+/*
+* Copyright (c) 2005-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: Phonebook 2 contact editor dialog UI address home field.
+*
+*/
+
+#ifndef CPBK2CONTACTEDITORUIADDRESSHOMEFIELD_H_
+#define CPBK2CONTACTEDITORUIADDRESSHOMEFIELD_H_
+
+// INCLUDES
+#include <w32std.h>
+#include <e32base.h>
+#include <CPbk2ContactEditorUIFieldBase.h>
+
+// FORWARD DECLARATIONS
+class CEikCaptionedControl;
+class CPbk2ContactEditorReadonlyField;
+// CLASS DECLARATION
+
+/**
+ * Phonebook 2 contact editor UI base field.
+ */
+NONSHARABLE_CLASS(CPbk2ContactEditorUIAddressHomeField) : public CPbk2ContactEditorUIFieldBase
+ {
+ public:
+
+ /**
+ * C++ constructor.
+ *
+ * @param aUiBuilder UI builder for adding
+ * the field into dialog.
+ * @param aIconInfoContainer An icon container for setting
+ * field icon.
+ */
+ static CPbk2ContactEditorUIAddressHomeField* NewL(
+ MPbk2UIField* aField,
+ MPbk2ContactEditorUiBuilder& aUiBuilder,
+ CPbk2IconInfoContainer& aIconInfoContainer,
+ TInt aCustomPosition,
+ const TDesC& aCustomText);
+
+ public:
+ /**
+ * Destructor.
+ */
+ virtual ~CPbk2ContactEditorUIAddressHomeField();
+
+ CEikEdwin* Control();
+ void SetControlTextL( const TDesC& aText );
+ void ActivateL();
+ TInt ControlId();
+ TBool HandleCustomFieldCommandL(TInt aCommand);
+
+
+ private:
+ CPbk2ContactEditorUIAddressHomeField(
+ MPbk2UIField* aField,
+ MPbk2ContactEditorUiBuilder& aUiBuilder,
+ CPbk2IconInfoContainer& aIconInfoContainer,
+ TInt aCustomPosition );
+ void ConstructL(const TDesC& aCustomText);
+
+ private:
+ /// Ref: Editor control
+ CPbk2ContactEditorReadonlyField* iControl;
+ /// Ref: Fields captioned control
+ CEikCaptionedControl* iCaptionedCtrl;
+ };
+
+
+#endif /*CPBK2CONTACTEDITORUIADDRESSHOMEFIELD_H_*/
+
+// End of File
\ No newline at end of file