phoneapp/phoneuiutils/inc/tphonecmdparamcustomdialer.h
changeset 36 2eacb6118286
parent 30 ebdbd102c78a
child 37 ba76fc04e6c2
equal deleted inserted replaced
30:ebdbd102c78a 36:2eacb6118286
     1 /*
       
     2 * Copyright (c) 2008 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:  Parameter class for custom dialer creation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TPHONECMDPARAMCUSTOMDIALER_H_
       
    20 #define TPHONECMDPARAMCUSTOMDIALER_H_
       
    21 
       
    22 //  INCLUDES
       
    23 #include "tphonecommandparam.h"
       
    24 
       
    25 class MPhoneDialerController;
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  A concrete parameter class for one integer value.
       
    31 *  
       
    32 */
       
    33 class TPhoneCmdParamCustomDialer : public TPhoneUICommandParam
       
    34     {
       
    35     public:  
       
    36         
       
    37         /**
       
    38         * C++ default constructor.
       
    39         */
       
    40         IMPORT_C TPhoneCmdParamCustomDialer();
       
    41 
       
    42     public: 
       
    43         
       
    44         /**
       
    45         * Sets the custom dialer 
       
    46         * @param aDialerController Reference to custom dialer controller
       
    47         */
       
    48         IMPORT_C void SetDialerController( MPhoneDialerController* aDialerController );
       
    49 
       
    50         /**
       
    51         * Returns pointer to custom dialer controller
       
    52         */
       
    53         IMPORT_C MPhoneDialerController* DialerController();
       
    54 
       
    55     private:   
       
    56 
       
    57         MPhoneDialerController* iCustomDialer;
       
    58     };
       
    59 
       
    60 
       
    61 #endif /*TPHONECMDPARAMCUSTOMDIALER_H_*/
       
    62