bluetoothengine/bthid/bthidkbdsettings/inc/btkeyenumtextsettingitem.h
branchRCL_3
changeset 56 9386f31cc85b
parent 0 f63038272f30
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
       
     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:  Declares the setting view for keyboard device.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __BTKEYENUMTEXTSETTINGITEM_H__
       
    20 #define __BTKEYENUMTEXTSETTINGITEM_H__
       
    21 
       
    22 #include <aknsettingitemlist.h>
       
    23 
       
    24 class CBtHidSettings;
       
    25 class CBtHidSettingView;
       
    26 
       
    27 class CBTKeyEnumTextSettingItem : public CAknEnumeratedTextPopupSettingItem
       
    28     {
       
    29 public:
       
    30 
       
    31     /*!
       
    32      Constructs this object
       
    33      */
       
    34     CBTKeyEnumTextSettingItem(TInt aResourceId, TInt& aValue,
       
    35             CBtHidSettings& aSettings, CBtHidSettingView* aBtHidSettingView);
       
    36 
       
    37     /*!
       
    38      Destroy the object and release all memory objects
       
    39      */
       
    40     ~CBTKeyEnumTextSettingItem();
       
    41 
       
    42 public:
       
    43     // from CAknSettingItem
       
    44     void HandleSettingPageEventL(CAknSettingPage *aSettingPage,
       
    45             TAknSettingPageEvent aEventType);
       
    46 
       
    47 private:
       
    48     CBtHidSettings& iSettings;
       
    49     CBtHidSettingView* iBtHidSettingView;
       
    50     };
       
    51 
       
    52 #endif // __BTKEYENUMTEXTSETTINGITEM_H__