telutils/keysequencerecognitionservice/inc/bluetoothkeysequencehandler.h
changeset 51 12bc758d6a02
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
       
     1 /*!
       
     2 * Copyright (c) 2010 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: Implements bluetooth key sequence handling.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef BLUETOOTHKEYSEQUENCEHANDLER_H
       
    19 #define BLUETOOTHKEYSEQUENCEHANDLER_H
       
    20 
       
    21 #include "keysequencehandler.h"
       
    22 
       
    23 class BluetoothKeySequenceHandler : public KeySequenceHandler
       
    24 {
       
    25     Q_OBJECT
       
    26 
       
    27 public:
       
    28     BluetoothKeySequenceHandler(QObject *parent = 0);
       
    29     ~BluetoothKeySequenceHandler();
       
    30     
       
    31     bool executeKeySequence(const QString &keySequence);
       
    32 
       
    33 private:
       
    34     void showBluetoothLocalAddress();
       
    35     void activateBluetoothTestMode();
       
    36     void toggleBluetoothDebugMode();
       
    37 };
       
    38 
       
    39 #endif // BLUETOOTHKEYSEQUENCEHANDLER_H