videoplayback/videohelix/tsrc/ut_videohelixtest/src/mpxvideoaccessoryobserver_stub.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 00:12:10 +0200
changeset 2 dec420019252
parent 0 96612d01cf9f
child 8 ce5ada96ab30
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  This class is the stub for the accessory observer.
 *
*/

// Version : %version: 3 %

//
//  INCLUDE FILES
//
#include "stifutilities.h"
#include "mpxvideoaccessoryobserver_stub.h"
#include "mpxvideoplaybackcontroller.h"


//
// ============================ MEMBER FUNCTIONS ===================================================
//


CMPXVideoAccessoryObserver*
CMPXVideoAccessoryObserver::NewL( CMPXVideoPlaybackController* aController )
{
    MPX_ENTER_EXIT(_L("CMPXVideoAccessoryObserver::NewL()"));

    CMPXVideoAccessoryObserver* self = new (ELeave) CMPXVideoAccessoryObserver( aController );

    StifUtilities* utility = reinterpret_cast<StifUtilities*>( Dll::Tls() );

    if ( utility->iAccObserver )
    {
        utility->iAccObserver->iController = aController;
    }
    else
    {
        utility->iAccObserver = new (ELeave) CMPXVideoAccessoryObserver( aController );
        utility->iAccObserver->ConstructL();
    }

    return utility->iAccObserver;
}


void CMPXVideoAccessoryObserver::ConstructL()
{
}

// -------------------------------------------------------------------------------------------------
//   CMPXVideoAccessoryObserver::CMPXVideoAccessoryObserver
// -------------------------------------------------------------------------------------------------
//
CMPXVideoAccessoryObserver::CMPXVideoAccessoryObserver( CMPXVideoPlaybackController* aController )
    : iController( aController )
    , iTvOutConnected( EFalse )
    , iTvOutPlaybackAllowed( ETrue )
{
}

CMPXVideoAccessoryObserver::~CMPXVideoAccessoryObserver()
{
    MPX_ENTER_EXIT(_L("CMPXVideoAccessoryObserver::~CMPXVideoAccessoryObserver()"));
}

void CMPXVideoAccessoryObserver::SetTvOutConnected( TBool aConnected )
{
    MPX_ENTER_EXIT(_L("CMPXVideoAccessoryObserver::SetTvOutConnected()"),
                   _L("aConnected = %d"), aConnected);

    iTvOutConnected = aConnected;

    if ( ! iTvOutConnected )
    {
        iTvOutPlaybackAllowed = ETrue;
    }
}

void CMPXVideoAccessoryObserver::SetTvOutPlaybackAllowed( TBool aAllowed )
{
    MPX_ENTER_EXIT(_L("CMPXVideoAccessoryObserver::SetTvOutPlaybackAllowed()"),
                   _L("aAllowed = %d"), aAllowed);

    iTvOutPlaybackAllowed = aAllowed;
}

void CMPXVideoAccessoryObserver::UpdateTvOutStatusL( TBool aTvOutConnected )
{
    MPX_DEBUG(_L("CMPXVideoAccessoryObserver::UpdateTvOutStatusL()"));

    //
    //  Check if the TV-Out status has changed
    //
    if ( iTvOutConnected != aTvOutConnected )
    {
        iTvOutConnected = aTvOutConnected;

        iController->HandleTvOutEventL( iTvOutConnected );
    }

    MPX_DEBUG(_L("    iTvOutConnected = %d"), iTvOutConnected);
}

// -------------------------------------------------------------------------------------------------
//   CMPXVideoAccessoryObserver::IsTvOutConnected
// -------------------------------------------------------------------------------------------------
//
TBool CMPXVideoAccessoryObserver::IsTvOutConnected()
{
    MPX_DEBUG(_L("CMPXVideoAccessoryObserver::IsTvOutConnected(%d)"), iTvOutConnected);

    return iTvOutConnected;
}

// -------------------------------------------------------------------------------------------------
//   CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed
// -------------------------------------------------------------------------------------------------
//
TBool CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed()
{
    TBool playAllowed = ( ! iTvOutConnected || iTvOutPlaybackAllowed );
    MPX_DEBUG(_L("CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed(%d)"), playAllowed);

    return playAllowed;
}

//  End of File