imstutils/imconversationview/imcvuiapp/inc/mimcvtabobserver.h
changeset 15 81eeb8c83ce5
parent 0 5e5d6b214f4f
equal deleted inserted replaced
0:5e5d6b214f4f 15:81eeb8c83ce5
     1 /*
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Interface for Tab observer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MIMCVTabObserver_H
       
    20 #define MIMCVTabObserver_H
       
    21 
       
    22 
       
    23 /**
       
    24  *  Tab observer interface to the UI. 
       
    25  *  @lib imcvuiapp.exe
       
    26  *  @since 5.0
       
    27  */
       
    28  
       
    29 class MIMCVTabObserver
       
    30 	{
       
    31 	
       
    32 
       
    33 	public:
       
    34 		
       
    35 		/** Helper Function
       
    36 		 * This function is to be called when switching between tabs
       
    37 		 * @param aChatId - Switch to this chat item
       
    38 		 * @param aTabIndex - Index of the tab
       
    39 		 */	
       
    40 		virtual void SwitchTabL(TInt aActiveServiceId , const TDesC& aChatId, const TInt aTabIndex) = 0;
       
    41 
       
    42 		/**
       
    43 		 * Destructor
       
    44 		 */
       
    45 		virtual ~MIMCVTabObserver(){}
       
    46 
       
    47 	};
       
    48 
       
    49 #endif //MIMCVTabObserver_H