author | dwmw2 <dwmw2> | 2002-04-03 12:35:47 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-04-03 12:35:47 (UTC) |
commit | 65ffe04c08cae587dda25381065f986ae20490d3 (patch) (unidiff) | |
tree | 7d9e32c86c056b7d1bb67665ab5d06bfd1ab6ac1 | |
parent | baf2c30815ade433d18d1b6c8a7924c050344d23 (diff) | |
download | opie-65ffe04c08cae587dda25381065f986ae20490d3.zip opie-65ffe04c08cae587dda25381065f986ae20490d3.tar.gz opie-65ffe04c08cae587dda25381065f986ae20490d3.tar.bz2 |
Network list working...
-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 | |||
@@ -6,2 +6,3 @@ | |||
6 | #include <qtabwidget.h> | 6 | #include <qtabwidget.h> |
7 | #include <qlistview.h> | ||
7 | 8 | ||
@@ -133,2 +134,48 @@ void GSMTool::doScanButton() | |||
133 | qDebug("ScanButton"); | 134 | qDebug("ScanButton"); |
135 | |||
136 | NetworkList->setEnabled(FALSE); | ||
137 | AvailNetsLabel->setEnabled(FALSE); | ||
138 | NetworkList->clear(); | ||
139 | new QListViewItem(NetworkList, "Scanning..."); | ||
140 | |||
141 | vector<OPInfo> opis; | ||
142 | |||
143 | try { | ||
144 | opis = me->getAvailableOPInfo(); | ||
145 | } catch (GsmException) { | ||
146 | NetworkList->clear(); | ||
147 | new QListViewItem(NetworkList, "Scan failed..."); | ||
148 | return; | ||
149 | } | ||
150 | |||
151 | NetworkList->clear(); | ||
152 | for (vector<OPInfo>::iterator i = opis.begin(); i != opis.end(); ++i) { | ||
153 | char *statustext; | ||
154 | switch (i->_status) { | ||
155 | |||
156 | case UnknownOPStatus: | ||
157 | statustext = "unknown"; | ||
158 | break; | ||
159 | |||
160 | case CurrentOPStatus: | ||
161 | statustext = "current"; | ||
162 | break; | ||
163 | |||
164 | case AvailableOPStatus: | ||
165 | statustext = "available"; | ||
166 | break; | ||
167 | |||
168 | case ForbiddenOPStatus: | ||
169 | statustext = "forbidden"; | ||
170 | break; | ||
171 | |||
172 | default: | ||
173 | statustext = "(ERROR)"; | ||
174 | } | ||
175 | char num[7]; | ||
176 | snprintf(num, 6, "%d", i->_numericName); | ||
177 | new QListViewItem(NetworkList, i->_longName.c_str(), statustext, num, i->_shortName.c_str()); | ||
178 | } | ||
179 | NetworkList->setEnabled(TRUE); | ||
180 | AvailNetsLabel->setEnabled(TRUE); | ||
134 | } | 181 | } |
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 | |||
@@ -13,4 +13,4 @@ | |||
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>272</width> | 14 | <width>388</width> |
15 | <height>366</height> | 15 | <height>502</height> |
16 | </rect> | 16 | </rect> |
@@ -554,3 +554,3 @@ | |||
554 | <name>name</name> | 554 | <name>name</name> |
555 | <cstring>AltNetsLabel</cstring> | 555 | <cstring>AvailNetsLabel</cstring> |
556 | </property> | 556 | </property> |
@@ -558,3 +558,3 @@ | |||
558 | <name>text</name> | 558 | <name>text</name> |
559 | <string>Alternative Networks:</string> | 559 | <string>Available Networks:</string> |
560 | </property> | 560 | </property> |
@@ -658,2 +658,6 @@ | |||
658 | <property stdset="1"> | 658 | <property stdset="1"> |
659 | <name>enabled</name> | ||
660 | <bool>false</bool> | ||
661 | </property> | ||
662 | <property stdset="1"> | ||
659 | <name>sizePolicy</name> | 663 | <name>sizePolicy</name> |
@@ -708,2 +712,6 @@ | |||
708 | <property stdset="1"> | 712 | <property stdset="1"> |
713 | <name>enabled</name> | ||
714 | <bool>false</bool> | ||
715 | </property> | ||
716 | <property stdset="1"> | ||
709 | <name>sizePolicy</name> | 717 | <name>sizePolicy</name> |