phonebookui/Phonebook2/UIControls/inc/CPbk2ContactEditorUIAddressField.h
changeset 0 e686773b3f54
child 18 d4f567ce2e7c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/UIControls/inc/CPbk2ContactEditorUIAddressField.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 field.
+*
+*/
+
+#ifndef CPBK2CONTACTEDITORUIADDRESSFIELD_H_
+#define CPBK2CONTACTEDITORUIADDRESSFIELD_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(CPbk2ContactEditorUIAddressField) : 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 CPbk2ContactEditorUIAddressField* NewL(
+    			MPbk2UIField* aField,
+		        MPbk2ContactEditorUiBuilder& aUiBuilder,
+		        CPbk2IconInfoContainer& aIconInfoContainer,
+		        TInt aCustomPosition,
+                const TDesC& aCustomText);
+    	 
+    public:
+        /**
+         * Destructor.
+         */
+        virtual ~CPbk2ContactEditorUIAddressField();
+
+        CEikEdwin* Control();
+        void SetControlTextL( const TDesC& aText );
+        void ActivateL();
+        TInt ControlId();
+        TBool HandleCustomFieldCommandL(TInt aCommand);
+  
+
+    private:
+    	CPbk2ContactEditorUIAddressField(
+    	    			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 /*CPBK2CONTACTEDITORUIADDRESSFIELD_H_*/
+
+// End of File
\ No newline at end of file