emailuis/nmailuiengine/inc/nmicons.h
changeset 18 578830873419
equal deleted inserted replaced
4:e7aa27f58ae1 18:578830873419
       
     1 /*
       
     2 * Copyright (c) 2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef NMICONS_H_
       
    19 #define NMICONS_H_
       
    20 
       
    21 #include "nmuienginedef.h"
       
    22 
       
    23 class HbIcon;
       
    24 
       
    25 class NMUIENGINE_EXPORT NmIcons {
       
    26  public:
       
    27     enum Icon
       
    28     {
       
    29         NmIconDefaultMailbox = 0,
       
    30         NmIconPlusSign,
       
    31         NmIconMinusSign,
       
    32         NmIconAttachment,
       
    33         NmIconPriorityHigh,
       
    34         NmIconPriorityLow,
       
    35         NmIconAttach,
       
    36         NmIconSend,
       
    37         NmIconContacts,
       
    38         NmIconNewEmail,
       
    39         NmIconDelete,
       
    40         NmIconForward,
       
    41         NmIconReply,
       
    42         NmIconReplyAll,
       
    43         NmIconSynching,
       
    44         NmIconOnline,
       
    45         NmIconDisconnected,
       
    46         NmIconOffline,
       
    47         NmLastItem
       
    48     };
       
    49 
       
    50     static HbIcon &getIcon(NmIcons::Icon icon);
       
    51     static void freeIcons();
       
    52 };
       
    53 
       
    54 #endif /* NMICONS_H_ */