diff -r 14979e23cb5e -r 3de6c4cf6b67 mpxplugins/viewplugins/views/waitnotedialog/src/mpxmtpdialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mpxplugins/viewplugins/views/waitnotedialog/src/mpxmtpdialog.cpp Wed Sep 01 12:32:02 2010 +0100 @@ -0,0 +1,96 @@ +/* +* Copyright (c) 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: Wait note dialog for MTP connection +* +*/ + + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mpxmtpdialog.h" + +// --------------------------------------------------------------------------- +// Constructor +// --------------------------------------------------------------------------- +// +CMPXMtpWaitDialog::CMPXMtpWaitDialog( MMPXWaitNoteObserver* aObs ) : + CMPXWaitNoteDialog( aObs, EMPXMTPEventNote ) + { + + } + + +// --------------------------------------------------------------------------- +// 2nd Phased constructor +// --------------------------------------------------------------------------- +// +void CMPXMtpWaitDialog::ConstructL() + { + BaseConstructL(); + } + + +// --------------------------------------------------------------------------- +// Two-phased constructor +// --------------------------------------------------------------------------- +// +CMPXMtpWaitDialog* CMPXMtpWaitDialog::NewL( MMPXWaitNoteObserver* aObs ) + { + CMPXMtpWaitDialog* self = new(ELeave) CMPXMtpWaitDialog( aObs ); + CleanupStack::PushL( self ); + self->ConstructL(); + CleanupStack::Pop( self ); + return self; + } + + +// --------------------------------------------------------------------------- +// Destructor +// --------------------------------------------------------------------------- +// +CMPXMtpWaitDialog::~CMPXMtpWaitDialog() + { + } + +// --------------------------------------------------------------------------- +// Initialize the wait note +// --------------------------------------------------------------------------- +// +void CMPXMtpWaitDialog::PreNoteDisplayHandleL() + { + // CBA + SetCBAL( R_AVKON_SOFTKEYS_EMPTY ); + + // Text + HBufC* text = StringLoader::LoadLC( R_MPX_MTP_TRANSFER_IN_PROGRESS ); + SetTextL( *text ); + CleanupStack::PopAndDestroy( text ); + + // Icon + TNoteIconInfo icon( (TInt)EMbmAvkonQgn_note_progress, + (TInt)EMbmAvkonQgn_note_progress_mask, + TFileName(KAvkonBitmapFile) ); + SetIconL( icon ); + } + +// End of File