summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pppdialog.h
blob: d55c15f85c4b50f5e6b083b5a9daf19277bdeb74 (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
52
53
54
55
56
57
58
59
60
61
/* $Id$ */
/* PPP/rfcomm connection dialog */
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef PPPDIALOG_H
#define PPPDIALOG_H


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

class QVBoxLayout;
class QPushButton;
class QMultiLineEdit;
class QLineEdit;
class QComboBox;
#define NCONNECTS 10 //Maximal 

namespace OpieTooth {
    typedef struct {
      Opie::Core::OProcess proc; //Connection process
      QString btAddr; //MAC address
      int port; //port
    } Connection;

    class PPPDialog : public QDialog {

        Q_OBJECT

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

    private slots:
        void connectToDevice();
        void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
        void fillErr(Opie::Core::OProcess*, char*, int);
        void slotProcessExited(Opie::Core::OProcess* proc);
        void closeEvent(QCloseEvent* e);
    public:
        //Array of connections indexed by rfcomm device number
        static Connection conns[NCONNECTS];
    protected:
        QVBoxLayout* layout;
        QComboBox* cmdLine;
        QPushButton* connectButton;
        QMultiLineEdit* outPut;
        QComboBox* serPort;

    private:
        QString m_device;
        int m_port;
    };
}
#endif