bluetoothengine/btnotif/btdevicedialogplugin/inc/btdevicedialognotifwidget.h
author hgs
Wed, 20 Oct 2010 15:06:55 +0300
changeset 71 083fd884d7dd
parent 57 5ebadcda06cb
permissions -rw-r--r--
201041_02

/*
* 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:  BtDeviceDialogWidget class declaration.
*
*/


#ifndef BTDEVICEDIALOGNOTIFWIDGET_H
#define BTDEVICEDIALOGNOTIFWIDGET_H

#include <QVariantMap>

#include <hbpopup.h>
#include <hbdevicedialoginterface.h>
#include <hbaction.h>
#include <hbnotificationdialog.h>

/*!
    \class BtDeviceDialogNotifWidget
    \brief Widget class with properties setting. 

    BtDeviceDialogNotifWidget, inherited from HbDeviceDialogInterface, 
    uses HbNotificationDialog. 
    
 */
class BtDeviceDialogNotifWidget :
    public QObject, public HbDeviceDialogInterface
{
    Q_OBJECT
    
public:
    BtDeviceDialogNotifWidget(const QVariantMap &parameters);
    ~BtDeviceDialogNotifWidget();
    
    // From base class HbDeviceDialogInterface
    virtual bool setDeviceDialogParameters(const QVariantMap &parameters);
    virtual int deviceDialogError() const;
    virtual void closeDeviceDialog(bool byClient);
    HbPopup *deviceDialogWidget() const;
    virtual QObject *signalSender() const;

signals: 
    // Required by the framework
    void deviceDialogClosed();
    void deviceDialogData(QVariantMap data);
    
private:
    
    void processParam(const QVariantMap &parameters);
    bool constructNotifDialog(const QVariantMap &parameters);
    void resetProperties();
        
public slots:
    void NotifClosed(HbAction *action);
    
private:
    Q_DISABLE_COPY(BtDeviceDialogNotifWidget)

    int mLastError;
    int mSendAction;
    bool mShowEventReceived;
    HbNotificationDialog* mNotificationDialog;
};

#endif // BTDEVICEDIALOGNOTIFWIDGET_H