diff -r 159fc2f68139 -r d59c248c9d36 ImagePrint/ImagePrintUI/imageprintapp/inc/printapputil.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ImagePrint/ImagePrintUI/imageprintapp/inc/printapputil.h Wed Sep 01 12:30:38 2010 +0100 @@ -0,0 +1,78 @@ +/* +* Copyright (c) 2004-2007 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: +* +*/ + + +#ifndef PRINTAPPUTIL_H +#define PRINTAPPUTIL_H + +#include + +/** + * + * Utility class that contains small static helper methods to group + * the common functionality + * + */ +class PrintAppUtil + { + public: + + /** + * Displays error note using given resource id as the text + * + * @param aResourceId Resource ID for the given error text + */ + static void ShowErrorNoteL( TInt aResourceId ); + + /** + * Displays information note using given resource id as the text + * + * @param aResourceId Resource ID for the given error text + */ + static void ShowInfoNoteL( TInt aResourceId ); + + /** + * Displays error note using given error code as the source + * for the text + * + * @param aErrCode Error code + */ + static void ShowErrorMsgL( TInt aErrCode ); + + /** + * Loads error message specifically created for printer application + * + * @param aErrCode Error code + * + * @return the error message string for given error code + */ + static HBufC* PrintErrorMsgLC( TInt aErrCode ); + + /** + * Returns filename with the application path + * + * @param aFileName The filename + * + * @return filename added to the application path + */ + static TFileName AddApplicationPath( const TDesC& aFileName ); + }; + + +#endif // PRINTAPPUTIL_H + +// End of File