-rw-r--r-- | noncore/unsupported/gsmtool/gsmtool.cpp | 47 | ||||
-rw-r--r-- | noncore/unsupported/gsmtool/gsmtoolbase.ui | 16 |
2 files changed, 59 insertions, 4 deletions
diff --git a/noncore/unsupported/gsmtool/gsmtool.cpp b/noncore/unsupported/gsmtool/gsmtool.cpp index 38c8c59..38baf45 100644 --- a/noncore/unsupported/gsmtool/gsmtool.cpp +++ b/noncore/unsupported/gsmtool/gsmtool.cpp @@ -1,14 +1,15 @@ #include "gsmtool.h" #include <qpushbutton.h> #include <qcombobox.h> #include <qlineedit.h> #include <qlabel.h> #include <qtabwidget.h> +#include <qlistview.h> #include <termios.h> #include <gsmlib/gsm_me_ta.h> #include <gsmlib/gsm_unix_serial.h> using namespace gsmlib; @@ -126,16 +127,62 @@ void GSMTool::timerEvent( QTimerEvent * ) SigStrLabel->setEnabled(TRUE); } } } void GSMTool::doScanButton() { qDebug("ScanButton"); + + NetworkList->setEnabled(FALSE); + AvailNetsLabel->setEnabled(FALSE); + NetworkList->clear(); + new QListViewItem(NetworkList, "Scanning..."); + + vector<OPInfo> opis; + + try { + opis = me->getAvailableOPInfo(); + } catch (GsmException) { + NetworkList->clear(); + new QListViewItem(NetworkList, "Scan failed..."); + return; + } + + NetworkList->clear(); + for (vector<OPInfo>::iterator i = opis.begin(); i != opis.end(); ++i) { + char *statustext; + switch (i->_status) { + + case UnknownOPStatus: + statustext = "unknown"; + break; + + case CurrentOPStatus: + statustext = "current"; + break; + + case AvailableOPStatus: + statustext = "available"; + break; + + case ForbiddenOPStatus: + statustext = "forbidden"; + break; + + default: + statustext = "(ERROR)"; + } + char num[7]; + snprintf(num, 6, "%d", i->_numericName); + new QListViewItem(NetworkList, i->_longName.c_str(), statustext, num, i->_shortName.c_str()); + } + NetworkList->setEnabled(TRUE); + AvailNetsLabel->setEnabled(TRUE); } /* * A simple slot... not very interesting. */ void GSMTool::doConnectButton() { gsmlib::Port *port; diff --git a/noncore/unsupported/gsmtool/gsmtoolbase.ui b/noncore/unsupported/gsmtool/gsmtoolbase.ui index 36a3d8e..72c943a 100644 --- a/noncore/unsupported/gsmtool/gsmtoolbase.ui +++ b/noncore/unsupported/gsmtool/gsmtoolbase.ui @@ -6,18 +6,18 @@ <name>name</name> <cstring>GSM Tool</cstring> </property> <property stdset="1"> <name>geometry</name> <rect> <x>0</x> <y>0</y> - <width>272</width> - <height>366</height> + <width>388</width> + <height>502</height> </rect> </property> <property stdset="1"> <name>caption</name> <string>GSM Tool</string> </property> <property> <name>layoutMargin</name> @@ -547,21 +547,21 @@ <property stdset="1"> <name>spacing</name> <number>1</number> </property> <widget> <class>QLabel</class> <property stdset="1"> <name>name</name> - <cstring>AltNetsLabel</cstring> + <cstring>AvailNetsLabel</cstring> </property> <property stdset="1"> <name>text</name> - <string>Alternative Networks:</string> + <string>Available Networks:</string> </property> </widget> <spacer> <property> <name>name</name> <cstring>Spacer13</cstring> </property> <property stdset="1"> @@ -651,16 +651,20 @@ <bool>true</bool> </property> </column> <property stdset="1"> <name>name</name> <cstring>NetworkList</cstring> </property> <property stdset="1"> + <name>enabled</name> + <bool>false</bool> + </property> + <property stdset="1"> <name>sizePolicy</name> <sizepolicy> <hsizetype>7</hsizetype> <vsizetype>7</vsizetype> </sizepolicy> </property> </widget> <widget> @@ -701,16 +705,20 @@ </spacer> <widget> <class>QPushButton</class> <property stdset="1"> <name>name</name> <cstring>RegisterButton</cstring> </property> <property stdset="1"> + <name>enabled</name> + <bool>false</bool> + </property> + <property stdset="1"> <name>sizePolicy</name> <sizepolicy> <hsizetype>7</hsizetype> <vsizetype>0</vsizetype> </sizepolicy> </property> <property stdset="1"> <name>text</name> |