summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/general.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/general.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/general.h26
1 files changed, 12 insertions, 14 deletions
diff --git a/noncore/settings/networksettings/ppp/general.h b/noncore/settings/networksettings/ppp/general.h
index 66a9eec..4869f6c 100644
--- a/noncore/settings/networksettings/ppp/general.h
+++ b/noncore/settings/networksettings/ppp/general.h
@@ -24,21 +24,19 @@
24 */ 24 */
25 25
26#ifndef _GENERAL_H_ 26#ifndef _GENERAL_H_
27#define _GENERAL_H_ 27#define _GENERAL_H_
28 28
29#include <qwidget.h> 29#include <qwidget.h>
30#include <qcombobox.h>
31#include <qlabel.h>
32#include <qcheckbox.h>
33#include <qgroupbox.h>
34#include <qpushbutton.h>
35//#include <kcolorbutton.h>
36 30
37class QSlider; 31class QSlider;
38class KIntNumInput; 32class QSpinBox;
33class QCombobox;
34class QLabel;
35class QCheckBox;
36class QComboBox;
39 37
40 38
41 39
42class ModemWidget : public QWidget { 40class ModemWidget : public QWidget {
43 Q_OBJECT 41 Q_OBJECT
44public: 42public:
@@ -51,23 +49,23 @@ private slots:
51 void modemlockfilechanged(bool); 49 void modemlockfilechanged(bool);
52 void setenter(int); 50 void setenter(int);
53 void speed_selection(int); 51 void speed_selection(int);
54 52
55private: 53private:
56 QComboBox *enter; 54 QComboBox *enter;
57 QLabel *label1; 55 /* QLabel *label1; */
58 QLabel *label2; 56 /* QLabel *label2; */
59 QLabel *labeltmp; 57 /* QLabel *labeltmp; */
60 QLabel *labelenter; 58 /* QLabel *labelenter; */
61 QComboBox *modemdevice; 59 QComboBox *modemdevice;
62 QComboBox *flowcontrol; 60 QComboBox *flowcontrol;
63 61
64 QComboBox *baud_c; 62 QComboBox *baud_c;
65 QLabel *baud_label; 63 QLabel *baud_label;
66 64
67 KIntNumInput *modemtimeout; 65 QSpinBox *modemtimeout;
68 QCheckBox *modemlockfile; 66 QCheckBox *modemlockfile;
69}; 67};
70 68
71 69
72class ModemWidget2 : public QWidget { 70class ModemWidget2 : public QWidget {
73 Q_OBJECT 71 Q_OBJECT
@@ -85,15 +83,15 @@ private slots:
85 83
86private: 84private:
87 QLabel *labeltmp; 85 QLabel *labeltmp;
88 QPushButton *modemcmds; 86 QPushButton *modemcmds;
89 QPushButton *modeminfo_button; 87 QPushButton *modeminfo_button;
90 // QPushButton *terminal_button; 88 // QPushButton *terminal_button;
91 QFrame *fline; 89 // QFrame *fline;
92 QCheckBox *waitfordt; 90 QCheckBox *waitfordt;
93 KIntNumInput *busywait; 91 QSpinBox *busywait;
94 QCheckBox *chkbox1; 92 QCheckBox *chkbox1;
95 QSlider *volume; 93 QSlider *volume;
96}; 94};
97 95
98#endif 96#endif
99 97