phonebookui/Phonebook2/CommandsExtension/inc/CPbk2CopyAddressToClipboardCmd.h
author andy simpson <andrews@symbian.org>
Thu, 02 Sep 2010 15:35:50 +0100
branchRCL_3
changeset 64 c1e8ba0c2b16
parent 0 e686773b3f54
permissions -rw-r--r--
Merge after bad RCL_3 drop reverted

/*
* 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:  A command for clipboard copy
*
*/


#ifndef CPBK2COPYADDRESSTOCLIPBOARDCMD_H
#define CPBK2COPYADDRESSTOCLIPBOARDCMD_H

// INCLUDES
#include <e32base.h>

#include <MPbk2Command.h>
#include <MVPbkSingleContactOperationObserver.h>

// FORWARD DECLARATIONS
class MPbk2ContactUiControl;
class MPbk2CommandObserver;
class MVPbkStoreContactField;
class CPbk2ApplicationServices;

// CLASS DECLARATIONS

NONSHARABLE_CLASS(CPbk2CopyAddressToClipboardCmd) :
        public CBase,
        public MPbk2Command,
        private MVPbkSingleContactOperationObserver
    {
    public: 
        static CPbk2CopyAddressToClipboardCmd* NewL(MPbk2ContactUiControl& aUiControl);
        
        ~CPbk2CopyAddressToClipboardCmd();
        
    public:  // From MPbk2Command
        void ExecuteLD();
        void AddObserver(MPbk2CommandObserver& aObserver);
        void ResetUiControl(MPbk2ContactUiControl& aUiControl);

    private: // From MVPbkSingleContactOperationObserver
        void VPbkSingleContactOperationComplete(
                MVPbkContactOperationBase& aOperation,
                MVPbkStoreContact* aContact);
        void VPbkSingleContactOperationFailed(
                MVPbkContactOperationBase& aOperation, 
                TInt aError);

    private: // implementation
        CPbk2CopyAddressToClipboardCmd(
            MPbk2ContactUiControl& aUiControl);
        void ConstructL();
        void CopyAddressToClipboardL();
        MVPbkStoreContactField* FocusedFieldLC
            ( MVPbkStoreContact& aStoreContact );
                
    private: // Data
        /// Ref: ui control
        MPbk2ContactUiControl* iUiControl;
        /// Own: retrieve operation
        MVPbkContactOperationBase* iRetrieveOperation;   
        /// Ref: command observer
        MPbk2CommandObserver* iObserver;     
        /// Own: store contact
        MVPbkStoreContact* iStoreContact;
        /// Own: Application Services pointer
        CPbk2ApplicationServices* iAppServices;
    };

#endif // CPBK2COPYADDRESSTOCLIPBOARDCMD_H   
// End of file