diff -r 000000000000 -r 5a93021fdf25 connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifSrc/ActiveOfflineWlanDisabledNote.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifSrc/ActiveOfflineWlanDisabledNote.cpp Thu Dec 17 08:55:21 2009 +0200 @@ -0,0 +1,96 @@ +/* +* 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: Implementation of CActiveOfflineWlanDisabledNote. +* +*/ + + +// INCLUDE FILES +#include "ActiveOfflineWlanDisabledNote.h" + +#include +#include +#include + + +// ================= MEMBER FUNCTIONS ======================= + +// --------------------------------------------------------- +// CActiveOfflineWlanDisabledNote::CActiveOfflineWlanDisabledNote() +// --------------------------------------------------------- +// +CActiveOfflineWlanDisabledNote::CActiveOfflineWlanDisabledNote( + COfflineWlanDisabledNoteNotif* aNotif ) +: CActive( KErrNone ), + iNotif( aNotif ) + { + CActiveScheduler::Add( this ); + } + + +// --------------------------------------------------------- +// CActiveOfflineWlanDisabledNote::~CActiveOfflineWlanDisabledNote() +// --------------------------------------------------------- +// +CActiveOfflineWlanDisabledNote::~CActiveOfflineWlanDisabledNote() + { + Cancel(); + } + + +// --------------------------------------------------------- +// CActiveOfflineWlanDisabledNote::RunL() +// --------------------------------------------------------- +// +void CActiveOfflineWlanDisabledNote::RunL() + { + if( iStatus == KErrNone ) + { + HBufC* stringLabel = StringLoader::LoadLC( R_OFFLINE_NOT_POSSIBLE ); + CleanupStack::PushL( stringLabel ); + + CAknGlobalNote* globalNote = CAknGlobalNote::NewLC(); + globalNote->ShowNoteL( EAknGlobalInformationNote, *stringLabel ); + + CleanupStack::PopAndDestroy( globalNote ); + CleanupStack::PopAndDestroy( stringLabel ); + + iNotif->SetCancelledFlag( ETrue ); + iNotif->CompleteL( KErrNone ); + } + } + + +// --------------------------------------------------------- +// CActiveOfflineWlanDisabledNote::DoCancel() +// --------------------------------------------------------- +// +void CActiveOfflineWlanDisabledNote::DoCancel() + { + } + + +// --------------------------------------------------------- +// CActiveOfflineWlanDisabledNote::LaunchOfflineWlanDisabledNote() +// --------------------------------------------------------- +// +void CActiveOfflineWlanDisabledNote::LaunchOfflineWlanDisabledNote() + { + SetActive(); + iClientStatus = &iStatus; + User::RequestComplete( iClientStatus, KErrNone ); + } + + +// End of File