summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pppdialog.h
blob: b80b73dbe684631652806fada34a0f27fe8a8b14 (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
#ifndef PPPDIALOG_H
#define PPPDIALOG_H


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

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

class PPPDialog : public QDialog {

    Q_OBJECT

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


private slots:
    void connectToDevice();
    void fillOutPut( OProcess* pppDial, char* cha, int len );
protected:
    QVBoxLayout* layout;
    QLineEdit* cmdLine;
    QPushButton* connectButton;
    QMultiLineEdit* outPut;

private:
    QString m_device;
};
#endif