meetingrequest/mrgui/mrfieldbuilderplugin/inc/cesmrviewerpriorityfield.h
changeset 0 8466d47a6819
child 16 4ce476e64c59
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 /*
       
     2 * Copyright (c) 2007-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:  Priority field for viewers
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __CESMRVIEWERPRIORITYFIELD_H__
       
    20 #define __CESMRVIEWERPRIORITYFIELD_H__
       
    21 
       
    22 #include <eikrted.h>
       
    23 #include <eikedwob.h>
       
    24 
       
    25 #include "cesmrviewerlabelfield.h"
       
    26 
       
    27 /**
       
    28  * This class shows the priority of the event
       
    29  */
       
    30 NONSHARABLE_CLASS( CESMRViewerPriorityField ) : public CESMRViewerLabelField
       
    31     {
       
    32 public:
       
    33     /**
       
    34      * Creates new CESMRViewerPriorityField object. Ownership
       
    35      * is transferred to caller.
       
    36      * @return Pointer to created object,
       
    37      */
       
    38     static CESMRViewerPriorityField* NewL();
       
    39     
       
    40     /**
       
    41      * C++ Destructor.
       
    42      */
       
    43     ~CESMRViewerPriorityField();
       
    44     
       
    45 public: // From CESMRField
       
    46     void InternalizeL( MESMRCalEntry& aEntry );
       
    47     
       
    48 private: // Implementation
       
    49     CESMRViewerPriorityField();
       
    50     void ConstructL();
       
    51     };
       
    52 
       
    53 #endif //__CESMRVIEWERPRIORITYFIELD_H__