summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppimp.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppimp.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppimp.cpp33
1 files changed, 27 insertions, 6 deletions
diff --git a/noncore/settings/networksettings/ppp/pppimp.cpp b/noncore/settings/networksettings/ppp/pppimp.cpp
index d3094fc..6588bbc 100644
--- a/noncore/settings/networksettings/ppp/pppimp.cpp
+++ b/noncore/settings/networksettings/ppp/pppimp.cpp
@@ -1,6 +1,18 @@
+
+#include <qcombobox.h>
+#include <qpushbutton.h>
+
#include "pppimp.h"
+#include "devices.h"
+#include "modem.h"
+#include "modeminfo.h"
+//#include "pppdata.h"
+
PPPConfigureImp::PPPConfigureImp( QWidget* parent, const char* name, bool modal, WFlags fl) : PPP(parent, name, modal, fl) {
+ for(int i = 0; devices[i]; i++)
+ ComboBoxDevice->insertItem(devices[i]);
+ connect(PushButtonQuery, SIGNAL(clicked()), SLOT(queryModem()));
}
@@ -8,5 +20,5 @@ PPPConfigureImp::PPPConfigureImp( QWidget* parent, const char* name, bool modal,
* Open up the peers file and read any set settings
* @param peer the peer file to edit.
- */
+ */
void PPPConfigureImp::setPeer(const QString &newPeer){
peer = newPeer;
@@ -15,5 +27,5 @@ void PPPConfigureImp::setPeer(const QString &newPeer){
/**
* Save the settings for the current peer.
- */
+ */
void PPPConfigureImp::accept(){
// Check to make sure that all of the inputs are valid.
@@ -28,6 +40,6 @@ usepeerdns - automaticly add dns
crtscts - flow control enabled
name <name> - user name (and do secret file)
-*/
-
+*/
+
// Make sure it is set in interfaces so pon/off can be used.
@@ -35,5 +47,14 @@ name <name> - user name (and do secret file)
QDialog::accept();
}
-
-// pppconfigureimp.h
+
+void PPPConfigureImp::queryModem()
+{
+
+ Modem::modem = new Modem();
+ qDebug("setting device");
+// gpppdata.setModemDevice(ComboBoxDevice->currentText());
+ qDebug("open dialog");
+ ModemTransfer mt(this);
+ mt.exec();
+}