graphicsuis_plat/svg_application_observer_utility_api/inc/SVGTUISaveListener.h
branchRCL_3
changeset 20 5fd161fa28b6
parent 0 632761c941a7
equal deleted inserted replaced
17:e52958d06c29 20:5fd161fa28b6
       
     1 /*
       
     2 * Copyright (c) 2004, 2005 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:  Callback class for UI save methods 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SVGTUISAVELISTENER_H
       
    20 #define SVGTUISAVELISTENER_H
       
    21         
       
    22 // CLASS DECLARATION
       
    23 
       
    24 /**
       
    25 *  MSVGTUISaveListener 
       
    26 *  Callback class for UI save methods. File Manager will
       
    27 *  use this callback to indicate the save status to the
       
    28 *  SVGT Dialog. 
       
    29 *
       
    30 *  @lib SVGTUIControl.lib
       
    31 *  @since 3.0
       
    32 */
       
    33 NONSHARABLE_CLASS(MSVGTUISaveListener) 
       
    34     {
       
    35 
       
    36     public: // New functions
       
    37         
       
    38          /**
       
    39         * Called when buffering or saving position is changed
       
    40         * @since 3.0
       
    41         * @param  aPosition, New buffering/saving position (0-100)
       
    42         * @return void
       
    43         */
       
    44         virtual void SVGTPositionChanged( TInt aPosition ) = 0;
       
    45  
       
    46         /**
       
    47         * Called when saving is finished.
       
    48         * @since 3.0
       
    49         * @param  aError, KErrNone or one of the system wide error codes.
       
    50         * @return void
       
    51         */
       
    52         virtual void SVGTSavingDoneL( TInt aError ) = 0;
       
    53     
       
    54     };
       
    55 
       
    56 #endif      // SVGTUISAVELISTENER_H  
       
    57             
       
    58 // End of File