vtuis/videotelui/inc/features/softkey/cvtuisoftkeysetting.h
branchRCL_3
changeset 35 779871d1e4f4
parent 0 ed9695c8bcbe
equal deleted inserted replaced
34:f15ac8e65a02 35:779871d1e4f4
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Softkey settings class definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_VTUISOFTKEYSETTING_H
       
    20 #define C_VTUISOFTKEYSETTING_H
       
    21 
       
    22 #include "cvtuicommandsetting.h"
       
    23 
       
    24 class CVtUiSoftkeys;
       
    25 class CVtUiSoftkeyValidationAction;
       
    26 
       
    27 /**
       
    28  *  CVtUiSoftkeySetting
       
    29  *
       
    30  *  Softkey setting class definition.
       
    31  *
       
    32  *  @since S60 v3.2
       
    33  */
       
    34 class CVtUiSoftkeySetting :
       
    35     public CVtUiCommandSetting< CVtUiSoftkeyValidationAction >
       
    36     {
       
    37 
       
    38 public:
       
    39 
       
    40     /**
       
    41      * Constructor
       
    42      * @param aSoftkeys Reference to softkeysr.
       
    43      */
       
    44     CVtUiSoftkeySetting( CVtUiSoftkeys& aSoftkeys );
       
    45 
       
    46     /**
       
    47      * Destructor
       
    48      */
       
    49     ~CVtUiSoftkeySetting();
       
    50 
       
    51 public: // from CVtUiCommandSetting
       
    52 
       
    53     /**
       
    54      * @see CVtUiCommandSetting::DoDefineCommandsL
       
    55      */
       
    56     void DoDefineCommandsL();
       
    57 
       
    58 private:
       
    59 
       
    60     // Softkey container
       
    61     CVtUiSoftkeys* iSoftkeys;
       
    62 
       
    63     };
       
    64 
       
    65 #endif // C_VTUISOFTKEYSETTING_H