iaupdate/IAD/ui/inc/iaupdatecontainerobserver.h
branchRCL_3
changeset 25 7333d7932ef7
parent 24 5cc91383ab1e
child 26 8b7f4e561641
equal deleted inserted replaced
24:5cc91383ab1e 25:7333d7932ef7
     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:   MIAUpdateContainerObserver interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef IAUPDATECONTAINEROBSERVER_H
       
    21 #define IAUPDATECONTAINEROBSERVER_H
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 class MIAUpdateContainerObserver
       
    26 {
       
    27 public: // Observer API
       
    28     /**
       
    29     * Mark list item
       
    30     * @param aMark True ig marking, False if unmarking
       
    31     * @param aIndex  Index of the item
       
    32     * @return False value if marking/unmarking cancelled when dependencies/dependants not found
       
    33     */ 
       
    34     virtual TBool MarkListItemL( TBool aMark, TInt aIndex ) = 0;
       
    35 
       
    36     /**
       
    37     * Set text label to middle soft key
       
    38     * @param aVisible   True value when MSK text is visible
       
    39     * @param aSelected  True value when list item is selected( marked)
       
    40     */
       
    41     virtual void SetMiddleSKTextL( TBool aVisible, TBool aSelected ) = 0;
       
    42 };
       
    43 	
       
    44 #endif // IAUPDATECONTAINEROBSERVER_H