diff -r 7d48bed6ce0c -r 987c9837762f cbs/cbsui/src/ccbsuitopiclistmonitor.cpp --- a/cbs/cbsui/src/ccbsuitopiclistmonitor.cpp Tue Aug 31 15:45:17 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,161 +0,0 @@ -/* -* Copyright (c) 2010 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 -#include "mcbs.h" -#include "ccbsuitopiclistmonitor.h" -#include "mcbsuitopicmonitorobserver.h" -#include "cbsuiconstants.h" - - - -// CONSTANTS -const TInt KNumberOfObservers = 3; - - - -// ================= MEMBER FUNCTIONS ======================= - -// ---------------------------------------------------------------------------- -// CCbsUiSettingsMonitor::CCbsUiSettingsMonitor -// C++ default constructor can NOT contain any code, that -// might leave. -// ---------------------------------------------------------------------------- -// -CCbsUiTopicListMonitor::CCbsUiTopicListMonitor( MCbs& aServer ) - : CActive(EPriorityStandard), iContinue(ETrue), iServer(aServer) - { - } - - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::ConstructL -// Symbian OS default constructor can leave -// ---------------------------------------------------------------------------- -// -void CCbsUiTopicListMonitor::ConstructL( ) - { - CActiveScheduler::Add(this); - IssueRequest(); - - iObservers = new (ELeave) TCbsUiMonitorObservers(KNumberOfObservers); - } - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::NewL -// Two-phased constructor. -// ---------------------------------------------------------------------------- -// -CCbsUiTopicListMonitor* CCbsUiTopicListMonitor::NewL( MCbs& aServer ) - { - CCbsUiTopicListMonitor* self = - new (ELeave) CCbsUiTopicListMonitor(aServer); - - CleanupStack::PushL( self ); - self->ConstructL(); - CleanupStack::Pop( self ); - - return self; - } - - - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::~CCbsUiTopicListMonitor -// Destructor -// ---------------------------------------------------------------------------- -// -CCbsUiTopicListMonitor::~CCbsUiTopicListMonitor() - { - delete iObservers; - Cancel(); - } - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::IssueRequest() -// -// -// ---------------------------------------------------------------------------- -// -void CCbsUiTopicListMonitor::IssueRequest() - { - if ( iContinue ) - { - SetActive(); - - iServer.NotifyOnTopicListEvent( - iStatus, ECbsTopicAllEvents, iEvent, iTopicNumber ); - } - } - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::RunL -// -// -// ---------------------------------------------------------------------------- -// -void CCbsUiTopicListMonitor::RunL() - - { - if ( iObservers->Count() > 0 ) - { - for ( TInt i(0); i < iObservers->Count(); i++ ) - { - iObservers->At(i)->TopicListChangedL(iEvent, iTopicNumber); - } - } - // TODO: Panics.. - //__ASSERT_DEBUG( - // (iEvent & ECbsTopicAllEvents), CbsUiPanic(EErrInvalidEvent) ); - - if ( iContinue ) - { - IssueRequest(); - } - } - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::DoCancel -// -// -// ---------------------------------------------------------------------------- -// -void CCbsUiTopicListMonitor::DoCancel() - { - iContinue = EFalse; - - iServer.NotifyOnTopicListEventCancel(); - } - -// ---------------------------------------------------------------------------- -// CCbsUiTopicListMonitor::AddObserverL -// -// -// ---------------------------------------------------------------------------- -// -void CCbsUiTopicListMonitor::AddObserverL( - MCbsUiTopicMonitorObserver* aObserver ) - { - /* __ASSERT_DEBUG( iObservers, CbsUiPanic(EErrNullPointer) ); - __ASSERT_DEBUG( aObserver, CbsUiPanic(EErrNullPointer) ); -*/ - iObservers->AppendL(aObserver); - } - -// End of File