diff -r 666f914201fb -r 2fe1408b6811 epoc32/include/icl/imagedisplaypaniccodes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/epoc32/include/icl/imagedisplaypaniccodes.h Tue Mar 16 16:12:26 2010 +0000 @@ -0,0 +1,69 @@ +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Image Display Panic Codes +// +// + +#ifndef __IMAGE_DISPLAY_PANIC_CODES_H__ +#define __IMAGE_DISPLAY_PANIC_CODES_H__ + +/** +@publishedAll +@released + +Panic codes for CImageDisplay & CImageDisplayPlugin +*/ +enum TImageDisplayPanic + { + /** + This panic is raised if one of the reserved virtual functions is called + */ + EReservedCall=0, + /** + This panic can be raised by, for example, + calling PlayL() without calling SetupL() first or + calling SetupL() without specifying the source + */ + EIllegalCallSequence, // 1 + /** + This panic is raised if no source is defined + */ + EUndefinedSourceType, // 2 + /** + This panic is raised if no destination size is defined + */ + EUndefinedDestSize, // 3 + /** + This panic can be raised by, for example, + calling SourceFilename() when source is a descriptor. + */ + EImageWrongType, // 4 + /** + This panic is raised if a zero-length MIME type is given + */ + EUndefinedMIMEType, // 5 + /** + This panic is raised if KNullUid is given as the image type + and a non-null value for the subtype + */ + EIllegalImageSubType, // 6 + /** + This panic is raised if callback is still active + and Play() method is called again + */ + ECallbackStillActive, // 7 + }; + + +#endif // __IMAGE_DISPLAY_PANIC_CODES_H__