mmsharing/mmshui/src/musuisendview.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 22:48:06 +0200
branchRCL_3
changeset 6 c47a75a8cd72
parent 2 b31261fd4e04
child 16 71306c87785a
permissions -rw-r--r--
Revision: 201003 Kit: 201007

/*
* Copyright (c) 2005 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:  The MUS application's UI class.
*
*/


#include "musuisendview.h"
#include "musuiappui.h"
#include "musuisendcontroller.h"
#include "musuisendviewcontainer.h"
#include "musuidefinitions.h"
#include "musuidialogutil.h"
#include "muslogger.h" // debug logging

#include <musui.rsg>

#include <aknViewAppUi.h>


// -----------------------------------------------------------------------------
// EPOC two-phased constructor
// -----------------------------------------------------------------------------
//
void CMusUiSendView::ConstructL()
    {
    MUS_LOG( "mus: [MUSUI ]  -> CMusUiSendView::ConstructL" );
    CMusUiGeneralView::ConstructL();
    iSavedOrientation = MusAppUi()->AppOrientation();
    MUS_LOG( "mus: [MUSUI ]  <- CMusUiSendView::ConstructL" );
    }


// -----------------------------------------------------------------------------
// Destructor
// -----------------------------------------------------------------------------
//
CMusUiSendView::~CMusUiSendView()
    {
    MUS_LOG( "mus: [MUSUI ]  -> CMusUiSendView::~CMusUiSendView" );
    MUS_LOG( "mus: [MUSUI ]  <- CMusUiSendView::~CMusUiSendView" );
    }


// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
//
void CMusUiSendView::ManualAddressEntryL( const TDesC& aAddress )
    {
    MUS_LOG_TDESC( "mus: [MUSUI ]    -> CMusUiSendView::ManualAddressEntryL: ",
                            aAddress );
     
    CAknAppUiBase::TAppUiOrientation aOrientation 
					= CAknAppUiBase::EAppUiOrientationUnspecified;
    
     TBuf<KMusSipAddressMaxLength> address( aAddress );
    if ( SendController() && MusUiDialogUtil::ShowTextQueryDialogL( 
                                    R_MUS_TEXT_ENTER_ADDRESS_DIALOG_PROMPT, 
                                    address ) )
        {
        //to get the AppOrientation before sending invatation
        aOrientation = MusAppUi()->AppOrientation();       
        SendController()->InviteL( address );
        }
    else
        {
        MusUiDialogUtil::ShowGlobalInformationDialogL( 
                            R_MUS_LIVE_SHARING_VIEW_NOTE_SHARING_ENDED );
        MusAppUi()->HandleExit();
        }

    if( aOrientation != iSavedOrientation)
    	{
         SendController()->ChangeOrientationL( iSavedOrientation );
    	}
    MUS_LOG( "mus: [MUSUI ]  <- CMusUiSendView::ManualAddressEntryL" );
    }


// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
//
CMusUiEventController* CMusUiSendView::EventController() const
    {
    return SendController();
    }


// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
//
CMusUiViewContainer& CMusUiSendView::SharingContainer() const
    {
    return *SendContainer();
    }
        

// -----------------------------------------------------------------------------
// From CAknView, Gets called from framework when activating this view
// -----------------------------------------------------------------------------
//
void CMusUiSendView::DoActivateL( const TVwsViewId& aPrevViewId,
                                    TUid aCustomMessageId,
                                    const TDesC8& aCustomMessage )
    {
    // Base class activation first
    CMusUiGeneralView::DoActivateL( aPrevViewId,
                                    aCustomMessageId,
                                    aCustomMessage ); 
                                    
    }


// -----------------------------------------------------------------------------
// From AknView, Gets called from framework when deactivating this view
// -----------------------------------------------------------------------------
//
void CMusUiSendView::DoDeactivate()
    {
    CMusUiGeneralView::DoDeactivate(); // Base class deactivation first
    }
    
    
// -----------------------------------------------------------------------------
// Called when focus event occurs.
// -----------------------------------------------------------------------------
//
void CMusUiSendView::DoHandleForegroundEventL( TBool aForeground )
    {
    CMusUiGeneralView::HandleForegroundEventL( 
                                aForeground, 
                                iOperatorSpecificFunctionality &&
                                EventControllerL().ConnectionEstablished() &&
                                !EventControllerL().ExitOccured() );
    }    


// end of file