imstutils/imconversationview/imcvuiapp/inc/mimcvappui.h
branchRCL_3
changeset 22 3104fc151679
parent 21 2b7283837edb
child 23 9a48e301e94b
equal deleted inserted replaced
21:2b7283837edb 22:3104fc151679
     1 /*
       
     2 * Copyright (c) 2007-2008 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 AppUi class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MIMCVAPPUI_H
       
    21 #define MIMCVAPPUI_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class MIMCVAppResourceChangeObserver;
       
    28 class MIMCVAppLayoutChangeObserver;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 *  Interface for AppUi class
       
    34 *
       
    35 *  @lib imcvuiapp.exe
       
    36 */
       
    37 
       
    38 class MIMCVAppUi
       
    39     {
       
    40     public: // New functions
       
    41 
       
    42          virtual TDes& MbmFullPath()= 0;
       
    43 		
       
    44 		/**
       
    45 		 * Adds layout change observer
       
    46 		 * @param aObserver Pointer to observer
       
    47 		 */
       
    48         virtual void AddLayoutChangeObserver( MIMCVAppLayoutChangeObserver* aObserver ) = 0;
       
    49 
       
    50 		/**
       
    51 		 * Removes layout observer
       
    52 		 * @param aObserver Pointer to removed observer
       
    53 		 */
       
    54         virtual void RemoveLayoutChangeObserver( MIMCVAppLayoutChangeObserver* aObserver ) = 0;
       
    55         
       
    56 		/**
       
    57 		 * Adds resource observer
       
    58 		 * @param aObserver Pointer to observer
       
    59 		 */
       
    60        virtual void AddResourceChangeObserver( MIMCVAppResourceChangeObserver* aObserver ) = 0;
       
    61 
       
    62 		/**
       
    63 		 * Removes resource observer
       
    64 		 * @param aObserver Pointer to removed observer
       
    65 		 */
       
    66         virtual void RemoveResourceChangeObserver( MIMCVAppResourceChangeObserver* aObserver ) = 0;
       
    67    };
       
    68 
       
    69 #endif      // MIMCVAPPUI_H
       
    70 
       
    71 // End of File