bluetoothengine/btnotif/btdevicedialogplugin/inc/btsenddialogwidget.h
branchRCL_3
changeset 56 9386f31cc85b
parent 55 613943a21004
child 61 269724087bed
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
     1 /*
       
     2  * Copyright (c) 2009 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:  
       
    15  *
       
    16  */
       
    17 
       
    18 
       
    19 #ifndef BTSENDDIALOGWIDGET_H
       
    20 #define BTSENDDIALOGWIDGET_H
       
    21 
       
    22 #include <QObject>
       
    23 #include <QVariantMap>
       
    24 #include <hbdialog.h>
       
    25 #include <hbdevicedialoginterface.h>
       
    26 #include <hbpopup.h>
       
    27 #include <hbdocumentloader.h>
       
    28 #include <qstandarditemmodel.h>
       
    29 #include <hbprogressbar.h>
       
    30 #include <hblabel.h>
       
    31 #include <hblistview.h>
       
    32 #include <hbaction.h>
       
    33 
       
    34 
       
    35 class BTSendDialogWidget : public QObject,
       
    36                                 public HbDeviceDialogInterface
       
    37     {
       
    38     Q_OBJECT
       
    39     
       
    40 public:
       
    41     BTSendDialogWidget(const QVariantMap &parameters);
       
    42     ~BTSendDialogWidget();
       
    43     
       
    44 public: // from HbDeviceDialogInterface
       
    45     bool setDeviceDialogParameters(const QVariantMap &parameters);
       
    46     int deviceDialogError() const;
       
    47     void closeDeviceDialog(bool byClient);
       
    48     HbPopup *deviceDialogWidget() const;
       
    49     virtual QObject *signalSender() const;
       
    50     
       
    51 public slots:
       
    52 //    void hideClicked();
       
    53     void cancelClicked();
       
    54 //    void inputClosed(HbAction* action);
       
    55 private:
       
    56     bool constructDialog(const QVariantMap &parameters);
       
    57     void hideEvent(QHideEvent *event);
       
    58     void showEvent(QShowEvent *event);
       
    59     
       
    60 signals:
       
    61     void deviceDialogClosed();
       
    62     
       
    63 private:
       
    64     HbDocumentLoader *mLoader;
       
    65  //   QStandardItemModel* mContentItemModel;
       
    66     HbProgressBar*      mProgressBar;
       
    67     HbLabel*            mDialogHeading;
       
    68     HbLabel*            mFileIconLabel;
       
    69 	HbLabel*			mFileNameLabel;
       
    70 	HbLabel*			mFileSizeLabel;
       
    71     
       
    72 //    HbListView*         mListView;
       
    73     HbDialog *mSendDialog;
       
    74     HbAction *mHideAction;
       
    75     HbAction *mCancelAction;
       
    76     int       mFileIndex;
       
    77 
       
    78     
       
    79     Q_DISABLE_COPY(BTSendDialogWidget)
       
    80     };
       
    81 
       
    82 #endif /* BTSENDDIALOGWIDGET_H */