emailuis/uicomponents/inc/fsgenericpanic.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:28:57 +0100
branchRCL_3
changeset 25 3533d4323edc
parent 0 8466d47a6819
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 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:  Panic codes used in fs_generic.dll
*
*/


#ifndef FS_GENERIC_PANIC_H
#define FS_GENERIC_PANIC_H


enum TFsGenericPanicReason
    {
    // panic codes related to list
    EFsListPanicInvalidItemId,
    EFsListPanicInvalidItemType,
    EFsListPanicIndexOutOfRange,
    EFsListPanicBorderNotSet,
    EFsListPanicInvalidComponentState,
    EFsListPanicMovingNodeToItsChild,
    // panic codes related to text viewer
    // panic codes related to fast addressing list
    EFsFastAddressingListBadIconId,
    EFsFastAddressingListTextureNotSet,
    // panic codes related to scroll bar
    // panic codes related to text parser
    // panic codes related to texture loader
    // panic codes related to control bar
    EFsControlBarNoButtonWithSpecifiedId,
    EFsControlBarButtonWithSpecifiedIdAlreadyExists,
    EFsControlBarUnknownEvent,
    // panic codes related to control button
    EFsControlButtonCannotSetFocusToDisabledControl,
    EFsControlButtonCannotDisableFocusedControl,
    EFsControlButtonIncorrectButtonType,
    EFsControlButtonIncorrectButtonElement,
    EFsControlButtonNoSuchEnumValue,
    EFsControlButtonEnumValueNotSupported,
    EFsControlButtonIncorrectButtonIndex,
    EFsControlButtonIncorrectButtonId,
    EFsControlButtonIdRestricted
    };

/**
 * The generic panic function used by all components in fs_generic.dll
 */
void FsGenericPanic( const TFsGenericPanicReason aReason );

#endif // FS_GENERIC_PANIC_H