meetingrequest/mrguicommon/inc/cmrlabel.h
branchRCL_3
changeset 12 4ce476e64c59
child 22 d620048b4810
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2009-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:  Interface definition for Location URL Parser plug-in
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CMRLABEL_H
       
    19 #define CMRLABEL_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <eiklabel.h> 
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 // CLASS DECLARATIONS
       
    27 
       
    28 class CMRLabel : public CEikLabel
       
    29     {
       
    30     public:
       
    31         /**
       
    32          * Static construtor
       
    33          * @return New instance of this class
       
    34          */
       
    35         IMPORT_C static CMRLabel* NewL();
       
    36         /**
       
    37          * Destructor
       
    38          */
       
    39         IMPORT_C ~CMRLabel();
       
    40 
       
    41     public: // From base class
       
    42         void FocusChanged(TDrawNow aDrawNow);
       
    43     
       
    44     private: // from CCoeControl
       
    45         void SizeChanged();
       
    46         
       
    47     private: // Implementation
       
    48         CMRLabel();
       
    49         void ConstructL();
       
    50         
       
    51     private: // Data
       
    52     };
       
    53 
       
    54 #endif // CMRLABEL_H
       
    55 
       
    56 // End of file