summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/dundialog.cpp
authorkorovkin <korovkin>2006-04-05 19:29:19 (UTC)
committer korovkin <korovkin>2006-04-05 19:29:19 (UTC)
commit6c1c44237a16dc8fed89905ae729e36eb9711c07 (patch) (unidiff)
treecfcb46f571669c0d8e57ee703c712b09ed8af185 /noncore/net/opietooth/manager/dundialog.cpp
parent31ea6e9f697d72a31ce319f7f42254fe90e48a36 (diff)
downloadopie-6c1c44237a16dc8fed89905ae729e36eb9711c07.zip
opie-6c1c44237a16dc8fed89905ae729e36eb9711c07.tar.gz
opie-6c1c44237a16dc8fed89905ae729e36eb9711c07.tar.bz2
Added combobox with ppp script names from /etc/ppp/peers.
Diffstat (limited to 'noncore/net/opietooth/manager/dundialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/dundialog.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/noncore/net/opietooth/manager/dundialog.cpp b/noncore/net/opietooth/manager/dundialog.cpp
index c6d8619..872ab00 100644
--- a/noncore/net/opietooth/manager/dundialog.cpp
+++ b/noncore/net/opietooth/manager/dundialog.cpp
@@ -13,23 +13,29 @@
13#include <qmultilineedit.h> 13#include <qmultilineedit.h>
14#include <qlineedit.h> 14#include <qlineedit.h>
15#include <qlayout.h> 15#include <qlayout.h>
16#include <qcheckbox.h> 16#include <qcheckbox.h>
17#include <qlabel.h> 17#include <qlabel.h>
18#include <qstring.h> 18#include <qstring.h>
19#include <qcombobox.h>
20#include <qdir.h>
19#include <opie2/oprocess.h> 21#include <opie2/oprocess.h>
20#include <opie2/odebug.h> 22#include <opie2/odebug.h>
21using namespace Opie::Core; 23using namespace Opie::Core;
22 24
23using namespace OpieTooth; 25using namespace OpieTooth;
24 26
25using namespace Opie::Core; 27using namespace Opie::Core;
26 28
27DunDialog::DunDialog( const QString& device, int port, QWidget* parent, 29DunDialog::DunDialog( const QString& device, int port, QWidget* parent,
28 const char* name, bool modal, WFlags fl ) 30 const char* name, bool modal, WFlags fl )
29 : QDialog( parent, name, modal, fl ) { 31 : QDialog( parent, name, modal, fl ) {
32 QDir d("/etc/ppp/peers/"); //Dir we search files in
33 d.setFilter( QDir::Files);
34 d.setSorting( QDir::Size | QDir::Reversed );
35
30 if ( !name ) 36 if ( !name )
31 setName( "DUNDialog" ); 37 setName( "DUNDialog" );
32 setCaption( tr( "DUN connection " ) ) ; 38 setCaption( tr( "DUN connection " ) ) ;
33 39
34 m_device = device; 40 m_device = device;
35 m_port = port; 41 m_port = port;
@@ -37,13 +43,14 @@ DunDialog::DunDialog( const QString& device, int port, QWidget* parent,
37 m_dunConnect = NULL; 43 m_dunConnect = NULL;
38 layout = new QVBoxLayout( this ); 44 layout = new QVBoxLayout( this );
39 45
40 QLabel* info = new QLabel( this ); 46 QLabel* info = new QLabel( this );
41 info->setText( tr("Enter an ppp script name:") ); 47 info->setText( tr("Enter an ppp script name:") );
42 48
43 cmdLine = new QLineEdit( this ); 49 cmdLine = new QComboBox( this );
50 cmdLine->setEditable(true);
44 51
45 outPut = new QMultiLineEdit( this ); 52 outPut = new QMultiLineEdit( this );
46 QFont outPut_font( outPut->font() ); 53 QFont outPut_font( outPut->font() );
47 outPut_font.setPointSize( 8 ); 54 outPut_font.setPointSize( 8 );
48 outPut->setFont( outPut_font ); 55 outPut->setFont( outPut_font );
49 outPut->setWordWrap( QMultiLineEdit::WidgetWidth ); 56 outPut->setWordWrap( QMultiLineEdit::WidgetWidth );
@@ -62,22 +69,24 @@ DunDialog::DunDialog( const QString& device, int port, QWidget* parent,
62 layout->addWidget(doEncryption); 69 layout->addWidget(doEncryption);
63 layout->addWidget(persist); 70 layout->addWidget(persist);
64 layout->addWidget(outPut); 71 layout->addWidget(outPut);
65 layout->addWidget(connectButton); 72 layout->addWidget(connectButton);
66 73
67 connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) ); 74 connect( connectButton, SIGNAL( clicked() ), this, SLOT( connectToDevice() ) );
75 //And fill cmdLine with ppp script filenames
76 cmdLine->insertStringList(d.entryList());
68} 77}
69 78
70DunDialog::~DunDialog() { 79DunDialog::~DunDialog() {
71} 80}
72 81
73void DunDialog::connectToDevice() { 82void DunDialog::connectToDevice() {
74 bool doEnc = doEncryption->isChecked(); 83 bool doEnc = doEncryption->isChecked();
75 bool doPersist = persist->isChecked(); 84 bool doPersist = persist->isChecked();
76 85
77 if (cmdLine->text() == "") 86 if (cmdLine->currentText() == "")
78 return; 87 return;
79 if (m_dunConnect) { 88 if (m_dunConnect) {
80 outPut->append(tr("Work in progress")); 89 outPut->append(tr("Work in progress"));
81 return; 90 return;
82 } 91 }
83 m_dunConnect = new OProcess(); 92 m_dunConnect = new OProcess();
@@ -90,13 +99,13 @@ void DunDialog::connectToDevice() {
90 << tr("--nodetach"); 99 << tr("--nodetach");
91 if (doEnc) 100 if (doEnc)
92 *m_dunConnect << tr("--encrypt"); 101 *m_dunConnect << tr("--encrypt");
93 if (doPersist) 102 if (doPersist)
94 *m_dunConnect << tr("--persist"); 103 *m_dunConnect << tr("--persist");
95 *m_dunConnect << tr("call") 104 *m_dunConnect << tr("call")
96 << cmdLine->text(); 105 << cmdLine->currentText();
97 if (!m_dunConnect->start(OProcess::NotifyOnExit, 106 if (!m_dunConnect->start(OProcess::NotifyOnExit,
98 OProcess::All)) { 107 OProcess::All)) {
99 outPut->append(tr("Couldn't start")); 108 outPut->append(tr("Couldn't start"));
100 delete m_dunConnect; 109 delete m_dunConnect;
101 m_dunConnect = NULL; 110 m_dunConnect = NULL;
102 } 111 }