mobilemessaging/unieditor/application/inc/UniEditorEnum.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2006,2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   UniEditor enumerations.    
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __UNIEDITORENUM_H__
       
    21 #define __UNIEDITORENUM_H__
       
    22 
       
    23 // ========== DATA TYPES ===================================
       
    24 
       
    25 enum TUniEditorPanic
       
    26     {
       
    27     EUniEditorModeFlagsNotSet = 0,
       
    28     EUniNullPointer,
       
    29     EUniIllegalComponentType,
       
    30     EUniNoMessage,
       
    31     EUniNoImage,
       
    32     EUniUnsupportedCommand,
       
    33     EUniUnknownMenuOption,
       
    34     EUniIllegalAddress,
       
    35     EUniSendWithoutRecipients,
       
    36     EUniEntryNotInDraftFolder,
       
    37     EUniIllegalMediaObject,
       
    38     EUniIllegalLayout,
       
    39     EUniIllegalParseResult,
       
    40     EUniIllegalMsgSize,
       
    41     EUniIllegalMsgSizeLimit,
       
    42     EUniIllegalSendingOptions,
       
    43     EUniIllegalArgument,
       
    44     EUniIllegalMessageType,
       
    45     EUniIllegalSmilType,
       
    46     EUniCannotInsert,
       
    47     EUniAlreadyExists,
       
    48     EUniCharConvNotFound,
       
    49     EUniIllegalEvent
       
    50     };
       
    51 
       
    52 GLDEF_C void Panic( TUniEditorPanic aPanic );
       
    53 
       
    54 #endif   // __UNIEDITORENUM_H__
       
    55 
       
    56 // End of File
       
    57 
       
    58