vtuis/videotelui/inc/commands/mvtuicommandsetting.h
branchRCL_3
changeset 24 f15ac8e65a02
parent 23 890b5dd735f8
child 25 779871d1e4f4
equal deleted inserted replaced
23:890b5dd735f8 24:f15ac8e65a02
     1 /*
       
     2 * Copyright (c) 2007 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:  Command iterator API definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_VTUICOMMANDSETTING_H
       
    20 #define M_VTUICOMMANDSETTING_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 /**
       
    25  *  MVtUiCommandSetting
       
    26  *
       
    27  *  Command Setting API.
       
    28  *
       
    29  *  @since S60 v3.2
       
    30  */
       
    31 class MVtUiCommandSetting
       
    32     {
       
    33 
       
    34 public:
       
    35 
       
    36     /**
       
    37      * Command types.
       
    38      */
       
    39     enum Type
       
    40         {
       
    41         /** Softkeys */
       
    42         ECommandTypeSoftkeys
       
    43         };
       
    44 
       
    45 public: // pure virtual methods
       
    46 
       
    47     /**
       
    48      * Does the base command definition. If no modifiers are registered, then
       
    49      * this method is called from DefineCommandsL(), otherwise this method may
       
    50      * be called by the modifier, but it is not required to do so.
       
    51      */
       
    52     virtual void DoDefineCommandsL() = 0;
       
    53 
       
    54     };
       
    55 
       
    56 
       
    57 #endif // M_VTUICOMMANDSETTING_H