author | mickeyl <mickeyl> | 2002-11-21 17:59:47 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2002-11-21 17:59:47 (UTC) |
commit | caf4327beab6e7e47f3eedcec71de7b28b03485f (patch) (unidiff) | |
tree | 3455b9e7ba7951217f58a75db845663c165b80b3 | |
parent | 1c1eabfe924ba0e1be8b3ce1d4d837ac15855f74 (diff) | |
download | opie-caf4327beab6e7e47f3eedcec71de7b28b03485f.zip opie-caf4327beab6e7e47f3eedcec71de7b28b03485f.tar.gz opie-caf4327beab6e7e47f3eedcec71de7b28b03485f.tar.bz2 |
- new tab for the log window
- main.cpp fix
- started work on scanlistitem
-rw-r--r-- | noncore/net/wellenreiter/gui/main.cpp | 2 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/scanlistitem.cpp | 17 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/scanlistitem.h | 27 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiterbase.ui | 57 | ||||
-rw-r--r-- | noncore/net/wellenreiter/wellenreiter.pro | 4 |
5 files changed, 92 insertions, 15 deletions
diff --git a/noncore/net/wellenreiter/gui/main.cpp b/noncore/net/wellenreiter/gui/main.cpp index 640ba3e..f8dc5d7 100644 --- a/noncore/net/wellenreiter/gui/main.cpp +++ b/noncore/net/wellenreiter/gui/main.cpp | |||
@@ -4,25 +4,25 @@ | |||
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #include "gui/wellenreiter.h" | 16 | #include "wellenreiter.h" |
17 | #include <qpe/qpeapplication.h> | 17 | #include <qpe/qpeapplication.h> |
18 | 18 | ||
19 | int main( int argc, char **argv ) | 19 | int main( int argc, char **argv ) |
20 | { | 20 | { |
21 | QPEApplication a( argc, argv ); | 21 | QPEApplication a( argc, argv ); |
22 | 22 | ||
23 | Wellenreiter e; | 23 | Wellenreiter e; |
24 | 24 | ||
25 | e.setCaption( Wellenreiter::tr("Wellenreiter") ); | 25 | e.setCaption( Wellenreiter::tr("Wellenreiter") ); |
26 | a.showMainWidget(&e); | 26 | a.showMainWidget(&e); |
27 | 27 | ||
28 | return a.exec(); | 28 | return a.exec(); |
diff --git a/noncore/net/wellenreiter/gui/scanlistitem.cpp b/noncore/net/wellenreiter/gui/scanlistitem.cpp new file mode 100644 index 0000000..267e543 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/scanlistitem.cpp | |||
@@ -0,0 +1,17 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #include "scanlistitem.h" | ||
17 | #include <qlistview.h> | ||
diff --git a/noncore/net/wellenreiter/gui/scanlistitem.h b/noncore/net/wellenreiter/gui/scanlistitem.h new file mode 100644 index 0000000..2bed9d0 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/scanlistitem.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #ifndef SCANLISTITEM_H | ||
17 | #define SCANLISTITEM_H | ||
18 | |||
19 | #include <qlistview.h> | ||
20 | |||
21 | class MScanListItem: public QListViewItem | ||
22 | { | ||
23 | |||
24 | }; | ||
25 | |||
26 | #endif | ||
27 | |||
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.ui b/noncore/net/wellenreiter/gui/wellenreiterbase.ui index 6db3a36..9627da7 100644 --- a/noncore/net/wellenreiter/gui/wellenreiterbase.ui +++ b/noncore/net/wellenreiter/gui/wellenreiterbase.ui | |||
@@ -2,25 +2,25 @@ | |||
2 | <class>WellenreiterBase</class> | 2 | <class>WellenreiterBase</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QWidget</class> | 4 | <class>QWidget</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>WellenreiterBase</cstring> | 7 | <cstring>WellenreiterBase</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>211</width> | 14 | <width>207</width> |
15 | <height>294</height> | 15 | <height>294</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Wellenreiter</string> | 20 | <string>Wellenreiter</string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
@@ -50,78 +50,78 @@ | |||
50 | <class>QWidget</class> | 50 | <class>QWidget</class> |
51 | <property stdset="1"> | 51 | <property stdset="1"> |
52 | <name>name</name> | 52 | <name>name</name> |
53 | <cstring>ap</cstring> | 53 | <cstring>ap</cstring> |
54 | </property> | 54 | </property> |
55 | <attribute> | 55 | <attribute> |
56 | <name>title</name> | 56 | <name>title</name> |
57 | <string>Networks</string> | 57 | <string>Networks</string> |
58 | </attribute> | 58 | </attribute> |
59 | <vbox> | 59 | <vbox> |
60 | <property stdset="1"> | 60 | <property stdset="1"> |
61 | <name>margin</name> | 61 | <name>margin</name> |
62 | <number>0</number> | 62 | <number>2</number> |
63 | </property> | 63 | </property> |
64 | <property stdset="1"> | 64 | <property stdset="1"> |
65 | <name>spacing</name> | 65 | <name>spacing</name> |
66 | <number>2</number> | 66 | <number>2</number> |
67 | </property> | 67 | </property> |
68 | <widget> | 68 | <widget> |
69 | <class>QListView</class> | 69 | <class>QListView</class> |
70 | <column> | 70 | <column> |
71 | <property> | 71 | <property> |
72 | <name>text</name> | 72 | <name>text</name> |
73 | <string>Net</string> | 73 | <string>Net</string> |
74 | </property> | 74 | </property> |
75 | <property> | 75 | <property> |
76 | <name>clickable</name> | 76 | <name>clickable</name> |
77 | <bool>true</bool> | 77 | <bool>true</bool> |
78 | </property> | 78 | </property> |
79 | <property> | 79 | <property> |
80 | <name>resizeable</name> | 80 | <name>resizeable</name> |
81 | <bool>true</bool> | 81 | <bool>true</bool> |
82 | </property> | 82 | </property> |
83 | </column> | 83 | </column> |
84 | <column> | 84 | <column> |
85 | <property> | 85 | <property> |
86 | <name>text</name> | 86 | <name>text</name> |
87 | <string>SSID</string> | 87 | <string>Sig</string> |
88 | </property> | 88 | </property> |
89 | <property> | 89 | <property> |
90 | <name>clickable</name> | 90 | <name>clickable</name> |
91 | <bool>true</bool> | 91 | <bool>true</bool> |
92 | </property> | 92 | </property> |
93 | <property> | 93 | <property> |
94 | <name>resizeable</name> | 94 | <name>resizeable</name> |
95 | <bool>true</bool> | 95 | <bool>true</bool> |
96 | </property> | 96 | </property> |
97 | </column> | 97 | </column> |
98 | <column> | 98 | <column> |
99 | <property> | 99 | <property> |
100 | <name>text</name> | 100 | <name>text</name> |
101 | <string>AP</string> | 101 | <string>SSID</string> |
102 | </property> | 102 | </property> |
103 | <property> | 103 | <property> |
104 | <name>clickable</name> | 104 | <name>clickable</name> |
105 | <bool>true</bool> | 105 | <bool>true</bool> |
106 | </property> | 106 | </property> |
107 | <property> | 107 | <property> |
108 | <name>resizeable</name> | 108 | <name>resizeable</name> |
109 | <bool>true</bool> | 109 | <bool>true</bool> |
110 | </property> | 110 | </property> |
111 | </column> | 111 | </column> |
112 | <column> | 112 | <column> |
113 | <property> | 113 | <property> |
114 | <name>text</name> | 114 | <name>text</name> |
115 | <string>WEP</string> | 115 | <string>AP</string> |
116 | </property> | 116 | </property> |
117 | <property> | 117 | <property> |
118 | <name>clickable</name> | 118 | <name>clickable</name> |
119 | <bool>true</bool> | 119 | <bool>true</bool> |
120 | </property> | 120 | </property> |
121 | <property> | 121 | <property> |
122 | <name>resizeable</name> | 122 | <name>resizeable</name> |
123 | <bool>true</bool> | 123 | <bool>true</bool> |
124 | </property> | 124 | </property> |
125 | </column> | 125 | </column> |
126 | <column> | 126 | <column> |
127 | <property> | 127 | <property> |
@@ -131,25 +131,25 @@ | |||
131 | <property> | 131 | <property> |
132 | <name>clickable</name> | 132 | <name>clickable</name> |
133 | <bool>true</bool> | 133 | <bool>true</bool> |
134 | </property> | 134 | </property> |
135 | <property> | 135 | <property> |
136 | <name>resizeable</name> | 136 | <name>resizeable</name> |
137 | <bool>true</bool> | 137 | <bool>true</bool> |
138 | </property> | 138 | </property> |
139 | </column> | 139 | </column> |
140 | <column> | 140 | <column> |
141 | <property> | 141 | <property> |
142 | <name>text</name> | 142 | <name>text</name> |
143 | <string>Sig</string> | 143 | <string>WEP</string> |
144 | </property> | 144 | </property> |
145 | <property> | 145 | <property> |
146 | <name>clickable</name> | 146 | <name>clickable</name> |
147 | <bool>true</bool> | 147 | <bool>true</bool> |
148 | </property> | 148 | </property> |
149 | <property> | 149 | <property> |
150 | <name>resizeable</name> | 150 | <name>resizeable</name> |
151 | <bool>true</bool> | 151 | <bool>true</bool> |
152 | </property> | 152 | </property> |
153 | </column> | 153 | </column> |
154 | <property stdset="1"> | 154 | <property stdset="1"> |
155 | <name>name</name> | 155 | <name>name</name> |
@@ -161,44 +161,72 @@ | |||
161 | </property> | 161 | </property> |
162 | <property stdset="1"> | 162 | <property stdset="1"> |
163 | <name>frameShadow</name> | 163 | <name>frameShadow</name> |
164 | <enum>Sunken</enum> | 164 | <enum>Sunken</enum> |
165 | </property> | 165 | </property> |
166 | </widget> | 166 | </widget> |
167 | </vbox> | 167 | </vbox> |
168 | </widget> | 168 | </widget> |
169 | <widget> | 169 | <widget> |
170 | <class>QWidget</class> | 170 | <class>QWidget</class> |
171 | <property stdset="1"> | 171 | <property stdset="1"> |
172 | <name>name</name> | 172 | <name>name</name> |
173 | <cstring>tab</cstring> | 173 | <cstring>Log</cstring> |
174 | </property> | ||
175 | <attribute> | ||
176 | <name>title</name> | ||
177 | <string>Log</string> | ||
178 | </attribute> | ||
179 | <vbox> | ||
180 | <property stdset="1"> | ||
181 | <name>margin</name> | ||
182 | <number>2</number> | ||
183 | </property> | ||
184 | <property stdset="1"> | ||
185 | <name>spacing</name> | ||
186 | <number>2</number> | ||
187 | </property> | ||
188 | <widget> | ||
189 | <class>QMultiLineEdit</class> | ||
190 | <property stdset="1"> | ||
191 | <name>name</name> | ||
192 | <cstring>Log</cstring> | ||
193 | </property> | ||
194 | </widget> | ||
195 | </vbox> | ||
196 | </widget> | ||
197 | <widget> | ||
198 | <class>QWidget</class> | ||
199 | <property stdset="1"> | ||
200 | <name>name</name> | ||
201 | <cstring>About</cstring> | ||
174 | </property> | 202 | </property> |
175 | <attribute> | 203 | <attribute> |
176 | <name>title</name> | 204 | <name>title</name> |
177 | <string>About</string> | 205 | <string>About</string> |
178 | </attribute> | 206 | </attribute> |
179 | <vbox> | 207 | <vbox> |
180 | <property stdset="1"> | 208 | <property stdset="1"> |
181 | <name>margin</name> | 209 | <name>margin</name> |
182 | <number>11</number> | 210 | <number>8</number> |
183 | </property> | 211 | </property> |
184 | <property stdset="1"> | 212 | <property stdset="1"> |
185 | <name>spacing</name> | 213 | <name>spacing</name> |
186 | <number>6</number> | 214 | <number>2</number> |
187 | </property> | 215 | </property> |
188 | <widget> | 216 | <widget> |
189 | <class>QLabel</class> | 217 | <class>QLabel</class> |
190 | <property stdset="1"> | 218 | <property stdset="1"> |
191 | <name>name</name> | 219 | <name>name</name> |
192 | <cstring>PixmapLabel1</cstring> | 220 | <cstring>PixmapLabel1_3</cstring> |
193 | </property> | 221 | </property> |
194 | <property stdset="1"> | 222 | <property stdset="1"> |
195 | <name>sizePolicy</name> | 223 | <name>sizePolicy</name> |
196 | <sizepolicy> | 224 | <sizepolicy> |
197 | <hsizetype>0</hsizetype> | 225 | <hsizetype>0</hsizetype> |
198 | <vsizetype>0</vsizetype> | 226 | <vsizetype>0</vsizetype> |
199 | </sizepolicy> | 227 | </sizepolicy> |
200 | </property> | 228 | </property> |
201 | <property stdset="1"> | 229 | <property stdset="1"> |
202 | <name>frameShape</name> | 230 | <name>frameShape</name> |
203 | <enum>Panel</enum> | 231 | <enum>Panel</enum> |
204 | </property> | 232 | </property> |
@@ -229,25 +257,25 @@ | |||
229 | <property stdset="1"> | 257 | <property stdset="1"> |
230 | <name>alignment</name> | 258 | <name>alignment</name> |
231 | <set>AlignCenter</set> | 259 | <set>AlignCenter</set> |
232 | </property> | 260 | </property> |
233 | <property> | 261 | <property> |
234 | <name>hAlign</name> | 262 | <name>hAlign</name> |
235 | </property> | 263 | </property> |
236 | </widget> | 264 | </widget> |
237 | <widget> | 265 | <widget> |
238 | <class>QLabel</class> | 266 | <class>QLabel</class> |
239 | <property stdset="1"> | 267 | <property stdset="1"> |
240 | <name>name</name> | 268 | <name>name</name> |
241 | <cstring>TextLabel1</cstring> | 269 | <cstring>TextLabel1_4</cstring> |
242 | </property> | 270 | </property> |
243 | <property stdset="1"> | 271 | <property stdset="1"> |
244 | <name>font</name> | 272 | <name>font</name> |
245 | <font> | 273 | <font> |
246 | <family>adobe-helvetica</family> | 274 | <family>adobe-helvetica</family> |
247 | <pointsize>10</pointsize> | 275 | <pointsize>10</pointsize> |
248 | </font> | 276 | </font> |
249 | </property> | 277 | </property> |
250 | <property stdset="1"> | 278 | <property stdset="1"> |
251 | <name>text</name> | 279 | <name>text</name> |
252 | <string>Max Moser | Martin J. Muench<br> | 280 | <string>Max Moser | Martin J. Muench<br> |
253 | Steffen Kewitz | Dario Luethi<br> | 281 | Steffen Kewitz | Dario Luethi<br> |
@@ -279,16 +307,21 @@ Karl Schoepf | Michael Lauer<p> | |||
279 | </sizepolicy> | 307 | </sizepolicy> |
280 | </property> | 308 | </property> |
281 | <property stdset="1"> | 309 | <property stdset="1"> |
282 | <name>text</name> | 310 | <name>text</name> |
283 | <string>Start Scanning</string> | 311 | <string>Start Scanning</string> |
284 | </property> | 312 | </property> |
285 | </widget> | 313 | </widget> |
286 | </vbox> | 314 | </vbox> |
287 | </widget> | 315 | </widget> |
288 | <images> | 316 | <images> |
289 | <image> | 317 | <image> |
290 | <name>image0</name> | 318 | <name>image0</name> |