diff -r 000000000000 -r 5e5d6b214f4f imstutils/imconversationview/imcvuiapp/src/imcvuiapputils.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imstutils/imconversationview/imcvuiapp/src/imcvuiapputils.cpp Tue Feb 02 10:12:18 2010 +0200 @@ -0,0 +1,67 @@ +/* +* Copyright (c) 2008 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: utils helper class +* +*/ + + +#include "imcvuiapputils.h" +#include +#include + + +// --------------------------------------------------------- +// IMCVUiAppUtils::GetCRKeyL +// (other items were commented in a header). +// --------------------------------------------------------- +// +TUint32 IMCVUiAppUtils::CRKeyL( TUid aUid, TUint32 aKey ) + { + TInt val( 0 ); + + TRAPD( err, + CRepository* rep = CRepository::NewL( aUid ); + rep->Get( aKey, val ); + delete rep; + ); + + if( err != KErrNotFound && err != KErrPathNotFound ) + { + // "Not found" errors are ignored, because it's ok to + // return zero if key is not found + User::LeaveIfError( err ); + } + + return val; + } + + +// --------------------------------------------------------------------------- +// IMCVUiAppUtils::PenEnabled +// --------------------------------------------------------------------------- +// +TBool IMCVUiAppUtils::PenEnabled() + { +#ifndef RD_30_DISABLE_TOUCH + return AknLayoutUtils::PenEnabled(); + +#else + // In 3.0 mode we don't have pen support + return EFalse; + +#endif //RD_30_DISABLE_TOUCH + } + +// End of file +