videoplayback/hbvideoplaybackview/tsrc/testvideodisplayhandler/stub/inc/alfcompositionutility.h
changeset 44 518105d52e45
parent 42 17f382c040b1
child 49 824471cb468a
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
     1 /*
       
     2 * Copyright (c) 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:  Stub declaration for CAlfCompositionSource
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 1 %
       
    19 
       
    20 
       
    21 
       
    22 // This file defines the API for .dll
       
    23 
       
    24 #ifndef __ALFCOMPOSITIONUTILITY_H__
       
    25 #define __ALFCOMPOSITIONUTILITY_H__
       
    26 
       
    27 //  Include Files
       
    28 
       
    29 #include <e32base.h>	// CBase
       
    30 #include <e32std.h>	 // TBuf
       
    31 
       
    32 
       
    33 class RWindow;
       
    34 
       
    35 
       
    36 //  Class Definitions
       
    37 
       
    38 class CAlfCompositionSource : public CBase
       
    39     {
       
    40 
       
    41 public:
       
    42 
       
    43     static CAlfCompositionSource* NewL( RWindow& aClientWindow );
       
    44     
       
    45     ~CAlfCompositionSource();
       
    46 
       
    47     /** 
       
    48     * Enables / disables alpha on composition target 
       
    49     **/
       
    50     TInt EnableAlpha( TBool aEnable = ETrue );
       
    51     
       
    52     };
       
    53 
       
    54 #endif // #define __ALFCOMPOSITIONUTILITY_H__
       
    55 
       
    56 // EOF