diff -r a3a1ae9acec6 -r da5135c61bad meetingrequest/mrgui/src/cesmralarm.cpp --- a/meetingrequest/mrgui/src/cesmralarm.cpp Mon Mar 15 12:39:10 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,118 +0,0 @@ -/* -* Copyright (c) 2007-2009 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: ESMR alarm implementation -* -*/ - - -#include "emailtrace.h" -#include -#include "cesmralarm.h" - -// ======== MEMBER FUNCTIONS ======== - -// --------------------------------------------------------------------------- -// CESMRAlarm::CESMRAlarm -// --------------------------------------------------------------------------- -// -EXPORT_C CESMRAlarm::CESMRAlarm( ) - { - FUNC_LOG; - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::~CESMRAlarm -// --------------------------------------------------------------------------- -// -EXPORT_C CESMRAlarm::~CESMRAlarm( ) - { - FUNC_LOG; - delete iText; - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::ConstructFromResourceL -// --------------------------------------------------------------------------- -// -EXPORT_C void CESMRAlarm::ConstructFromResourceL( TResourceReader& aReader ) - { - FUNC_LOG; - iId = aReader.ReadInt16(); - iValue = aReader.ReadInt16(); - iRelative = aReader.ReadInt16(); - iTxtLink = aReader.ReadInt32(); // link to TBUF - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::LoadTextL -// --------------------------------------------------------------------------- -// -EXPORT_C void CESMRAlarm::LoadTextL( CCoeEnv* aEnv ) - { - FUNC_LOG; - delete iText; - iText = NULL; - - if ( iValue != KErrNotFound ) - { - iText = StringLoader::LoadL ( iTxtLink, iValue, aEnv ); - } - else - { - iText = StringLoader::LoadL ( iTxtLink, aEnv ); - } - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::RelativeTimeInMinutes -// --------------------------------------------------------------------------- -// -EXPORT_C TTimeIntervalMinutes CESMRAlarm::RelativeTimeInMinutes( ) - { - FUNC_LOG; - return TTimeIntervalMinutes ( iRelative ); - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::Text -// --------------------------------------------------------------------------- -// -EXPORT_C HBufC* CESMRAlarm::Text( ) - { - FUNC_LOG; - return iText; - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::Id -// --------------------------------------------------------------------------- -// -EXPORT_C TInt CESMRAlarm::Id( ) - { - FUNC_LOG; - return iId; - } - -// --------------------------------------------------------------------------- -// CESMRAlarm::Relative -// --------------------------------------------------------------------------- -// -EXPORT_C TInt CESMRAlarm::Relative( ) - { - FUNC_LOG; - return iRelative; - } - -// EOF -