summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/modemcmds.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/modemcmds.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/modemcmds.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/ppp/modemcmds.h b/noncore/settings/networksettings/ppp/modemcmds.h
index 9d078ec..ef69fec 100644
--- a/noncore/settings/networksettings/ppp/modemcmds.h
+++ b/noncore/settings/networksettings/ppp/modemcmds.h
@@ -23,56 +23,57 @@
23 * 23 *
24 * You should have received a copy of the GNU Library General Public 24 * You should have received a copy of the GNU Library General Public
25 * License along with this program; if not, write to the Free 25 * License along with this program; if not, write to the Free
26 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 26 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * 27 *
28 */ 28 */
29 29
30 30
31#ifndef _MODEMCMDS_H_ 31#ifndef _MODEMCMDS_H_
32#define _MODEMCMDS_H_ 32#define _MODEMCMDS_H_
33 33
34#include <qgroupbox.h> 34#include <qgroupbox.h>
35#include <qdialog.h> 35#include <qdialog.h>
36#include <qlineedit.h> 36#include <qlineedit.h>
37#include <qpushbutton.h> 37#include <qpushbutton.h>
38#include <qlabel.h> 38#include <qlabel.h>
39#include "pppdata.h" 39#include "pppdata.h"
40 40
41class ModemCommands : public QDialog { 41class ModemCommands : public QDialog {
42 42
43Q_OBJECT 43Q_OBJECT
44 44
45public: 45public:
46 46
47 ModemCommands(QWidget *parent=0, const char *name=0); 47 ModemCommands(PPPData*, QWidget *parent=0, const char *name=0);
48 ~ModemCommands() {} 48 ~ModemCommands() {}
49 49
50private slots: 50private slots:
51 void slotCancel(); 51 void slotCancel();
52 void slotOk(); 52 void slotOk();
53 53
54private: 54private:
55 PPPData *_pppdata;
55 56
56 QGroupBox *box; 57 QGroupBox *box;
57 58
58 QLineEdit *initstr[int(PPPData::NumInitStrings)]; 59 QLineEdit *initstr[int(PPPData::NumInitStrings)];
59 60
60 QLineEdit *initresp; 61 QLineEdit *initresp;
61 QLabel *label2; 62 QLabel *label2;
62 63
63 QLabel *lpreinitslider; 64 QLabel *lpreinitslider;
64 QLabel *lpreinit; 65 QLabel *lpreinit;
65 66
66 QLabel *linitslider; 67 QLabel *linitslider;
67 QLabel *label3; 68 QLabel *label3;
68 69
69 QLabel *ldurationslider; 70 QLabel *ldurationslider;
70 QLabel *lduration; 71 QLabel *lduration;
71 72
72 QLineEdit *nodetectdialtone; 73 QLineEdit *nodetectdialtone;
73 QLabel *lnodetectdialtone; 74 QLabel *lnodetectdialtone;
74 75
75 QLineEdit *dialstr; 76 QLineEdit *dialstr;
76 QLabel *label4; 77 QLabel *label4;
77 78
78 QLineEdit *connectresp; 79 QLineEdit *connectresp;