phonebookui/Phonebook2/NamesListExtension/inc/CPbk2NlxOpenCcaCmd.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 16:23:35 +0300
branchRCL_3
changeset 9 0d28c1c5b6dd
parent 0 e686773b3f54
permissions -rw-r--r--
Revision: 201015 Kit: 201017

/*
* 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 CCA launcher command
*
*/


#ifndef CPBK2NLXOPENCCACMD_H
#define CPBK2NLXOPENCCACMD_H

// INCLUDES
#include <e32base.h>
#include <MPbk2Command.h>

// FORWARD DECLARATIONS
class MPbk2ContactUiControl;

//Cca
class MCCAParameter;
class MCCAConnection;

// CLASS DECLARATION

/**
 * Phonebook 2 open cca command object for invoking CCA application.
 */
class CPbk2NlxOpenCcaCmd : public CActive,
                           public MPbk2Command
    {
    public: // Construction and destruction

        /**
         * Creates a new instance of this class.
         *
         * @param Pbk2 Contact Ui control
         * @param a reference to a pointer to CCA client connection object
         * @return  A new instance of this class.
         */
        static CPbk2NlxOpenCcaCmd* NewL(
            MPbk2ContactUiControl& aUiControl, 
            MCCAConnection*& aCCAConnection );

        /**
         * Destructor.
         */
        ~CPbk2NlxOpenCcaCmd();

    public: //From MPbk2Command
        void ExecuteLD();
        void ResetUiControl( MPbk2ContactUiControl& aUiControl );
        void AddObserver( MPbk2CommandObserver& aObserver );

    private: //Construction
        CPbk2NlxOpenCcaCmd( 
            MPbk2ContactUiControl& aUiControl, 
            MCCAConnection*& aCCAConnection );
        void ConstructL();

    private: // Implementation
               
        void LaunchCcaL(); // Sync
		void IssueRequest(); 
    
    private: // From CActive
        void RunL();
        void DoCancel();
        TInt RunError(TInt aError);
    
    private: // Data structures
        /// Process states
        enum TProcessState
            {
            ELaunching,
            ERunning
            };
     
    private: // Data
        
        //Ref, not owned
        MPbk2CommandObserver* iCommandObserver;
        //Ref, not owned
        MPbk2ContactUiControl *iUiControl;
        /// Ref to ptr: for CCA, not owned       
        MCCAConnection*& iConnectionRef;
        // Own: The internal state of the command
        TProcessState iState;
    };

#endif // CPBK2NLXOPENCCACMD_H

// End of File