summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexdialog.h
blob: 44a26f3041499d4f21ed5c45ac4d7bb7a75caedf (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
#ifndef OBEXDIALOG_H
#define OBEXDIALOG_H


#include <qdialog.h>
#include <opie2/oprocess.h>
#include <qlabel.h>
#include <qmultilineedit.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, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0);
        ~ObexDialog();


private slots:
        void browse();
        void sendData();
        void slotPushOut(Opie::Core::OProcess*, char*, int);
        void slotPushErr(Opie::Core::OProcess*, char*, int);
        void slotProcessExited(Opie::Core::OProcess* proc);   	
        
    protected:
        QVBoxLayout* layout;
        QLineEdit* cmdLine;
        QLineEdit* chNameLine;
        QPushButton* sendButton;
        QLabel* info;
        QMultiLineEdit* status;
        QLabel* statLine;
    private:
        // Device that is used
        QString m_device;
        Opie::Core::OProcess *obexSend;
    };
}
#endif