diff -r 000000000000 -r 1bce908db942 multimediacommsengine/tsrc/MCETestUI/src/create2wayvideosessiondialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/tsrc/MCETestUI/src/create2wayvideosessiondialog.cpp Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,167 @@ +/* +* 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 "create2wayvideosessiondialog.h" + +// CONSTANTS +const TInt KBufLength = 300; + + +// ============================ MEMBER FUNCTIONS ============================== + +// ---------------------------------------------------------------------------- +// CCreate2WayVideoSessionDialog::CCreate2WayVideoSessionDialog( CRtpEngine::TSessionType* ) +// . +// ---------------------------------------------------------------------------- +// +CCreate2WayVideoSessionDialog::CCreate2WayVideoSessionDialog( TSessionParams* aParams ) : + iParams( aParams ) + { + // No implementation required + } + +// ---------------------------------------------------------------------------- +// CCreate2WayVideoSessionDialog::PreLayoutDynInitL() +// . +// ---------------------------------------------------------------------------- +// +void CCreate2WayVideoSessionDialog::PreLayoutDynInitL() + { + CEikEdwin* edwinPoCAddress = static_cast( + Control( ESessionDialog2WayVideoRecipientAddress ) ); + + TBuf defaultAddress; + defaultAddress.Copy(iParams->iRecipentAddress); + edwinPoCAddress->SetTextL(&defaultAddress); + edwinPoCAddress->SetCursorPosL(defaultAddress.Length(),EFalse); + + CAknPopupFieldText* popupFieldText = + static_cast (Control(ESessionDialog2WayVideoVideoCodec)); + + popupFieldText->SetCurrentValueIndex(0); + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoAudioCodec)); + + popupFieldText->SetCurrentValueIndex(0); + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoViewFinder)); + + popupFieldText->SetCurrentValueIndex(0); + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoCamera)); + + popupFieldText->SetCurrentValueIndex(0); + + CAknForm::PreLayoutDynInitL(); + } + +// ---------------------------------------------------------------------------- +// CCreate2WayVideoSessionDialog::OkToExitL( TInt ) +// . +// ---------------------------------------------------------------------------- +// + +TBool CCreate2WayVideoSessionDialog::OkToExitL( TInt aKey ) + { + if ( aKey == EEikCmdCanceled ) + { + // Cancel pressed. Just exit. + return ETrue; + } + + CEikEdwin* edwinRecipientAddress = static_cast( + Control( ESessionDialog2WayVideoRecipientAddress ) ); + TBuf buffer; + edwinRecipientAddress->GetText(buffer); + iParams->iRecipentAddress = buffer; + + CAknPopupFieldText* popupFieldText = + static_cast (Control(ESessionDialog2WayVideoVideoCodec)); + TInt index = popupFieldText->CurrentValueIndex(); + if(index == 0) + { + iParams->iVideoCodec = TSessionParams::EMceCodecSingle; + } + else if ( index == 1 ) + { + iParams->iVideoCodec = TSessionParams::EMceCodecAll; + } + else + { + iParams->iVideoCodec = TSessionParams::EMceCodecMultipleModes; + } + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoAudioCodec)); + index = popupFieldText->CurrentValueIndex(); + if(index == 0) + { + iParams->iAudioCodec = TSessionParams::EMceCodecSingle; + } + else if (index == 1) + { + iParams->iAudioCodec = TSessionParams::EMceCodecAll; + } + else + { + iParams->iAudioCodec = TSessionParams::EMceCodecNone; + } + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoViewFinder)); + index = popupFieldText->CurrentValueIndex(); + if(index == 0) + { + iParams->videoSinkDisplay = TSessionParams::EMceViewFinderDisabled; + } + else + { + iParams->videoSinkDisplay = TSessionParams::EMceViewFinderEnabled; + } + + popupFieldText = + static_cast (Control(ESessionDialog2WayVideoCamera)); + index = popupFieldText->CurrentValueIndex(); + if(index == 0) + { + iParams->iCameraSetting = TSessionParams::EMceCameraPrimary; + } + else + { + iParams->iCameraSetting = TSessionParams::EMceCameraSecondary; + } + + return ETrue; + } + +// ---------------------------------------------------------------------------- +// CCreate2WayVideoSessionDialog::~CCreate2WayVideoSessionDialog() +// . +// ---------------------------------------------------------------------------- +// +CCreate2WayVideoSessionDialog::~CCreate2WayVideoSessionDialog() + { + } + +// End of File