epoc32/include/app/mpbkfetchcallbacks.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h) This is the epoc32/include tree with the "platform" subtrees removed, and all but a selected few mbg and rsg files removed.

/*
* Copyright (c) 2002 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: 
*     Fetch dialog MPbkFetchKeyCallback for Phonebook.
*
*/


#ifndef __MPbkFetchCallbacks_H__
#define __MPbkFetchCallbacks_H__

//  INCLUDES
#include <e32def.h>
#include <cntdef.h> // TContactItemId
#include <w32std.h> // TKeyEvent, TEventCode

//  FORWARD DECLARATIONS
class CContactIdArray;

// CLASS DECLARATION

/**
 * Phonebook fetch dialog key event callback. 
 */
class MPbkFetchKeyCallback
    {
    public:
        /// Callback result code
        enum TResult
            {
            /// Ignores the key event and lets the fetch dialog process it
            EKeyWasNotConsumed,
            /// Hides the key event from the fetch dialog
            EKeyWasConsumed,
            /// Close the fetch dialog as if it was accepted
            EAccept,
            /// Close the fetch dialog as if it was canceled
            ECancel
            };

        /**
         * Callback function for key presses in fetch.
         * @param aKeyEvent The key event.
         * @param aType The type of event. 
         * @return  Callback result.
         */
        virtual TResult PbkFetchKeyCallbackL
            (const TKeyEvent& aKeyEvent, TEventCode aType)=0;

    protected:
        /**
         * Protected destructor. Derived class instances are not
         * destroyed through this interface.
         */
        virtual ~MPbkFetchKeyCallback() { }
    };


/**
 * Accept callback interface for fetch dialogs.
 */
class MPbkFetchDlgAccept
    {
    public:
        /**
         * Result code whether fetch should be accepted, rejected or canceled.
         */
        enum TPbkFetchAccepted
            {
            /// Fetch result is accepted and the fetch dialog is closed
            KFetchYes = 0,
            /// Fetch result is rejected and the fetch dialog remains open
            KFetchNo,
            /// Fetch result is rejected and the fetch dialog is canceled
            KFetchCanceled
            };

        /**
         * Called by a fetch dialog when user makes a selection.
         *
         * @param aId  Focused contact item
         * @param aMarkedEntries  Selected contact items array
         * @return @see TPbkFetchAccepted
         * @see TPbkFetchAccepted
         */
        virtual TPbkFetchAccepted PbkFetchAcceptedL
            (TContactItemId aId, CContactIdArray* aMarkedEntries) = 0;

    protected:
        /**
         * Protected destructor. Derived class instances are not destroyed 
         * through this interface.
         */
        virtual ~MPbkFetchDlgAccept() { }
    };

#endif // __MPbkFetchCallbacks_H__

// End of File