vtprotocolplugins/DisplaySink/inc/TDisplaySinkParamsDP.h
changeset 0 ed9695c8bcbe
child 3 b1602a5ab0a3
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     1 /*
       
     2 * Copyright (c) 2004 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:  DisplaySink subsystem.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TDISPLAYSINKPARAMSDP_H
       
    20 #define TDISPLAYSINKPARAMSDP_H
       
    21 
       
    22 // INCLUDE FILES
       
    23 
       
    24 #include "mdisplaysink.h"
       
    25 #include <posting_surface.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  Displaysink initialization parameters for DisplaySink's Display Posting
       
    31 *  implementation.
       
    32 *
       
    33 *  @lib displaysink.lib
       
    34 *  @since Series 60 3.1
       
    35 */
       
    36 NONSHARABLE_CLASS( TDisplaySinkParamsDP ) : public TDisplaySinkParams
       
    37     {
       
    38 public:
       
    39     // Pointer's pointer to first posting buffer  that is filled by the
       
    40     // sink.
       
    41     CPostingSurface::TPostingBuff** iPostingBuffer1;
       
    42 
       
    43     // Pointer's pointer to second posting buffer  that is filled by the
       
    44     // sink.
       
    45     CPostingSurface::TPostingBuff** iPostingBuffer2;
       
    46 
       
    47     // Posting format to be used
       
    48     CPostingSurface::TPostingFormat iPostingFormat;
       
    49 
       
    50     // Frame size in pixels
       
    51     TSize iFrameSize;
       
    52     };
       
    53 
       
    54 #endif // TDISPLAYSINKPARAMSDP_H
       
    55 
       
    56 // End of File