From d2e426b08b972ffc0aef0479bd3523df14e5f4e4 Mon Sep 17 00:00:00 2001 From: harlekin Date: Fri, 12 Jul 2002 23:42:44 +0000 Subject: dialog for dialing via ppp --- (limited to 'noncore/net/opietooth/manager/pppdialog.cpp') diff --git a/noncore/net/opietooth/manager/pppdialog.cpp b/noncore/net/opietooth/manager/pppdialog.cpp new file mode 100644 index 0000000..472da73 --- a/dev/null +++ b/noncore/net/opietooth/manager/pppdialog.cpp @@ -0,0 +1,65 @@ + +#include "pppdialog.h" +#include +#include +#include +#include +#include +#include + +PPPDialog::PPPDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) + : QDialog( parent, name, modal, fl ) { + + if ( !name ) + setName( "PPPDialog" ); + setCaption( tr( "ppp connection " ) ) ; + + layout = new QVBoxLayout( this ); + + QLabel* info = new QLabel( this ); + info->setText( "Enter an ppp script name:" ); + + cmdLine = new QLineEdit( this ); + + outPut = new QMultiLineEdit( this ); + QFont outPut_font( outPut->font() ); + outPut_font.setPointSize( 8 ); + outPut->setFont( outPut_font ); + outPut->setWordWrap( QMultiLineEdit::WidgetWidth ); + + connectButton = new QPushButton( this ); + connectButton->setText( tr( "Connect" ) ); + + layout->addWidget(info); + layout->addWidget(cmdLine); + layout->addWidget(outPut); + layout->addWidget(connectButton); + + connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) ); + +} + +PPPDialog::~PPPDialog() { +} + +void PPPDialog::connectToDevice() { + outPut->clear(); + // vom popupmenu beziehen + QString devName = "/dev/ttyU0"; + QString connectScript = "/etc/ppp/peers/" + cmdLine->text(); + OProcess* pppDial = new OProcess(); + *pppDial << "pppd" << devName << "call" << connectScript; + connect( pppDial, SIGNAL(receivedStdout(OProcess*, char*, int ) ), + this, SLOT(fillOutPut(OProcess*, char*, int ) ) ); + if (!pppDial->start(OProcess::DontCare, OProcess::AllOutput) ) { + qWarning("could not start"); + delete pppDial; + } +} + +void PPPDialog::fillOutPut( OProcess* pppDial, char* cha, int len ) { + QCString str(cha, len ); + outPut->insertLine( str ); + delete pppDial; +} + -- cgit v0.9.0.2