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


#include <qdialog.h>
#include <opie/oprocess.h>

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

class ObexDialog : public QDialog {

    Q_OBJECT

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


private slots:
    void browse();
    void sendData();

protected:
    QVBoxLayout* layout;
    QLineEdit* cmdLine;
    QLineEdit* chNameLine;
    QPushButton* sendButton;
private:
    // Device that is used
    QString m_device;
};

#endif