summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexdialog.h
blob: 063b7f18a0926499cbd873e9efa393c2d2439e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef OBEXDIALOG_H
#define OBEXDIALOG_H


#include <qdialog.h>
#include <qlabel.h>
#include <qmultilineedit.h>
#include "obexpush.h"

class QVBoxLayout;
class QPushButton;
class QMultiLineEdit;
class QLineEdit;

namespace Opie {namespace Core {class OProcess;}}
namespace OpieTooth {

    class ObexDialog : public QDialog {

        Q_OBJECT

    public:
        ObexDialog( const QString& device = 0, int port = 0, 
            QWidget* parent = 0, const char* name = 0, 
            bool modal = TRUE, WFlags fl = 0);
        ~ObexDialog();


private slots:
        void browse();
        void sendData();
        void slotPushStatus(QCString&);
        void slotPushComplete(int);
        void slotPushError(int);
        
    protected:
        QVBoxLayout* layout;
        QLineEdit* cmdLine;
        QLineEdit* chNameLine;
        QPushButton* sendButton;
        QLabel* info;
        QMultiLineEdit* status;
        QLabel* statLine;
    private:
        // Device that is used
        QString m_device;
        int m_port; //Port used
        ObexPush* obexSend;
    };
}
#endif