diff -r 594d59766373 -r 7d48bed6ce0c telutils/keysequencerecognitionservice/inc/manufacturerkeysequencehandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telutils/keysequencerecognitionservice/inc/manufacturerkeysequencehandler.h Tue Aug 31 15:45:17 2010 +0300 @@ -0,0 +1,76 @@ +/*! +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Implements manufacturer key sequence handling. +* +*/ + +#ifndef MANUFACTURERKEYSEQUENCEHANDLER_H +#define MANUFACTURERKEYSEQUENCEHANDLER_H + +#include +#include "keysequencehandler.h" + +class XQAiwRequest; + +class InterfaceDescription +{ +public: + InterfaceDescription() + : + m_service(""), + m_interface(""), + m_method("") {} + + InterfaceDescription( + const QString &service, + const QString &interface, + const QString &method) + : + m_service(service), + m_interface(interface), + m_method(method) {} + +public: + QString m_service; + QString m_interface; + QString m_method; +}; + +class ManufacturerKeySequenceHandler : public KeySequenceHandler +{ + Q_OBJECT + +public: + + ManufacturerKeySequenceHandler(QObject *parent = 0); + ~ManufacturerKeySequenceHandler(); + + bool executeKeySequence( + const QString &keySequence); + +private: + bool issueServiceRequest( + const InterfaceDescription &description); + +private slots: + void requestOk(const QVariant &returnValue); + void requestError(int error, const QString& errorMessage); + +private: + XQApplicationManager m_aiwManager; + QMap m_codeToInterfaceMappings; + QPointer m_currentRequest; +}; + +#endif // MANUFACTURERKEYSEQUENCEHANDLER_H