vtuis/videotelui/inc/features/prefs/cvtuibrightness.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:  Brightness ui feature
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef     C_VTUIBRIGHTNESS_H
       
    20 #define     C_VTUIBRIGHTNESS_H
       
    21 
       
    22 #include    "cvtuiprefsliderbase.h"
       
    23 
       
    24 /**
       
    25 *  CVtUiBrightness
       
    26 *
       
    27 *  Brightness ui feature
       
    28 *
       
    29 *  @since S60 v3.2
       
    30 */
       
    31 class CVtUiBrightness : public CVtUiPrefSliderBase
       
    32     {
       
    33 
       
    34 public:
       
    35 
       
    36     /**
       
    37     * Static constructor
       
    38     * @param aFeatureManager Reference to feature manager.
       
    39     */
       
    40     static CVtUiBrightness* NewL( CVtUiFeatureManager& aFeatureManager );
       
    41     
       
    42     /**
       
    43     * Destructor
       
    44     */
       
    45     ~CVtUiBrightness();
       
    46 
       
    47 public: // from CVtUiPrefSliderBase
       
    48     
       
    49     /** 
       
    50     * @see CVtUiPrefSliderBase::StartL
       
    51     */
       
    52     void StartL();
       
    53 
       
    54     /** 
       
    55     * @see CVtUiPrefSliderBase::Stop
       
    56     */
       
    57     void Stop();
       
    58     
       
    59 protected: 
       
    60 
       
    61     /*
       
    62     * Constructor
       
    63     */
       
    64     CVtUiBrightness( CVtUiFeatureManager& aFeatureManager );
       
    65 
       
    66     /**
       
    67     * 2nd constructor
       
    68     */
       
    69     void ConstructL(); 
       
    70 
       
    71     };
       
    72 
       
    73 #endif // C_VTUIBRIGHTNESS_H