williamr@2: /* williamr@2: * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies). williamr@2: * All rights reserved. williamr@2: * This component and the accompanying materials are made available williamr@2: * 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 williamr@2: * which accompanies this distribution, and is available williamr@2: * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: * williamr@2: * Initial Contributors: williamr@2: * Nokia Corporation - initial contribution. williamr@2: * williamr@2: * Contributors: williamr@2: * williamr@2: * Description: williamr@2: * williamr@2: */ williamr@2: williamr@2: williamr@2: #ifndef __LAFPANIC_H__ williamr@2: #define __LAFPANIC_H__ williamr@2: williamr@2: /** Panic codes used throughout the code in Avkon library. williamr@2: * These panics have a category of EIKON or EikCoCtlLaf. williamr@2: */ williamr@2: enum TLafPanic williamr@2: { williamr@2: /** 00: Invalid pointer cursor index used. */ williamr@2: ELafPanicPointerCursorIndexOutOfRange, williamr@2: /** 01: Invalid font index used in menu. */ williamr@2: ELafPanicFontIndexOutOfRange, williamr@2: /** 02: Invalid constant used. */ williamr@2: ELafPanicConstantNotKnown, williamr@2: /** 03: Invalid horizontal alignment constant used. */ williamr@2: ELafPanicMsgWinBadHorizontalAlignment, williamr@2: /** 04: Invalid vertical alignment constant used. */ williamr@2: ELafPanicMsgWinBadVerticalAlignment, williamr@2: /** 05: Bitmap index out of range. */ williamr@2: ELafPanicBitmapIndexOutOfRange, williamr@2: /** 06: @deprecated */ williamr@2: ELafPanicNotificationWithoutRequest, williamr@2: /** 07: Invalid logical font category used. */ williamr@2: ELafPanicFontUidUnknownOrMissing, williamr@2: /** 08: APAC font requested in western variant. */ williamr@2: ELafPanicUsingFontFromWrongVariant, williamr@2: /** 09: Font creation failure. */ williamr@2: ELafPanicFontCreationFailure williamr@2: }; williamr@2: williamr@2: #endif //__LAFPANIC_H__ williamr@2: williamr@2: // End of file.