diff -r 000000000000 -r 1bce908db942 multimediacommsengine/tsrc/MCETestUI/src/createStartDMTDialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/tsrc/MCETestUI/src/createStartDMTDialog.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,124 @@ +/* +* Copyright (c) 2004 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: +* +*/ + + + + +// INCLUDES +#include "createStartDMTDialog.h" +#include "CMCETestUIEngineAudioStream.h" +#include "CMCETestUIEngineSink.h" +#include +#include +#include +#include +// CONSTANTS + +const TInt KBufLength = 100; + +// ============================ MEMBER FUNCTIONS ============================== + +// ---------------------------------------------------------------------------- +// CCreateRtpSinkDialog::CCreateRtpSinkDialog( ) +// . +// ---------------------------------------------------------------------------- +// +CCreateRtpSinkDialog::CCreateRtpSinkDialog( + CMCETestUIEngineAudioStream& aStream, TInt aIndex ) : + iStream(aStream),iSinkIndex( aIndex ) + { + + // No implementation required + } + +// ---------------------------------------------------------------------------- +// CCreateRtpSinkDialog::PreLayoutDynInitL() +// . +// ---------------------------------------------------------------------------- +// +void CCreateRtpSinkDialog::PreLayoutDynInitL() + { + const RPointerArray& sinks = + iStream.SinksL(); + + CMceMediaSink& mediaSink = static_cast(sinks[iSinkIndex]->Sink()); + CMceRtpSink& rtpSink = static_cast(mediaSink); + + CAknPopupFieldText* popupFieldText = + static_cast (Control(ERtpSinkSuppressRtcp)); + + if(rtpSink.IsEnabled()) + { + popupFieldText->SetCurrentValueIndex(0); + } + else + { + popupFieldText->SetCurrentValueIndex(1); + } + + CAknForm::PreLayoutDynInitL(); + } + +// ---------------------------------------------------------------------------- +// CCreateAudioCodecDialog::OkToExitL( TInt ) +// . +// ---------------------------------------------------------------------------- +// + +TBool CCreateRtpSinkDialog::OkToExitL( TInt aKey ) + { + if ( aKey == EEikCmdCanceled ) + { + // Cancel pressed. Just exit. + return ETrue; + } + const RPointerArray& sinks = + iStream.SinksL(); + + if(sinks[iSinkIndex]->Type() == KMceRTPSink) + { + CMceMediaSink& mediaSink = static_cast(sinks[iSinkIndex]->Sink()); + CMceRtpSink& rtpSink = static_cast(mediaSink); + CAknPopupFieldText* popupFieldText = + static_cast (Control(ERtpSinkSuppressRtcp)); + + if( popupFieldText->CurrentValueIndex() == 0) + { + rtpSink.EnableL(); + } + else + { + rtpSink.DisableL(); + } + } + + + + return ETrue; + } + +// ---------------------------------------------------------------------------- +// CCreateRtpSinkDialog::~CCreateRtpSinkDialog() +// . +// ---------------------------------------------------------------------------- +// +CCreateRtpSinkDialog::~CCreateRtpSinkDialog() + { + return; + } + +// End of File