contacts_plat/contacts_ui_api/inc/cntabstractview.h
author hgs
Thu, 05 Aug 2010 14:31:09 +0300
changeset 54 47627ab5d7a4
parent 27 de1630741fbe
child 61 d30183af6ca6
permissions -rw-r--r--
201031

/*
* Copyright (c) 2009 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:
*
*/
#ifndef CNTABSTRACTVIEW_H_
#define CNTABSTRACTVIEW_H_

#include <cntabstractviewmanager.h>
#include <cntviewparams.h>

class HbView;

class CntAbstractView
{
      
public:
    virtual ~CntAbstractView(){}
    
public:
    /**
     * View is activated after its added to main window and is
     * ready to be drawn.
     */
    virtual void activate( CntAbstractViewManager* aMgr, const CntViewParameters aArgs ) = 0;
    
    /**
     * View is deactivated just before its removed from
     * main window.
     */
    virtual void deactivate() = 0;
    
    /**
     * Default view is not deleted when its removed from
     * main window. So, if view is NOT default, its deleted
     * after its removed from main window.
     */
    virtual bool isDefault() const = 0;
    
    /**
     * return the view implementation.
     */
    virtual HbView* view() const = 0;
    
    /*!
     * return the view id
     */
    virtual int viewId() const = 0;
};
#endif /* CNTABSTRACTVIEW_H_ */