vtuis/lcvtplugin/inc/control/clcvtremotevideoplayer.h
branchRCL_3
changeset 25 779871d1e4f4
parent 24 f15ac8e65a02
child 26 590f6f022902
equal deleted inserted replaced
24:f15ac8e65a02 25:779871d1e4f4
     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:  LiveComm Videotelephony's Remte Video Player
       
    15 *
       
    16 */
       
    17 #ifndef LCVTREMOTEVIDEOPLAYER_H
       
    18 #define LCVTREMOTEVIDEOPLAYER_H
       
    19 
       
    20 #include <e32base.h>
       
    21 #include "clcvtvideoplayerbase.h"
       
    22 
       
    23 class CLcVtRemoteVideoPlayer : public CLcVtVideoPlayerBase
       
    24     {
       
    25 public: // Constructors and destructor
       
    26     
       
    27     static CLcVtRemoteVideoPlayer* NewL( 
       
    28             CLcVtSession* avtSession,
       
    29             MLcAudioControl& aLcAudioControl );
       
    30 
       
    31     
       
    32     ~CLcVtRemoteVideoPlayer();
       
    33  
       
    34     
       
    35 public: // from CLcVtVideoPlayerBase
       
    36     
       
    37     TLcVideoPlayerState LcVideoPlayerState() const;
       
    38     
       
    39     TBool LcIsPlayingL();    
       
    40 
       
    41     void SetLcWindowRectL( TRect aRect );
       
    42     
       
    43     
       
    44 private: // Constructors
       
    45     
       
    46     CLcVtRemoteVideoPlayer( 
       
    47             CLcVtSession* avtSession,
       
    48             MLcAudioControl& aLcAudioControl );
       
    49     
       
    50     void ConstructL();
       
    51     
       
    52 private: // Data    
       
    53     };
       
    54 
       
    55 #endif //LCVTREMOTEVIDEOPLAYER_H