emailuis/uicomponents/inc/fstextureloaderobserver.h
branchRCL_3
changeset 25 3533d4323edc
parent 0 8466d47a6819
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     1 /*
       
     2 * Copyright (c) 2007-2007 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: This file defines class MFsTextureLoaderObserver.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __FSTEXTURELOADEROBSERVER_H__
       
    20 #define __FSTEXTURELOADEROBSERVER_H__
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CFsTexture;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  MFsTextureLoaderObserver
       
    32 *  Texture loader observer
       
    33 */
       
    34 
       
    35 class MFsTextureLoaderObserver
       
    36     {
       
    37     public: // New methods
       
    38         /**
       
    39          * TimerExpiredL
       
    40          * @param aTexture Texture reference
       
    41          */
       
    42         virtual void TimerExpiredL( CFsTexture& aTexture ) = 0;
       
    43 
       
    44         /**
       
    45          * Loader timeout
       
    46          * @param aTimeOut Timeout in microseconds as return value
       
    47          */
       
    48         virtual void DefaultTimeOut( TTimeIntervalMicroSeconds32& aTimeOut ) = 0;
       
    49 
       
    50         /**
       
    51          * Texture position updated
       
    52          * @param aTexture Texture reference
       
    53          */
       
    54         virtual void PosUpdated( CFsTexture& aTexture ) = 0;
       
    55 
       
    56         /**
       
    57          * Texture destroyed
       
    58          * @param aTexture Texture reference
       
    59          */
       
    60         virtual void Deleted( CFsTexture& aTexture ) = 0;
       
    61 
       
    62         /**
       
    63          * Flags updated
       
    64          * @param aTexture Texture reference
       
    65          */
       
    66         virtual void FlagsUpdated( CFsTexture& aTexture ) = 0;
       
    67 
       
    68         /**
       
    69          * Size updated
       
    70          * @param aTexture Texture reference
       
    71          */
       
    72         virtual void SizeUpdated( CFsTexture& aTexture ) = 0;
       
    73     };
       
    74 
       
    75 #endif // __FSTEXTURELOADEROBSERVER_H__
       
    76 
       
    77 // End of File