phoneapp/phoneuiutils/inc/tphonecmdparammessageeditor.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2005 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 *     A paramater class for opening message editors.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __TPHONECMDPARAMMESSAGEEDITOR_H
       
    21 #define __TPHONECMDPARAMMESSAGEEDITOR_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <CMessageData.h>
       
    25 #include "tphonecommandparam.h"
       
    26 
       
    27 // DATA TYPES
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  A paramater class for identifying view.
       
    33 */
       
    34 class TPhoneCmdParamMessageEditor : public TPhoneUICommandParam
       
    35     {   
       
    36     public:
       
    37 
       
    38         /**
       
    39         * Constructor.
       
    40         */
       
    41         IMPORT_C TPhoneCmdParamMessageEditor();
       
    42 
       
    43         /**
       
    44         * Sets the message editor data.
       
    45         * @param    aMessageData
       
    46         * @return   None.
       
    47         */
       
    48         IMPORT_C void SetMessageData( CMessageData* aMessageData );
       
    49 
       
    50         /**
       
    51         * Returns message editor data.
       
    52         * @param    None.
       
    53         * @return   iMessageData.
       
    54         */
       
    55         IMPORT_C CMessageData* MessageData() const;
       
    56 
       
    57   private:    
       
    58   
       
    59         /**
       
    60         * Message Editor Data.
       
    61         */
       
    62         CMessageData* iMessageData;
       
    63 
       
    64     };
       
    65 
       
    66 #endif // __TPHONECMDPARAMMESSAGEEDITOR_H   
       
    67             
       
    68 // End of File