phonebookengines/VirtualPhonebook/VPbkCntModel/inc/MParentViewForFiltering.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 15 Jul 2010 18:22:55 +0300
branchRCL_3
changeset 57 2666d9724c76
parent 0 e686773b3f54
permissions -rw-r--r--
Revision: 201025 Kit: 2010127

/*
* Copyright (c) 2006-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:  An internal interface for views that support find text
*                based view filtering
*
*/


#ifndef M_MPARENTVIEWFORFILTERING_H
#define M_MPARENTVIEWFORFILTERING_H

#include <MVPbkContactViewObserver.h>
#include <MVPbkContactView.h>

namespace VPbkCntModel {

class MParentViewForFiltering;

/**
 *  An internal interface for observers that are filtering another view.
 *  The idea of the separate interface is to send events internally before
 *  any external observer gets the event.
 *
 */
NONSHARABLE_CLASS( MFilteredViewSupportObserver ) : public MVPbkContactViewObserver
    {
public:
    
    /**
     * Called when aView is ready for filtering. This is called before the
     * ContactViewReady.
     * Implementation of this function is NOT allowed to call 
     * MVPbkContactViewObserver functions to any external observer
     * but only update its own internal state. Except ContactViewError.
     *
     * @param aView the view that has been updated and is ready for filtering.
     */
    virtual void ContactViewReadyForFiltering( 
            MParentViewForFiltering& aView ) = 0;
    
    /**
     * Called when aView is unavailable for filtering. This is called before the
     * ContactViewUnavailable.
     * Implementation of this function is NOT allowed to call 
     * MVPbkContactViewObserver functions to any external observer
     * but only update its own internal state. Except ContactViewError.
     *
     * @param aView the view that has been updated and is ready for filtering.
     */
    virtual void ContactViewUnavailableForFiltering( 
            MParentViewForFiltering& aView ) = 0;

protected:
    ~MFilteredViewSupportObserver() {}
    };

/**
 *  An internal interface for views that support filtering.
 *  Enables internal event handling prior to external observers.
 */
NONSHARABLE_CLASS( MParentViewForFiltering ) : public MVPbkContactView
    {
public:

    /**
     * A special version of AddObserver that overwrites the 
     * MVPbkContactViewBase::AddObserverL. 
     * Both must not be used for same user. 
     *
     * @param aObserver a new observer that needs view ready event before any
     *                  external MVPbkContactViewObserver observer.
     */
    virtual void AddFilteringObserverL( 
            MFilteredViewSupportObserver& aObserver ) = 0;

    /** 
     * Removes aObserver. MVPbkContactViewObserver::RemoveObserver is not
     *                    needed to call.
     *
     * @param aObserver the observer that doesn't need view events anymore.
     */
    virtual void RemoveFilteringObserver( 
            MFilteredViewSupportObserver& aObserver ) = 0;

protected:
    ~MParentViewForFiltering() {}
    };

} // namespace VPbkCntModel

#endif // M_MPARENTVIEWFORFILTERING_H