ImagePrint/ImagePrintUI/imageprinteng/inc/mbrowserpreviewobserver.h
branchRCL_3
changeset 21 d59c248c9d36
parent 0 d11fb78c4374
equal deleted inserted replaced
20:159fc2f68139 21:d59c248c9d36
       
     1 /*
       
     2 * Copyright (c) 2004-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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MBROWSERPREVIEWOBSERVER_H
       
    20 #define MBROWSERPREVIEWOBSERVER_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 /**
       
    25  *
       
    26  *  Observer class that will get notification message when the print preview
       
    27  *  is ready
       
    28  *
       
    29  */
       
    30 class MBrowserPreviewObserver
       
    31     {
       
    32     public:
       
    33         
       
    34         /**
       
    35          *  Gets called when the print server has finished the generation
       
    36          *  of preview bitmap
       
    37          *
       
    38          *  @param aHandle      Handle to the FBS bitmap
       
    39          */
       
    40         virtual void PreviewBitmapReady( TInt aHandle ) = 0;
       
    41 
       
    42         virtual TPoint DefaultThumbnailPosition() = 0;
       
    43 
       
    44         virtual TSize ThumbnailSize() = 0;
       
    45         
       
    46         virtual TInt CursorStep() = 0;
       
    47         
       
    48         virtual TSize BrowserPaneSize() = 0;       
       
    49 
       
    50     };
       
    51 
       
    52 #endif  //  MBROWSERPREVIEWOBSERVER_H
       
    53 
       
    54 //  End of File