6 files changed, 24 insertions, 20 deletions
diff --git a/noncore/settings/networksettings2/networksettings.cpp b/noncore/settings/networksettings2/networksettings.cpp index 2714dd5..469cec5 100644 --- a/noncore/settings/networksettings2/networksettings.cpp +++ b/noncore/settings/networksettings2/networksettings.cpp | |||
@@ -1,510 +1,512 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include <unistd.h> | 2 | #include <unistd.h> |
3 | #include <errno.h> | 3 | #include <errno.h> |
4 | 4 | ||
5 | #include <opie2/odebug.h> | 5 | #include <opie2/odebug.h> |
6 | #include <opie2/oledbox.h> | 6 | #include <opie2/oledbox.h> |
7 | 7 | ||
8 | #include <qpe/qpeapplication.h> | 8 | #include <qpe/qpeapplication.h> |
9 | #include <qlistbox.h> | 9 | #include <qlistbox.h> |
10 | #include <qlayout.h> | 10 | #include <qlayout.h> |
11 | #include <qgroupbox.h> | 11 | #include <qgroupbox.h> |
12 | #include <qtimer.h> | 12 | #include <qtimer.h> |
13 | #include <qlistbox.h> | 13 | #include <qlistbox.h> |
14 | #include <qmessagebox.h> | 14 | #include <qmessagebox.h> |
15 | #include <qlabel.h> | 15 | #include <qlabel.h> |
16 | #include <qiconview.h> | 16 | #include <qiconview.h> |
17 | #include <qtimer.h> | 17 | #include <qtimer.h> |
18 | #include <qpe/qpeapplication.h> | 18 | #include <qpe/qpeapplication.h> |
19 | #include <qtoolbutton.h> | 19 | #include <qtoolbutton.h> |
20 | #include <qevent.h> | 20 | #include <qevent.h> |
21 | 21 | ||
22 | #include "networksettings.h" | 22 | #include "networksettings.h" |
23 | #include "netnode.h" | 23 | #include "netnode.h" |
24 | #include "editconnection.h" | 24 | #include "editconnection.h" |
25 | 25 | ||
26 | NetworkSettings::NetworkSettings( QWidget *parent, | 26 | NetworkSettings::NetworkSettings( QWidget *parent, |
27 | const char *name, | 27 | const char *name, |
28 | WFlags fl ) : NetworkSettingsGUI(parent,name,fl), | 28 | WFlags fl ) : NetworkSettingsGUI(parent,name,fl), |
29 | NSD() { | 29 | NSD() { |
30 | 30 | ||
31 | UpdateTimer = new QTimer( this ); | 31 | UpdateTimer = new QTimer( this ); |
32 | 32 | ||
33 | // set pixmaps | 33 | // set pixmaps |
34 | Add_TB->setPixmap( NSResources->getPixmap( "add" ) ); | 34 | Add_TB->setPixmap( NSResources->getPixmap( "add" ) ); |
35 | Delete_TB->setPixmap( NSResources->getPixmap( "remove" ) ); | 35 | Delete_TB->setPixmap( NSResources->getPixmap( "remove" ) ); |
36 | CheckState_TB->setPixmap( NSResources->getPixmap( "check" ) ); | 36 | CheckState_TB->setPixmap( NSResources->getPixmap( "check" ) ); |
37 | GenConfig_TB->setPixmap( NSResources->getPixmap( "configure" ) ); | 37 | GenConfig_TB->setPixmap( NSResources->getPixmap( "configure" ) ); |
38 | 38 | ||
39 | Disable_TB->setPixmap( NSResources->getPixmap( "disabled" ) ); | 39 | Disable_TB->setPixmap( NSResources->getPixmap( "disabled" ) ); |
40 | Up_TB->setPixmap( NSResources->getPixmap( "more" ) ); | 40 | Up_TB->setPixmap( NSResources->getPixmap( "more" ) ); |
41 | Down_TB->setPixmap( NSResources->getPixmap( "less" ) ); | 41 | Down_TB->setPixmap( NSResources->getPixmap( "less" ) ); |
42 | 42 | ||
43 | QVBoxLayout* V = new QVBoxLayout( LED_Frm ); | 43 | QVBoxLayout* V = new QVBoxLayout( LED_Frm ); |
44 | QHBoxLayout * H = new QHBoxLayout( 0 ); | 44 | QHBoxLayout * H = new QHBoxLayout( 0 ); |
45 | V->addStretch(1); | 45 | V->addStretch(1); |
46 | V->addLayout( H ); | 46 | V->addLayout( H ); |
47 | Leds[0] = new Opie::Ui::OLedBox( red, LED_Frm ); | 47 | Leds[0] = new Opie::Ui::OLedBox( red, LED_Frm ); |
48 | H->addWidget( Leds[0], 0, Qt::AlignVCenter ); | 48 | H->addWidget( Leds[0], 0, Qt::AlignVCenter ); |
49 | Leds[1] = new Opie::Ui::OLedBox( red, LED_Frm ); | 49 | Leds[1] = new Opie::Ui::OLedBox( red, LED_Frm ); |
50 | H->addWidget( Leds[1], 0, Qt::AlignVCenter ); | 50 | H->addWidget( Leds[1], 0, Qt::AlignVCenter ); |
51 | Leds[2] = new Opie::Ui::OLedBox( red, LED_Frm ); | 51 | Leds[2] = new Opie::Ui::OLedBox( red, LED_Frm ); |
52 | H->addWidget( Leds[2], 0, Qt::AlignVCenter ); | 52 | H->addWidget( Leds[2], 0, Qt::AlignVCenter ); |
53 | V->addStretch(1); | 53 | V->addStretch(1); |
54 | 54 | ||
55 | 55 | ||
56 | SLOT_ToProfile(); | 56 | SLOT_ToProfile(); |
57 | 57 | ||
58 | // populate main Listbox | 58 | // populate main Listbox |
59 | Profiles_LB->clear(); | 59 | Profiles_LB->clear(); |
60 | QPEApplication::setStylusOperation( | 60 | QPEApplication::setStylusOperation( |
61 | Profiles_LB->viewport(), QPEApplication::RightOnHold ); | 61 | Profiles_LB->viewport(), QPEApplication::RightOnHold ); |
62 | 62 | ||
63 | connect( Profiles_LB, | 63 | connect( Profiles_LB, |
64 | SIGNAL(rightButtonPressed(QListBoxItem*,const QPoint&)), | 64 | SIGNAL(rightButtonPressed(QListBoxItem*,const QPoint&)), |
65 | this, SLOT(SLOT_EditNode(QListBoxItem*)) ); | 65 | this, SLOT(SLOT_EditNode(QListBoxItem*)) ); |
66 | 66 | ||
67 | { Name2NetworkSetup_t & M = NSResources->networkSetups(); | 67 | { Name2NetworkSetup_t & M = NSResources->networkSetups(); |
68 | NetworkSetup * NC; | 68 | NetworkSetup * NC; |
69 | // for all NetworkSetups | 69 | // for all NetworkSetups |
70 | for( QDictIterator<NetworkSetup> it(M); | 70 | for( QDictIterator<NetworkSetup> it(M); |
71 | it.current(); | 71 | it.current(); |
72 | ++it ) { | 72 | ++it ) { |
73 | NC = it.current(); | 73 | NC = it.current(); |
74 | Profiles_LB->insertItem( NC->devicePixmap(), | 74 | Profiles_LB->insertItem( NC->devicePixmap(), |
75 | NC->name() ); | 75 | NC->name() ); |
76 | } | 76 | } |
77 | } | 77 | } |
78 | 78 | ||
79 | if( Profiles_LB->count() ) { | 79 | if( Profiles_LB->count() ) { |
80 | Profiles_LB->setSelected( 0, TRUE ); | 80 | Profiles_LB->setSelected( 0, TRUE ); |
81 | } | 81 | } |
82 | 82 | ||
83 | // if no profiles -> auto popup editing | 83 | // if no profiles -> auto popup editing |
84 | if( NSResources->networkSetups().count() == 0 ) { | 84 | if( NSResources->networkSetups().count() == 0 ) { |
85 | QTimer::singleShot( 100, this, SLOT(SLOT_AddNode() ) ); | 85 | QTimer::singleShot( 100, this, SLOT(SLOT_AddNode() ) ); |
86 | } | 86 | } |
87 | 87 | ||
88 | connect( &(NSResources->system()), | 88 | connect( &(NSResources->system()), |
89 | SIGNAL( stdoutLine(const QString &) ), | 89 | SIGNAL( stdoutLine(const QString &) ), |
90 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); | 90 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); |
91 | 91 | ||
92 | connect( &(NSResources->system()), | 92 | connect( &(NSResources->system()), |
93 | SIGNAL( stderrLine(const QString &) ), | 93 | SIGNAL( stderrLine(const QString &) ), |
94 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); | 94 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); |
95 | 95 | ||
96 | connect( &(NSResources->system()), | 96 | connect( &(NSResources->system()), |
97 | SIGNAL( processEvent(const QString &) ), | 97 | SIGNAL( processEvent(const QString &) ), |
98 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); | 98 | this, SLOT( SLOT_CmdMessage(const QString &) ) ); |
99 | 99 | ||
100 | UpdateTimer->start( 5000 ); | 100 | UpdateTimer->start( 5000 ); |
101 | connect( UpdateTimer, SIGNAL( timeout() ), | 101 | connect( UpdateTimer, SIGNAL( timeout() ), |
102 | this, SLOT( SLOT_RefreshStates() ) ); | 102 | this, SLOT( SLOT_RefreshStates() ) ); |
103 | 103 | ||
104 | /* Add QCopChannel */ | 104 | /* Add QCopChannel */ |
105 | connect( qApp, SIGNAL(appMessage(const QCString&,const QByteArray&)), | 105 | connect( qApp, SIGNAL(appMessage(const QCString&,const QByteArray&)), |
106 | this, SLOT(SLOT_QCopMessage(const QCString&,const QByteArray&)) ); | 106 | this, SLOT(SLOT_QCopMessage(const QCString&,const QByteArray&)) ); |
107 | } | 107 | } |
108 | 108 | ||
109 | NetworkSettings::~NetworkSettings() { | 109 | NetworkSettings::~NetworkSettings() { |
110 | QString S; | 110 | QString S; |
111 | 111 | ||
112 | if( NSD.isModified() ) { | 112 | if( NSD.isModified() ) { |
113 | S = NSD.saveSettings(); | 113 | S = NSD.saveSettings(); |
114 | if( ! S.isEmpty() ) { | 114 | if( ! S.isEmpty() ) { |
115 | S.insert( 0, "<p>" ); | 115 | S.insert( 0, "<p>" ); |
116 | S.append( "</p>" ); | 116 | S.append( "</p>" ); |
117 | // problem saving | 117 | // problem saving |
118 | QMessageBox::warning( | 118 | QMessageBox::warning( |
119 | 0, | 119 | 0, |
120 | tr( "Saving setup" ), S ); | 120 | tr( "Saving setup" ), S ); |
121 | } | 121 | } |
122 | 122 | ||
123 | SLOT_GenerateConfig(); | 123 | SLOT_GenerateConfig(); |
124 | NSD.setModified( 0 ); | 124 | NSD.setModified( 0 ); |
125 | } | 125 | } |
126 | 126 | ||
127 | } | 127 | } |
128 | 128 | ||
129 | void NetworkSettings::SLOT_CmdMessage( const QString & S ) { | 129 | void NetworkSettings::SLOT_CmdMessage( const QString & S ) { |
130 | Messages_LB->insertItem( S ); | 130 | Messages_LB->insertItem( S ); |
131 | Messages_LB->setCurrentItem( Messages_LB->count()-1 ); | 131 | Messages_LB->setCurrentItem( Messages_LB->count()-1 ); |
132 | Messages_LB->ensureCurrentVisible(); | 132 | Messages_LB->ensureCurrentVisible(); |
133 | } | 133 | } |
134 | 134 | ||
135 | void NetworkSettings::SLOT_RefreshStates( void ) { | 135 | void NetworkSettings::SLOT_RefreshStates( void ) { |
136 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); // remember | 136 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); // remember |
137 | 137 | ||
138 | if( LBI ) { | 138 | if( LBI ) { |
139 | NetworkSetup * NC; | 139 | NetworkSetup * NC; |
140 | NSResources->system().probeInterfaces(); | 140 | NSResources->system().probeInterfaces(); |
141 | // update current selection only | 141 | // update current selection only |
142 | NC = NSResources->findNetworkSetup( LBI->text() ); | 142 | NC = NSResources->findNetworkSetup( LBI->text() ); |
143 | if( NC ) { | 143 | if( NC ) { |
144 | State_t OldS = NC->state(); | 144 | State_t OldS = NC->state(); |
145 | State_t NewS = NC->state(1); | 145 | State_t NewS = NC->state(1); |
146 | if( OldS != NewS ) { | 146 | if( OldS != NewS ) { |
147 | updateProfileState( LBI ); | 147 | updateProfileState( LBI ); |
148 | } | 148 | } |
149 | } | 149 | } |
150 | } | 150 | } |
151 | 151 | ||
152 | 152 | ||
153 | /* -> LATER !! | 153 | /* -> LATER !! |
154 | bool is; | 154 | bool is; |
155 | NetworkSetup * NC; | 155 | NetworkSetup * NC; |
156 | 156 | ||
157 | for( unsigned int i = 0; i < Profiles_LB->count() ; i ++ ) { | 157 | for( unsigned int i = 0; i < Profiles_LB->count() ; i ++ ) { |
158 | NC = NSResources->findNetworkSetup( Profiles_LB->text(i) ); | 158 | NC = NSResources->findNetworkSetup( Profiles_LB->text(i) ); |
159 | if( NC ) { | 159 | if( NC ) { |
160 | State_t OldS = NC->state(); | 160 | State_t OldS = NC->state(); |
161 | State_t NewS = NC->state(1); | 161 | State_t NewS = NC->state(1); |
162 | if( OldS != NewS ) { | 162 | if( OldS != NewS ) { |
163 | is = Profiles_LB->isSelected(i); | 163 | is = Profiles_LB->isSelected(i); |
164 | Profiles_LB->changeItem( NC->statePixmap(NewS), | 164 | Profiles_LB->changeItem( NC->statePixmap(NewS), |
165 | NC->name(), | 165 | NC->name(), |
166 | i ); | 166 | i ); |
167 | if( is ) { | 167 | if( is ) { |
168 | Profiles_LB->setSelected( i, TRUE ); | 168 | Profiles_LB->setSelected( i, TRUE ); |
169 | } | 169 | } |
170 | } | 170 | } |
171 | } | 171 | } |
172 | } | 172 | } |
173 | if( ci >= 0 ) | 173 | if( ci >= 0 ) |
174 | Profiles_LB->setCurrentItem( ci ); | 174 | Profiles_LB->setCurrentItem( ci ); |
175 | */ | 175 | */ |
176 | } | 176 | } |
177 | 177 | ||
178 | void NetworkSettings::SLOT_AddNode( void ) { | 178 | void NetworkSettings::SLOT_AddNode( void ) { |
179 | SLOT_EditNode( 0 ); | 179 | SLOT_EditNode( 0 ); |
180 | } | 180 | } |
181 | 181 | ||
182 | void NetworkSettings::SLOT_DeleteNode( void ) { | 182 | void NetworkSettings::SLOT_DeleteNode( void ) { |
183 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); | 183 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); |
184 | 184 | ||
185 | if ( ! LBI ) | 185 | if ( ! LBI ) |
186 | return; | 186 | return; |
187 | 187 | ||
188 | if( QMessageBox::warning( | 188 | if( QMessageBox::warning( |
189 | 0, | 189 | 0, |
190 | tr( "Removing profile" ), | 190 | tr( "Removing profile" ), |
191 | tr( "Remove selected profile ?" ), | 191 | tr( "Remove selected profile ?" ), |
192 | 1, 0 ) == 1 ) { | 192 | 1, 0 ) == 1 ) { |
193 | NSResources->removeNetworkSetup( LBI->text() ); | 193 | NSResources->removeNetworkSetup( LBI->text() ); |
194 | delete LBI; | 194 | delete LBI; |
195 | NSD.setModified( 1 ); | 195 | NSD.setModified( 1 ); |
196 | } | 196 | } |
197 | } | 197 | } |
198 | 198 | ||
199 | void NetworkSettings::SLOT_EditNode( QListBoxItem * LBI ) { | 199 | void NetworkSettings::SLOT_EditNode( QListBoxItem * LBI ) { |
200 | QString OldName = ""; | 200 | QString OldName = ""; |
201 | 201 | ||
202 | EditNetworkSetup EC( this ); | 202 | EditNetworkSetup EC( this ); |
203 | 203 | ||
204 | if( LBI ) { | 204 | if( LBI ) { |
205 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); | 205 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); |
206 | if( ! NC ) { | 206 | if( ! NC ) { |
207 | return; | 207 | return; |
208 | } | 208 | } |
209 | OldName = NC->name(); | 209 | OldName = NC->name(); |
210 | EC.setNetworkSetup( NC ); | 210 | EC.setNetworkSetup( NC ); |
211 | } | 211 | } |
212 | 212 | ||
213 | EC.showMaximized(); | 213 | EC.showMaximized(); |
214 | // disable refresh timer | 214 | // disable refresh timer |
215 | UpdateTimer->stop(); | 215 | UpdateTimer->stop(); |
216 | 216 | ||
217 | // we need to retry | 217 | // we need to retry |
218 | while( 1 ) { | 218 | while( 1 ) { |
219 | if( EC.exec() == QDialog::Accepted ) { | 219 | if( EC.exec() == QDialog::Accepted ) { |
220 | // toplevel item -> store | 220 | // toplevel item -> store |
221 | NetworkSetup * NC = EC.networkSetup(); | 221 | NetworkSetup * NC = EC.networkSetup(); |
222 | if( NC->isModified() ) { | 222 | if( NC->isModified() ) { |
223 | if( LBI ) { | 223 | if( LBI ) { |
224 | if( NC->name() != OldName ) { | 224 | if( NC->name() != OldName ) { |
225 | // find if new name is free | 225 | // find if new name is free |
226 | NetworkSetup * LCN = NSResources->findNetworkSetup( | 226 | NetworkSetup * LCN = NSResources->findNetworkSetup( |
227 | NC->name() ); | 227 | NC->name() ); |
228 | if( LCN ) { | 228 | if( LCN ) { |
229 | QMessageBox::warning( | 229 | QMessageBox::warning( |
230 | 0, | 230 | 0, |
231 | tr( "In System Config" ), | 231 | tr( "In System Config" ), |
232 | tr( "Name %1 already exists" ).arg(NC->name()) | 232 | tr( "Name %1 already exists" ).arg(NC->name()) |
233 | ); | 233 | ); |
234 | continue; // restart exec | 234 | continue; // restart exec |
235 | } // else new name | 235 | } // else new name |
236 | // new name -> remove item | 236 | // new name -> remove item |
237 | NSResources->removeNetworkSetup( OldName ); | 237 | NSResources->removeNetworkSetup( OldName ); |
238 | NSResources->addNetworkSetup( NC, 0 ); | 238 | NSResources->addNetworkSetup( NC, 0 ); |
239 | } // else not changed | 239 | } // else not changed |
240 | 240 | ||
241 | // must add it here since change will trigger event | 241 | // no update (will come later) |
242 | Profiles_LB->blockSignals( TRUE ); | ||
242 | Profiles_LB->changeItem( NC->devicePixmap(), | 243 | Profiles_LB->changeItem( NC->devicePixmap(), |
243 | NC->name(), | 244 | NC->name(), |
244 | Profiles_LB->index( LBI ) | 245 | Profiles_LB->index( LBI ) |
245 | ); | 246 | ); |
247 | Profiles_LB->blockSignals( FALSE ); | ||
246 | } else { | 248 | } else { |
247 | // new item | 249 | // new item |
248 | int ci = Profiles_LB->count(); | 250 | int ci = Profiles_LB->count(); |
249 | NSResources->addNetworkSetup( NC, 0 ); | 251 | NSResources->addNetworkSetup( NC, 0 ); |
250 | NC->setNumber( NSResources->assignNetworkSetupNumber() ); | 252 | NC->setNumber( NSResources->assignNetworkSetupNumber() ); |
251 | Profiles_LB->insertItem( NC->devicePixmap(), NC->name() ); | 253 | Profiles_LB->insertItem( NC->devicePixmap(), NC->name() ); |
252 | Profiles_LB->setSelected( ci, TRUE ); | 254 | Profiles_LB->setSelected( ci, TRUE ); |
253 | } | 255 | } |
254 | SLOT_RefreshStates(); | 256 | SLOT_RefreshStates(); |
255 | } | 257 | } |
256 | } else { | 258 | } else { |
257 | // cancelled : reset NetworkSetup | 259 | // cancelled : reset NetworkSetup |
258 | if( LBI ) { | 260 | if( LBI ) { |
259 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); | 261 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); |
260 | NC->reassign(); | 262 | NC->reassign(); |
261 | } | 263 | } |
262 | } | 264 | } |
263 | break; | 265 | break; |
264 | } | 266 | } |
265 | // reenable | 267 | // reenable |
266 | UpdateTimer->start( 5000 ); | 268 | UpdateTimer->start( 5000 ); |
267 | } | 269 | } |
268 | 270 | ||
269 | void NetworkSettings::SLOT_ShowNode( QListBoxItem * LBI ) { | 271 | void NetworkSettings::SLOT_ShowNode( QListBoxItem * LBI ) { |
270 | if( LBI == 0 ) | 272 | if( LBI == 0 ) |
271 | return; | 273 | return; |
272 | 274 | ||
273 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); | 275 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); |
274 | 276 | ||
275 | if( NC->description().isEmpty() ) { | 277 | if( NC->description().isEmpty() ) { |
276 | Description_LBL->setText( tr( "<<No description>>" ) ); | 278 | Description_LBL->setText( tr( "<<No description>>" ) ); |
277 | } else { | 279 | } else { |
278 | Description_LBL->setText( NC->description() ); | 280 | Description_LBL->setText( NC->description() ); |
279 | } | 281 | } |
280 | 282 | ||
281 | Profile_GB->setTitle( LBI->text() + " : " + NC->stateName() ); | 283 | Profile_GB->setTitle( LBI->text() + " : " + NC->stateName() ); |
282 | 284 | ||
283 | bool FrmActive = 1; | 285 | bool FrmActive = 1; |
284 | bool IsEnabled = 1; | 286 | bool IsEnabled = 1; |
285 | int leds = 0; | 287 | int leds = 0; |
286 | 288 | ||
287 | switch( NC->state() ) { | 289 | switch( NC->state() ) { |
288 | case Disabled : // no further work | 290 | case Disabled : // no further work |
289 | IsEnabled = 0; | 291 | IsEnabled = 0; |
290 | FrmActive = 0; | 292 | FrmActive = 0; |
291 | break; | 293 | break; |
292 | case Unknown : | 294 | case Unknown : |
293 | case Unchecked : | 295 | case Unchecked : |
294 | case Unavailable : | 296 | case Unavailable : |
295 | FrmActive = 0; | 297 | FrmActive = 0; |
296 | break; | 298 | break; |
297 | case Off : | 299 | case Off : |
298 | leds = 1; | 300 | leds = 1; |
299 | break; | 301 | break; |
300 | case Available : | 302 | case Available : |
301 | leds = 2; | 303 | leds = 2; |
302 | break; | 304 | break; |
303 | case IsUp : | 305 | case IsUp : |
304 | leds = 3; | 306 | leds = 3; |
305 | break; | 307 | break; |
306 | } | 308 | } |
307 | 309 | ||
308 | Disable_TB->setOn( ! IsEnabled ); | 310 | Disable_TB->setOn( ! IsEnabled ); |
309 | LED_Frm->setEnabled( FrmActive ); | 311 | LED_Frm->setEnabled( FrmActive ); |
310 | 312 | ||
311 | for( int i = 0 ; i < leds; i ++ ) { | 313 | for( int i = 0 ; i < leds; i ++ ) { |
312 | Leds[i]->setColor( red ); | 314 | Leds[i]->setColor( red ); |
313 | Leds[i]->setOn( true ); | 315 | Leds[i]->setOn( true ); |
314 | } | 316 | } |
315 | for( int i = leds ; i < 3; i ++ ) { | 317 | for( int i = leds ; i < 3; i ++ ) { |
316 | Leds[i]->setColor( red ); | 318 | Leds[i]->setColor( red ); |
317 | Leds[i]->setOn( false ); | 319 | Leds[i]->setOn( false ); |
318 | } | 320 | } |
319 | 321 | ||
320 | Up_TB->setEnabled( leds < 3 && leds != 0 ); | 322 | Up_TB->setEnabled( leds < 3 && leds != 0 ); |
321 | Down_TB->setEnabled( leds > 0 ); | 323 | Down_TB->setEnabled( leds > 0 ); |
322 | } | 324 | } |
323 | 325 | ||
324 | void NetworkSettings::SLOT_CheckState( void ) { | 326 | void NetworkSettings::SLOT_CheckState( void ) { |
325 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); | 327 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); |
326 | if ( ! LBI ) | 328 | if ( ! LBI ) |
327 | return; | 329 | return; |
328 | updateProfileState( LBI ); | 330 | updateProfileState( LBI ); |
329 | } | 331 | } |
330 | 332 | ||
331 | void NetworkSettings::updateProfileState( QListBoxItem * LBI ) { | 333 | void NetworkSettings::updateProfileState( QListBoxItem * LBI ) { |
332 | if( LBI == Profiles_LB->item( Profiles_LB->currentItem() ) ) { | 334 | if( LBI == Profiles_LB->item( Profiles_LB->currentItem() ) ) { |
333 | SLOT_ShowNode( LBI ); | 335 | SLOT_ShowNode( LBI ); |
334 | } | 336 | } |
335 | } | 337 | } |
336 | 338 | ||
337 | void NetworkSettings::SLOT_GenerateConfig( void ) { | 339 | void NetworkSettings::SLOT_GenerateConfig( void ) { |
338 | QString S = NSD.generateSettings(); | 340 | QString S = NSD.generateSettings(); |
339 | if( ! S.isEmpty() ) { | 341 | if( ! S.isEmpty() ) { |
340 | S.insert( 0, "<p>" ); | 342 | S.insert( 0, "<p>" ); |
341 | S.append( "</p>" ); | 343 | S.append( "</p>" ); |
342 | QMessageBox::warning( | 344 | QMessageBox::warning( |
343 | 0, | 345 | 0, |
344 | tr( "Generate config" ), | 346 | tr( "Generate config" ), |
345 | S); | 347 | S); |
346 | } | 348 | } |
347 | } | 349 | } |
348 | 350 | ||
349 | void NetworkSettings::SLOT_Disable( bool T ) { | 351 | void NetworkSettings::SLOT_Disable( bool T ) { |
350 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); | 352 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); |
351 | QString Msg; | 353 | QString Msg; |
352 | 354 | ||
353 | if ( ! LBI ) | 355 | if ( ! LBI ) |
354 | return; | 356 | return; |
355 | 357 | ||
356 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); | 358 | NetworkSetup * NC = NSResources->findNetworkSetup( LBI->text() ); |
357 | 359 | ||
358 | Log(( "Prepare to %sable\n", (T) ? "en" : "dis" )); | 360 | Log(( "Prepare to %sable\n", (T) ? "en" : "dis" )); |
359 | Msg = NC->setState( (T) ? Disable : Enable ); | 361 | Msg = NC->setState( (T) ? Disable : Enable ); |
360 | if( ! Msg.isEmpty() ) { | 362 | if( ! Msg.isEmpty() ) { |
361 | Msg.insert( 0, "<p>" ); | 363 | Msg.insert( 0, "<p>" ); |
362 | Msg.append( "</p>" ); | 364 | Msg.append( "</p>" ); |
363 | QMessageBox::warning( | 365 | QMessageBox::warning( |
364 | 0, | 366 | 0, |
365 | tr( "Activating profile" ), | 367 | tr( "Activating profile" ), |
366 | Msg ); | 368 | Msg ); |
367 | return; | 369 | return; |
368 | } | 370 | } |
369 | 371 | ||
370 | // reload new state | 372 | // reload new state |
371 | NC->state( true ); | 373 | NC->state( true ); |
372 | updateProfileState( LBI ); | 374 | updateProfileState( LBI ); |
373 | } | 375 | } |
374 | 376 | ||
375 | void NetworkSettings::SLOT_Up( void ) { | 377 | void NetworkSettings::SLOT_Up( void ) { |
376 | // bring more up | 378 | // bring more up |
377 | 379 | ||
378 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); | 380 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); |
379 | QString Msg; | 381 | QString Msg; |
380 | int led = -1; | 382 | int led = -1; |
381 | 383 | ||
382 | if ( ! LBI ) | 384 | if ( ! LBI ) |
383 | return; | 385 | return; |
384 | 386 | ||
385 | NetworkSetup * NC = | 387 | NetworkSetup * NC = |
386 | NSResources->findNetworkSetup( LBI->text() ); | 388 | NSResources->findNetworkSetup( LBI->text() ); |
387 | 389 | ||
388 | switch( NC->state() ) { | 390 | switch( NC->state() ) { |
389 | case Disabled : // cannot modify this state | 391 | case Disabled : // cannot modify this state |
390 | case Unknown : // cannot modify this state | 392 | case Unknown : // cannot modify this state |
391 | case Unchecked : // cannot modify this state | 393 | case Unchecked : // cannot modify this state |
392 | case Unavailable : // cannot modify this state | 394 | case Unavailable : // cannot modify this state |
393 | case IsUp : // highest UP state | 395 | case IsUp : // highest UP state |
394 | return; | 396 | return; |
395 | case Off : // -> activate | 397 | case Off : // -> activate |
396 | led = 1; | 398 | led = 1; |
397 | Down_TB->setEnabled( true ); | 399 | Down_TB->setEnabled( true ); |
398 | Log(( "Activate interface %s\n", NC->name().latin1() )); | 400 | Log(( "Activate interface %s\n", NC->name().latin1() )); |
399 | Msg = NC->setState( Activate ); | 401 | Msg = NC->setState( Activate ); |
400 | break; | 402 | break; |
401 | case Available : // -> up | 403 | case Available : // -> up |
402 | led = 2; | 404 | led = 2; |
403 | Log(( "Bring up interface %s\n", NC->name().latin1() )); | 405 | Log(( "Bring up interface %s\n", NC->name().latin1() )); |
404 | Msg = NC->setState( Up ); | 406 | Msg = NC->setState( Up ); |
405 | if( Msg.isEmpty() ) { | 407 | if( Msg.isEmpty() ) { |
406 | Up_TB->setEnabled( false ); | 408 | Up_TB->setEnabled( false ); |
407 | } | 409 | } |
408 | break; | 410 | break; |
409 | } | 411 | } |
410 | 412 | ||
411 | if( ! Msg.isEmpty() ) { | 413 | if( ! Msg.isEmpty() ) { |
412 | Msg.insert( 0, "<p>" ); | 414 | Msg.insert( 0, "<p>" ); |
413 | Msg.append( "</p>" ); | 415 | Msg.append( "</p>" ); |
414 | QMessageBox::warning( | 416 | QMessageBox::warning( |
415 | 0, | 417 | 0, |
416 | tr( "Increase availability" ), | 418 | tr( "Increase availability" ), |
417 | Msg ); | 419 | Msg ); |
418 | return; | 420 | return; |
419 | } | 421 | } |
420 | 422 | ||
421 | updateProfileState( LBI ); | 423 | updateProfileState( LBI ); |
422 | 424 | ||
423 | // set color of led we should change | 425 | // set color of led we should change |
424 | if( led > 0 ) { | 426 | if( led > 0 ) { |
425 | Leds[led]->setColor( blue ); | 427 | Leds[led]->setColor( blue ); |
426 | Leds[led]->setOn( true ); | 428 | Leds[led]->setOn( true ); |
427 | } | 429 | } |
428 | 430 | ||
429 | } | 431 | } |
430 | 432 | ||
431 | void NetworkSettings::SLOT_Down( void ) { | 433 | void NetworkSettings::SLOT_Down( void ) { |
432 | // bring more down | 434 | // bring more down |
433 | 435 | ||
434 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); | 436 | QListBoxItem * LBI = Profiles_LB->item( Profiles_LB->currentItem() ); |
435 | int led = -1; | 437 | int led = -1; |
436 | QString Msg; | 438 | QString Msg; |
437 | 439 | ||
438 | if ( ! LBI ) | 440 | if ( ! LBI ) |
439 | return; | 441 | return; |
440 | 442 | ||
441 | NetworkSetup * NC = | 443 | NetworkSetup * NC = |
442 | NSResources->findNetworkSetup( LBI->text() ); | 444 | NSResources->findNetworkSetup( LBI->text() ); |
443 | 445 | ||
444 | switch( NC->state() ) { | 446 | switch( NC->state() ) { |
445 | case Disabled : // cannot modify this state | 447 | case Disabled : // cannot modify this state |
446 | case Unknown : // cannot modify this state | 448 | case Unknown : // cannot modify this state |
447 | case Unchecked : // cannot modify this state | 449 | case Unchecked : // cannot modify this state |
448 | case Unavailable : // cannot modify this state | 450 | case Unavailable : // cannot modify this state |
449 | case Off : // highest DOWN state | 451 | case Off : // highest DOWN state |
450 | break; | 452 | break; |
451 | case Available : // -> down | 453 | case Available : // -> down |
452 | led = 0; | 454 | led = 0; |
453 | Log(( "Deactivate interface %s\n", NC->name().latin1() )); | 455 | Log(( "Deactivate interface %s\n", NC->name().latin1() )); |
454 | Msg = NC->setState( Deactivate ); | 456 | Msg = NC->setState( Deactivate ); |
455 | Down_TB->setEnabled( false ); | 457 | Down_TB->setEnabled( false ); |
456 | break; | 458 | break; |
457 | case IsUp : // highest UP state | 459 | case IsUp : // highest UP state |
458 | led = 1; | 460 | led = 1; |
459 | Up_TB->setEnabled( true ); | 461 | Up_TB->setEnabled( true ); |
460 | Log(( "Bring down interface %s\n", NC->name().latin1() )); | 462 | Log(( "Bring down interface %s\n", NC->name().latin1() )); |
461 | Msg = NC->setState( Down, 1 ); | 463 | Msg = NC->setState( Down, 1 ); |
462 | if( Msg.isEmpty() ) { | 464 | if( Msg.isEmpty() ) { |
463 | // remove 'up' file to make sure | 465 | // remove 'up' file to make sure |
464 | unlink ( QString().sprintf( "/tmp/Profile-%d.up", NC->number() ).latin1() );; | 466 | unlink ( QString().sprintf( "/tmp/Profile-%d.up", NC->number() ).latin1() );; |
465 | } | 467 | } |
466 | break; | 468 | break; |
467 | } | 469 | } |
468 | 470 | ||
469 | if( ! Msg.isEmpty() ) { | 471 | if( ! Msg.isEmpty() ) { |
470 | Msg.insert( 0, "<p>" ); | 472 | Msg.insert( 0, "<p>" ); |
471 | Msg.append( "</p>" ); | 473 | Msg.append( "</p>" ); |
472 | QMessageBox::warning( | 474 | QMessageBox::warning( |
473 | 0, | 475 | 0, |
474 | tr( "Decrease availability" ), | 476 | tr( "Decrease availability" ), |
475 | Msg ); | 477 | Msg ); |
476 | return; | 478 | return; |
477 | } | 479 | } |
478 | 480 | ||
479 | updateProfileState( LBI ); | 481 | updateProfileState( LBI ); |
480 | 482 | ||
481 | // set color of led we should change | 483 | // set color of led we should change |
482 | if( led >= 0 ) { | 484 | if( led >= 0 ) { |
483 | Leds[led]->setColor( blue ); | 485 | Leds[led]->setColor( blue ); |
484 | } | 486 | } |
485 | } | 487 | } |
486 | 488 | ||
487 | void NetworkSettings::SLOT_ToMessages( void ) { | 489 | void NetworkSettings::SLOT_ToMessages( void ) { |
488 | Profiles_LB->hide(); | 490 | Profiles_LB->hide(); |
489 | Profile_GB->hide(); | 491 | Profile_GB->hide(); |
490 | Messages_GB->show(); | 492 | Messages_GB->show(); |
491 | } | 493 | } |
492 | 494 | ||
493 | void NetworkSettings::SLOT_ToProfile( void ) { | 495 | void NetworkSettings::SLOT_ToProfile( void ) { |
494 | Profiles_LB->show(); | 496 | Profiles_LB->show(); |
495 | Profile_GB->show(); | 497 | Profile_GB->show(); |
496 | Messages_GB->hide(); | 498 | Messages_GB->hide(); |
497 | } | 499 | } |
498 | 500 | ||
499 | void NetworkSettings::SLOT_QCopMessage(const QCString &msg, const QByteArray &data) { | 501 | void NetworkSettings::SLOT_QCopMessage(const QCString &msg, const QByteArray &data) { |
500 | QDataStream stream( data, IO_ReadOnly ); | 502 | QDataStream stream( data, IO_ReadOnly ); |
501 | 503 | ||
502 | if( msg == "raise" ) { | 504 | if( msg == "raise" ) { |
503 | raise(); | 505 | raise(); |
504 | return; | 506 | return; |
505 | } /* if ( msg == "someMessage(int,int,int)" ) { | 507 | } /* if ( msg == "someMessage(int,int,int)" ) { |
506 | int a,b,c; | 508 | int a,b,c; |
507 | stream >> a >> b >> c; | 509 | stream >> a >> b >> c; |
508 | ... | 510 | ... |
509 | } */ | 511 | } */ |
510 | } | 512 | } |
diff --git a/noncore/settings/networksettings2/profile/profileGUI.ui b/noncore/settings/networksettings2/profile/profileGUI.ui index 8b421e8..eeb2e75 100644 --- a/noncore/settings/networksettings2/profile/profileGUI.ui +++ b/noncore/settings/networksettings2/profile/profileGUI.ui | |||
@@ -1,1754 +1,1754 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>ProfileGUI</class> | 2 | <class>ProfileGUI</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>Profile_FRM</cstring> | 7 | <cstring>Profile_FRM</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>551</width> | 14 | <width>547</width> |
15 | <height>547</height> | 15 | <height>547</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>Profile</string> | 20 | <string>Profile</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> |
27 | </property> | 27 | </property> |
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>1</number> | 31 | <number>1</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>3</number> | 35 | <number>3</number> |
36 | </property> | 36 | </property> |
37 | <widget> | 37 | <widget> |
38 | <class>QTabWidget</class> | 38 | <class>QTabWidget</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>TabWidget6</cstring> | 41 | <cstring>TabWidget6</cstring> |
42 | </property> | 42 | </property> |
43 | <property> | 43 | <property> |
44 | <name>layoutMargin</name> | 44 | <name>layoutMargin</name> |
45 | </property> | 45 | </property> |
46 | <property> | 46 | <property> |
47 | <name>layoutSpacing</name> | 47 | <name>layoutSpacing</name> |
48 | </property> | 48 | </property> |
49 | <widget> | 49 | <widget> |
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>tab</cstring> | 53 | <cstring>tab</cstring> |
54 | </property> | 54 | </property> |
55 | <attribute> | 55 | <attribute> |
56 | <name>title</name> | 56 | <name>title</name> |
57 | <string>Setup</string> | 57 | <string>Setup</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>1</number> | 62 | <number>1</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>QLayoutWidget</class> | 69 | <class>QLayoutWidget</class> |
70 | <property stdset="1"> | 70 | <property stdset="1"> |
71 | <name>name</name> | 71 | <name>name</name> |
72 | <cstring>Layout8</cstring> | 72 | <cstring>Layout8</cstring> |
73 | </property> | 73 | </property> |
74 | <grid> | 74 | <grid> |
75 | <property stdset="1"> | 75 | <property stdset="1"> |
76 | <name>margin</name> | 76 | <name>margin</name> |
77 | <number>0</number> | 77 | <number>0</number> |
78 | </property> | 78 | </property> |
79 | <property stdset="1"> | 79 | <property stdset="1"> |
80 | <name>spacing</name> | 80 | <name>spacing</name> |
81 | <number>6</number> | 81 | <number>6</number> |
82 | </property> | 82 | </property> |
83 | <widget row="0" column="0" rowspan="2" colspan="1" > | 83 | <widget row="0" column="0" rowspan="2" colspan="1" > |
84 | <class>QGroupBox</class> | 84 | <class>QGroupBox</class> |
85 | <property stdset="1"> | 85 | <property stdset="1"> |
86 | <name>name</name> | 86 | <name>name</name> |
87 | <cstring>GroupBox1</cstring> | 87 | <cstring>GroupBox1</cstring> |
88 | </property> | 88 | </property> |
89 | <property stdset="1"> | 89 | <property stdset="1"> |
90 | <name>title</name> | 90 | <name>title</name> |
91 | <string>Start</string> | 91 | <string>Start</string> |
92 | </property> | 92 | </property> |
93 | <vbox> | 93 | <vbox> |
94 | <property stdset="1"> | 94 | <property stdset="1"> |
95 | <name>margin</name> | 95 | <name>margin</name> |
96 | <number>11</number> | 96 | <number>11</number> |
97 | </property> | 97 | </property> |
98 | <property stdset="1"> | 98 | <property stdset="1"> |
99 | <name>spacing</name> | 99 | <name>spacing</name> |
100 | <number>6</number> | 100 | <number>6</number> |
101 | </property> | 101 | </property> |
102 | <widget> | 102 | <widget> |
103 | <class>QCheckBox</class> | 103 | <class>QCheckBox</class> |
104 | <property stdset="1"> | 104 | <property stdset="1"> |
105 | <name>name</name> | 105 | <name>name</name> |
106 | <cstring>Automatic_CB</cstring> | 106 | <cstring>Automatic_CB</cstring> |
107 | </property> | 107 | </property> |
108 | <property stdset="1"> | 108 | <property stdset="1"> |
109 | <name>text</name> | 109 | <name>text</name> |
110 | <string>Automatically</string> | 110 | <string>Automatically</string> |
111 | </property> | 111 | </property> |
112 | </widget> | 112 | </widget> |
113 | <widget> | 113 | <widget> |
114 | <class>QCheckBox</class> | 114 | <class>QCheckBox</class> |
115 | <property stdset="1"> | 115 | <property stdset="1"> |
116 | <name>name</name> | 116 | <name>name</name> |
117 | <cstring>Confirm_CB</cstring> | 117 | <cstring>Confirm_CB</cstring> |
118 | </property> | 118 | </property> |
119 | <property stdset="1"> | 119 | <property stdset="1"> |
120 | <name>enabled</name> | 120 | <name>enabled</name> |
121 | <bool>true</bool> | 121 | <bool>true</bool> |
122 | </property> | 122 | </property> |
123 | <property stdset="1"> | 123 | <property stdset="1"> |
124 | <name>text</name> | 124 | <name>text</name> |
125 | <string>Ask</string> | 125 | <string>Ask</string> |
126 | </property> | 126 | </property> |
127 | <property> | 127 | <property> |
128 | <name>layoutMargin</name> | 128 | <name>layoutMargin</name> |
129 | </property> | 129 | </property> |
130 | </widget> | 130 | </widget> |
131 | <widget> | 131 | <widget> |
132 | <class>QCheckBox</class> | 132 | <class>QCheckBox</class> |
133 | <property stdset="1"> | 133 | <property stdset="1"> |
134 | <name>name</name> | 134 | <name>name</name> |
135 | <cstring>Disabled_CB</cstring> | 135 | <cstring>Enabled_CB</cstring> |
136 | </property> | 136 | </property> |
137 | <property stdset="1"> | 137 | <property stdset="1"> |
138 | <name>enabled</name> | 138 | <name>enabled</name> |
139 | <bool>true</bool> | 139 | <bool>true</bool> |
140 | </property> | 140 | </property> |
141 | <property stdset="1"> | 141 | <property stdset="1"> |
142 | <name>text</name> | 142 | <name>text</name> |
143 | <string>Disabled</string> | 143 | <string>Enabled</string> |
144 | </property> | 144 | </property> |
145 | <property> | 145 | <property> |
146 | <name>layoutMargin</name> | 146 | <name>layoutMargin</name> |
147 | </property> | 147 | </property> |
148 | </widget> | 148 | </widget> |
149 | </vbox> | 149 | </vbox> |
150 | </widget> | 150 | </widget> |
151 | <widget row="0" column="1" > | 151 | <widget row="0" column="1" > |
152 | <class>QCheckBox</class> | 152 | <class>QCheckBox</class> |
153 | <property stdset="1"> | 153 | <property stdset="1"> |
154 | <name>name</name> | 154 | <name>name</name> |
155 | <cstring>TriggersVPN_CB</cstring> | 155 | <cstring>TriggersVPN_CB</cstring> |
156 | </property> | 156 | </property> |
157 | <property stdset="1"> | 157 | <property stdset="1"> |
158 | <name>text</name> | 158 | <name>text</name> |
159 | <string>Trigger VPN</string> | 159 | <string>Trigger VPN</string> |
160 | </property> | 160 | </property> |
161 | </widget> | 161 | </widget> |
162 | <spacer row="1" column="1" > | 162 | <spacer row="1" column="1" > |
163 | <property> | 163 | <property> |
164 | <name>name</name> | 164 | <name>name</name> |
165 | <cstring>Spacer8</cstring> | 165 | <cstring>Spacer8</cstring> |
166 | </property> | 166 | </property> |
167 | <property stdset="1"> | 167 | <property stdset="1"> |
168 | <name>orientation</name> | 168 | <name>orientation</name> |
169 | <enum>Vertical</enum> | 169 | <enum>Vertical</enum> |
170 | </property> | 170 | </property> |
171 | <property stdset="1"> | 171 | <property stdset="1"> |
172 | <name>sizeType</name> | 172 | <name>sizeType</name> |
173 | <enum>Expanding</enum> | 173 | <enum>Expanding</enum> |
174 | </property> | 174 | </property> |
175 | <property> | 175 | <property> |
176 | <name>sizeHint</name> | 176 | <name>sizeHint</name> |
177 | <size> | 177 | <size> |
178 | <width>20</width> | 178 | <width>20</width> |
179 | <height>20</height> | 179 | <height>20</height> |
180 | </size> | 180 | </size> |
181 | </property> | 181 | </property> |
182 | </spacer> | 182 | </spacer> |
183 | </grid> | 183 | </grid> |
184 | </widget> | 184 | </widget> |
185 | <widget> | 185 | <widget> |
186 | <class>QLabel</class> | 186 | <class>QLabel</class> |
187 | <property stdset="1"> | 187 | <property stdset="1"> |
188 | <name>name</name> | 188 | <name>name</name> |
189 | <cstring>TextLabel3</cstring> | 189 | <cstring>TextLabel3</cstring> |
190 | </property> | 190 | </property> |
191 | <property stdset="1"> | 191 | <property stdset="1"> |
192 | <name>text</name> | 192 | <name>text</name> |
193 | <string>Description</string> | 193 | <string>Description</string> |
194 | </property> | 194 | </property> |
195 | </widget> | 195 | </widget> |
196 | <widget> | 196 | <widget> |
197 | <class>QMultiLineEdit</class> | 197 | <class>QMultiLineEdit</class> |
198 | <property stdset="1"> | 198 | <property stdset="1"> |
199 | <name>name</name> | 199 | <name>name</name> |
200 | <cstring>Description_LE</cstring> | 200 | <cstring>Description_LE</cstring> |
201 | </property> | 201 | </property> |
202 | </widget> | 202 | </widget> |
203 | </vbox> | 203 | </vbox> |
204 | </widget> | 204 | </widget> |
205 | <widget> | 205 | <widget> |
206 | <class>QWidget</class> | 206 | <class>QWidget</class> |
207 | <property stdset="1"> | 207 | <property stdset="1"> |
208 | <name>name</name> | 208 | <name>name</name> |
209 | <cstring>tab</cstring> | 209 | <cstring>tab</cstring> |
210 | </property> | 210 | </property> |
211 | <attribute> | 211 | <attribute> |
212 | <name>title</name> | 212 | <name>title</name> |
213 | <string>State</string> | 213 | <string>State</string> |
214 | </attribute> | 214 | </attribute> |
215 | <vbox> | 215 | <vbox> |
216 | <property stdset="1"> | 216 | <property stdset="1"> |
217 | <name>margin</name> | 217 | <name>margin</name> |
218 | <number>0</number> | 218 | <number>0</number> |
219 | </property> | 219 | </property> |
220 | <property stdset="1"> | 220 | <property stdset="1"> |
221 | <name>spacing</name> | 221 | <name>spacing</name> |
222 | <number>2</number> | 222 | <number>2</number> |
223 | </property> | 223 | </property> |
224 | <widget> | 224 | <widget> |
225 | <class>QFrame</class> | 225 | <class>QFrame</class> |
226 | <property stdset="1"> | 226 | <property stdset="1"> |
227 | <name>name</name> | 227 | <name>name</name> |
228 | <cstring>Frame73</cstring> | 228 | <cstring>Frame73</cstring> |
229 | </property> | 229 | </property> |
230 | <property stdset="1"> | 230 | <property stdset="1"> |
231 | <name>sizePolicy</name> | 231 | <name>sizePolicy</name> |
232 | <sizepolicy> | 232 | <sizepolicy> |
233 | <hsizetype>7</hsizetype> | 233 | <hsizetype>7</hsizetype> |
234 | <vsizetype>5</vsizetype> | 234 | <vsizetype>5</vsizetype> |
235 | </sizepolicy> | 235 | </sizepolicy> |
236 | </property> | 236 | </property> |
237 | <property stdset="1"> | 237 | <property stdset="1"> |
238 | <name>frameShape</name> | 238 | <name>frameShape</name> |
239 | <enum>NoFrame</enum> | 239 | <enum>NoFrame</enum> |
240 | </property> | 240 | </property> |
241 | <property stdset="1"> | 241 | <property stdset="1"> |
242 | <name>frameShadow</name> | 242 | <name>frameShadow</name> |
243 | <enum>Plain</enum> | 243 | <enum>Plain</enum> |
244 | </property> | 244 | </property> |
245 | <property> | 245 | <property> |
246 | <name>layoutMargin</name> | 246 | <name>layoutMargin</name> |
247 | </property> | 247 | </property> |
248 | <property> | 248 | <property> |
249 | <name>layoutSpacing</name> | 249 | <name>layoutSpacing</name> |
250 | </property> | 250 | </property> |
251 | <hbox> | 251 | <hbox> |
252 | <property stdset="1"> | 252 | <property stdset="1"> |
253 | <name>margin</name> | 253 | <name>margin</name> |
254 | <number>2</number> | 254 | <number>2</number> |
255 | </property> | 255 | </property> |
256 | <property stdset="1"> | 256 | <property stdset="1"> |
257 | <name>spacing</name> | 257 | <name>spacing</name> |
258 | <number>0</number> | 258 | <number>0</number> |
259 | </property> | 259 | </property> |
260 | <widget> | 260 | <widget> |
261 | <class>QLabel</class> | 261 | <class>QLabel</class> |
262 | <property stdset="1"> | 262 | <property stdset="1"> |
263 | <name>name</name> | 263 | <name>name</name> |
264 | <cstring>InterfaceName_LBL</cstring> | 264 | <cstring>InterfaceName_LBL</cstring> |
265 | </property> | 265 | </property> |
266 | <property stdset="1"> | 266 | <property stdset="1"> |
267 | <name>font</name> | 267 | <name>font</name> |
268 | <font> | 268 | <font> |
269 | <underline>1</underline> | 269 | <underline>1</underline> |
270 | </font> | 270 | </font> |
271 | </property> | 271 | </property> |
272 | <property stdset="1"> | 272 | <property stdset="1"> |
273 | <name>text</name> | 273 | <name>text</name> |
274 | <string>eth0</string> | 274 | <string>eth0</string> |
275 | </property> | 275 | </property> |
276 | </widget> | 276 | </widget> |
277 | <widget> | 277 | <widget> |
278 | <class>QLabel</class> | 278 | <class>QLabel</class> |
279 | <property stdset="1"> | 279 | <property stdset="1"> |
280 | <name>name</name> | 280 | <name>name</name> |
281 | <cstring>InterfaceOptions_LBL</cstring> | 281 | <cstring>InterfaceOptions_LBL</cstring> |
282 | </property> | 282 | </property> |
283 | <property stdset="1"> | 283 | <property stdset="1"> |
284 | <name>sizePolicy</name> | 284 | <name>sizePolicy</name> |
285 | <sizepolicy> | 285 | <sizepolicy> |
286 | <hsizetype>7</hsizetype> | 286 | <hsizetype>7</hsizetype> |
287 | <vsizetype>1</vsizetype> | 287 | <vsizetype>1</vsizetype> |
288 | </sizepolicy> | 288 | </sizepolicy> |
289 | </property> | 289 | </property> |
290 | <property stdset="1"> | 290 | <property stdset="1"> |
291 | <name>font</name> | 291 | <name>font</name> |
292 | <font> | 292 | <font> |
293 | <underline>1</underline> | 293 | <underline>1</underline> |
294 | </font> | 294 | </font> |
295 | </property> | 295 | </property> |
296 | <property stdset="1"> | 296 | <property stdset="1"> |
297 | <name>text</name> | 297 | <name>text</name> |
298 | <string>(Multicast, Up)</string> | 298 | <string>(Multicast, Up)</string> |
299 | </property> | 299 | </property> |
300 | <property stdset="1"> | 300 | <property stdset="1"> |
301 | <name>indent</name> | 301 | <name>indent</name> |
302 | <number>0</number> | 302 | <number>0</number> |
303 | </property> | 303 | </property> |
304 | </widget> | 304 | </widget> |
305 | </hbox> | 305 | </hbox> |
306 | </widget> | 306 | </widget> |
307 | <widget> | 307 | <widget> |
308 | <class>QFrame</class> | 308 | <class>QFrame</class> |
309 | <property stdset="1"> | 309 | <property stdset="1"> |
310 | <name>name</name> | 310 | <name>name</name> |
311 | <cstring>Interface_GB</cstring> | 311 | <cstring>Interface_GB</cstring> |
312 | </property> | 312 | </property> |
313 | <property stdset="1"> | 313 | <property stdset="1"> |
314 | <name>enabled</name> | 314 | <name>enabled</name> |
315 | <bool>true</bool> | 315 | <bool>true</bool> |
316 | </property> | 316 | </property> |
317 | <property stdset="1"> | 317 | <property stdset="1"> |
318 | <name>sizePolicy</name> | 318 | <name>sizePolicy</name> |
319 | <sizepolicy> | 319 | <sizepolicy> |
320 | <hsizetype>7</hsizetype> | 320 | <hsizetype>7</hsizetype> |
321 | <vsizetype>5</vsizetype> | 321 | <vsizetype>5</vsizetype> |
322 | </sizepolicy> | 322 | </sizepolicy> |
323 | </property> | 323 | </property> |
324 | <property stdset="1"> | 324 | <property stdset="1"> |
325 | <name>frameShape</name> | 325 | <name>frameShape</name> |
326 | <enum>NoFrame</enum> | 326 | <enum>NoFrame</enum> |
327 | </property> | 327 | </property> |
328 | <property stdset="1"> | 328 | <property stdset="1"> |
329 | <name>frameShadow</name> | 329 | <name>frameShadow</name> |
330 | <enum>Raised</enum> | 330 | <enum>Raised</enum> |
331 | </property> | 331 | </property> |
332 | <property> | 332 | <property> |
333 | <name>layoutMargin</name> | 333 | <name>layoutMargin</name> |
334 | </property> | 334 | </property> |
335 | <property> | 335 | <property> |
336 | <name>layoutSpacing</name> | 336 | <name>layoutSpacing</name> |
337 | </property> | 337 | </property> |
338 | <grid> | 338 | <grid> |
339 | <property stdset="1"> | 339 | <property stdset="1"> |
340 | <name>margin</name> | 340 | <name>margin</name> |
341 | <number>2</number> | 341 | <number>2</number> |
342 | </property> | 342 | </property> |
343 | <property stdset="1"> | 343 | <property stdset="1"> |
344 | <name>spacing</name> | 344 | <name>spacing</name> |
345 | <number>1</number> | 345 | <number>1</number> |
346 | </property> | 346 | </property> |
347 | <widget row="0" column="2" > | 347 | <widget row="0" column="2" > |
348 | <class>QLabel</class> | 348 | <class>QLabel</class> |
349 | <property stdset="1"> | 349 | <property stdset="1"> |
350 | <name>name</name> | 350 | <name>name</name> |
351 | <cstring>TextLabel4_2_3</cstring> | 351 | <cstring>TextLabel4_2_3</cstring> |
352 | </property> | 352 | </property> |
353 | <property stdset="1"> | 353 | <property stdset="1"> |
354 | <name>enabled</name> | 354 | <name>enabled</name> |
355 | <bool>true</bool> | 355 | <bool>true</bool> |
356 | </property> | 356 | </property> |
357 | <property stdset="1"> | 357 | <property stdset="1"> |
358 | <name>sizePolicy</name> | 358 | <name>sizePolicy</name> |
359 | <sizepolicy> | 359 | <sizepolicy> |
360 | <hsizetype>0</hsizetype> | 360 | <hsizetype>0</hsizetype> |
361 | <vsizetype>1</vsizetype> | 361 | <vsizetype>1</vsizetype> |
362 | </sizepolicy> | 362 | </sizepolicy> |
363 | </property> | 363 | </property> |
364 | <property stdset="1"> | 364 | <property stdset="1"> |
365 | <name>frameShape</name> | 365 | <name>frameShape</name> |
366 | <enum>NoFrame</enum> | 366 | <enum>NoFrame</enum> |
367 | </property> | 367 | </property> |
368 | <property stdset="1"> | 368 | <property stdset="1"> |
369 | <name>frameShadow</name> | 369 | <name>frameShadow</name> |
370 | <enum>Raised</enum> | 370 | <enum>Raised</enum> |
371 | </property> | 371 | </property> |
372 | <property stdset="1"> | 372 | <property stdset="1"> |
373 | <name>text</name> | 373 | <name>text</name> |
374 | <string>Subnet Mask</string> | 374 | <string>Subnet Mask</string> |
375 | </property> | 375 | </property> |
376 | </widget> | 376 | </widget> |
377 | <widget row="0" column="3" > | 377 | <widget row="0" column="3" > |
378 | <class>QLabel</class> | 378 | <class>QLabel</class> |
379 | <property stdset="1"> | 379 | <property stdset="1"> |
380 | <name>name</name> | 380 | <name>name</name> |
381 | <cstring>TextLabel1_3_3</cstring> | 381 | <cstring>TextLabel1_3_3</cstring> |
382 | </property> | 382 | </property> |
383 | <property stdset="1"> | 383 | <property stdset="1"> |
384 | <name>enabled</name> | 384 | <name>enabled</name> |
385 | <bool>true</bool> | 385 | <bool>true</bool> |
386 | </property> | 386 | </property> |
387 | <property stdset="1"> | 387 | <property stdset="1"> |
388 | <name>sizePolicy</name> | 388 | <name>sizePolicy</name> |
389 | <sizepolicy> | 389 | <sizepolicy> |
390 | <hsizetype>0</hsizetype> | 390 | <hsizetype>0</hsizetype> |
391 | <vsizetype>1</vsizetype> | 391 | <vsizetype>1</vsizetype> |
392 | </sizepolicy> | 392 | </sizepolicy> |
393 | </property> | 393 | </property> |
394 | <property stdset="1"> | 394 | <property stdset="1"> |
395 | <name>frameShape</name> | 395 | <name>frameShape</name> |
396 | <enum>NoFrame</enum> | 396 | <enum>NoFrame</enum> |
397 | </property> | 397 | </property> |
398 | <property stdset="1"> | 398 | <property stdset="1"> |
399 | <name>frameShadow</name> | 399 | <name>frameShadow</name> |
400 | <enum>Raised</enum> | 400 | <enum>Raised</enum> |
401 | </property> | 401 | </property> |
402 | <property stdset="1"> | 402 | <property stdset="1"> |
403 | <name>text</name> | 403 | <name>text</name> |
404 | <string>Broadcast</string> | 404 | <string>Broadcast</string> |
405 | </property> | 405 | </property> |
406 | </widget> | 406 | </widget> |
407 | <widget row="3" column="0" > | 407 | <widget row="3" column="0" > |
408 | <class>QLabel</class> | 408 | <class>QLabel</class> |
409 | <property stdset="1"> | 409 | <property stdset="1"> |
410 | <name>name</name> | 410 | <name>name</name> |
411 | <cstring>TextLabel1_5</cstring> | 411 | <cstring>TextLabel1_5</cstring> |
412 | </property> | 412 | </property> |
413 | <property stdset="1"> | 413 | <property stdset="1"> |
414 | <name>enabled</name> | 414 | <name>enabled</name> |
415 | <bool>true</bool> | 415 | <bool>true</bool> |
416 | </property> | 416 | </property> |
417 | <property stdset="1"> | 417 | <property stdset="1"> |
418 | <name>sizePolicy</name> | 418 | <name>sizePolicy</name> |
419 | <sizepolicy> | 419 | <sizepolicy> |
420 | <hsizetype>1</hsizetype> | 420 | <hsizetype>1</hsizetype> |
421 | <vsizetype>1</vsizetype> | 421 | <vsizetype>1</vsizetype> |
422 | </sizepolicy> | 422 | </sizepolicy> |
423 | </property> | 423 | </property> |
424 | <property stdset="1"> | 424 | <property stdset="1"> |
425 | <name>text</name> | 425 | <name>text</name> |
426 | <string>MAC</string> | 426 | <string>MAC</string> |
427 | </property> | 427 | </property> |
428 | <property stdset="1"> | 428 | <property stdset="1"> |
429 | <name>indent</name> | 429 | <name>indent</name> |
430 | <number>0</number> | 430 | <number>0</number> |
431 | </property> | 431 | </property> |
432 | </widget> | 432 | </widget> |
433 | <widget row="2" column="0" > | 433 | <widget row="2" column="0" > |
434 | <class>QLabel</class> | 434 | <class>QLabel</class> |
435 | <property stdset="1"> | 435 | <property stdset="1"> |
436 | <name>name</name> | 436 | <name>name</name> |
437 | <cstring>TextLabel1_5_2</cstring> | 437 | <cstring>TextLabel1_5_2</cstring> |
438 | </property> | 438 | </property> |
439 | <property stdset="1"> | 439 | <property stdset="1"> |
440 | <name>enabled</name> | 440 | <name>enabled</name> |
441 | <bool>true</bool> | 441 | <bool>true</bool> |
442 | </property> | 442 | </property> |
443 | <property stdset="1"> | 443 | <property stdset="1"> |
444 | <name>sizePolicy</name> | 444 | <name>sizePolicy</name> |
445 | <sizepolicy> | 445 | <sizepolicy> |
446 | <hsizetype>1</hsizetype> | 446 | <hsizetype>1</hsizetype> |
447 | <vsizetype>1</vsizetype> | 447 | <vsizetype>1</vsizetype> |
448 | </sizepolicy> | 448 | </sizepolicy> |
449 | </property> | 449 | </property> |
450 | <property stdset="1"> | 450 | <property stdset="1"> |
451 | <name>text</name> | 451 | <name>text</name> |
452 | <string>P-t-P</string> | 452 | <string>P-t-P</string> |
453 | </property> | 453 | </property> |
454 | <property stdset="1"> | 454 | <property stdset="1"> |
455 | <name>indent</name> | 455 | <name>indent</name> |
456 | <number>0</number> | 456 | <number>0</number> |
457 | </property> | 457 | </property> |
458 | </widget> | 458 | </widget> |
459 | <widget row="0" column="0" rowspan="1" colspan="2" > | 459 | <widget row="0" column="0" rowspan="1" colspan="2" > |
460 | <class>QLabel</class> | 460 | <class>QLabel</class> |
461 | <property stdset="1"> | 461 | <property stdset="1"> |
462 | <name>name</name> | 462 | <name>name</name> |
463 | <cstring>TextLabel3_2_3</cstring> | 463 | <cstring>TextLabel3_2_3</cstring> |
464 | </property> | 464 | </property> |
465 | <property stdset="1"> | 465 | <property stdset="1"> |
466 | <name>enabled</name> | 466 | <name>enabled</name> |
467 | <bool>true</bool> | 467 | <bool>true</bool> |
468 | </property> | 468 | </property> |
469 | <property stdset="1"> | 469 | <property stdset="1"> |
470 | <name>sizePolicy</name> | 470 | <name>sizePolicy</name> |
471 | <sizepolicy> | 471 | <sizepolicy> |
472 | <hsizetype>0</hsizetype> | 472 | <hsizetype>0</hsizetype> |
473 | <vsizetype>1</vsizetype> | 473 | <vsizetype>1</vsizetype> |
474 | </sizepolicy> | 474 | </sizepolicy> |
475 | </property> | 475 | </property> |
476 | <property stdset="1"> | 476 | <property stdset="1"> |
477 | <name>text</name> | 477 | <name>text</name> |
478 | <string>IP Address</string> | 478 | <string>IP Address</string> |
479 | </property> | 479 | </property> |
480 | </widget> | 480 | </widget> |
481 | <widget row="1" column="0" rowspan="1" colspan="2" > | 481 | <widget row="1" column="0" rowspan="1" colspan="2" > |
482 | <class>QLabel</class> | 482 | <class>QLabel</class> |
483 | <property stdset="1"> | 483 | <property stdset="1"> |
484 | <name>name</name> | 484 | <name>name</name> |
485 | <cstring>IPAddress_LBL</cstring> | 485 | <cstring>IPAddress_LBL</cstring> |
486 | </property> | 486 | </property> |
487 | <property stdset="1"> | 487 | <property stdset="1"> |
488 | <name>enabled</name> | 488 | <name>enabled</name> |
489 | <bool>true</bool> | 489 | <bool>true</bool> |
490 | </property> | 490 | </property> |
491 | <property stdset="1"> | 491 | <property stdset="1"> |
492 | <name>sizePolicy</name> | 492 | <name>sizePolicy</name> |
493 | <sizepolicy> | 493 | <sizepolicy> |
494 | <hsizetype>7</hsizetype> | 494 | <hsizetype>7</hsizetype> |
495 | <vsizetype>1</vsizetype> | 495 | <vsizetype>1</vsizetype> |
496 | </sizepolicy> | 496 | </sizepolicy> |
497 | </property> | 497 | </property> |
498 | <property stdset="1"> | 498 | <property stdset="1"> |
499 | <name>frameShape</name> | 499 | <name>frameShape</name> |
500 | <enum>Panel</enum> | 500 | <enum>Panel</enum> |
501 | </property> | 501 | </property> |
502 | <property stdset="1"> | 502 | <property stdset="1"> |
503 | <name>frameShadow</name> | 503 | <name>frameShadow</name> |
504 | <enum>Sunken</enum> | 504 | <enum>Sunken</enum> |
505 | </property> | 505 | </property> |
506 | <property stdset="1"> | 506 | <property stdset="1"> |
507 | <name>text</name> | 507 | <name>text</name> |
508 | <string>0.0.0.0</string> | 508 | <string>0.0.0.0</string> |
509 | </property> | 509 | </property> |
510 | <property stdset="1"> | 510 | <property stdset="1"> |
511 | <name>alignment</name> | 511 | <name>alignment</name> |
512 | <set>AlignCenter</set> | 512 | <set>AlignCenter</set> |
513 | </property> | 513 | </property> |
514 | <property stdset="1"> | 514 | <property stdset="1"> |
515 | <name>indent</name> | 515 | <name>indent</name> |
516 | <number>0</number> | 516 | <number>0</number> |
517 | </property> | 517 | </property> |
518 | <property> | 518 | <property> |
519 | <name>hAlign</name> | 519 | <name>hAlign</name> |
520 | </property> | 520 | </property> |
521 | </widget> | 521 | </widget> |
522 | <widget row="1" column="2" > | 522 | <widget row="1" column="2" > |
523 | <class>QLabel</class> | 523 | <class>QLabel</class> |
524 | <property stdset="1"> | 524 | <property stdset="1"> |
525 | <name>name</name> | 525 | <name>name</name> |
526 | <cstring>SubnetMask_LBL</cstring> | 526 | <cstring>SubnetMask_LBL</cstring> |
527 | </property> | 527 | </property> |
528 | <property stdset="1"> | 528 | <property stdset="1"> |
529 | <name>enabled</name> | 529 | <name>enabled</name> |
530 | <bool>true</bool> | 530 | <bool>true</bool> |
531 | </property> | 531 | </property> |
532 | <property stdset="1"> | 532 | <property stdset="1"> |
533 | <name>sizePolicy</name> | 533 | <name>sizePolicy</name> |
534 | <sizepolicy> | 534 | <sizepolicy> |
535 | <hsizetype>7</hsizetype> | 535 | <hsizetype>7</hsizetype> |
536 | <vsizetype>1</vsizetype> | 536 | <vsizetype>1</vsizetype> |
537 | </sizepolicy> | 537 | </sizepolicy> |
538 | </property> | 538 | </property> |
539 | <property stdset="1"> | 539 | <property stdset="1"> |
540 | <name>frameShape</name> | 540 | <name>frameShape</name> |
541 | <enum>Panel</enum> | 541 | <enum>Panel</enum> |
542 | </property> | 542 | </property> |
543 | <property stdset="1"> | 543 | <property stdset="1"> |
544 | <name>frameShadow</name> | 544 | <name>frameShadow</name> |
545 | <enum>Sunken</enum> | 545 | <enum>Sunken</enum> |
546 | </property> | 546 | </property> |
547 | <property stdset="1"> | 547 | <property stdset="1"> |
548 | <name>text</name> | 548 | <name>text</name> |
549 | <string>0.0.0.0</string> | 549 | <string>0.0.0.0</string> |
550 | </property> | 550 | </property> |
551 | <property stdset="1"> | 551 | <property stdset="1"> |
552 | <name>alignment</name> | 552 | <name>alignment</name> |
553 | <set>AlignCenter</set> | 553 | <set>AlignCenter</set> |
554 | </property> | 554 | </property> |
555 | <property stdset="1"> | 555 | <property stdset="1"> |
556 | <name>indent</name> | 556 | <name>indent</name> |
557 | <number>0</number> | 557 | <number>0</number> |
558 | </property> | 558 | </property> |
559 | <property> | 559 | <property> |
560 | <name>hAlign</name> | 560 | <name>hAlign</name> |
561 | </property> | 561 | </property> |
562 | </widget> | 562 | </widget> |
563 | <widget row="1" column="3" > | 563 | <widget row="1" column="3" > |
564 | <class>QLabel</class> | 564 | <class>QLabel</class> |
565 | <property stdset="1"> | 565 | <property stdset="1"> |
566 | <name>name</name> | 566 | <name>name</name> |
567 | <cstring>Broadcast_LBL</cstring> | 567 | <cstring>Broadcast_LBL</cstring> |
568 | </property> | 568 | </property> |
569 | <property stdset="1"> | 569 | <property stdset="1"> |
570 | <name>enabled</name> | 570 | <name>enabled</name> |
571 | <bool>true</bool> | 571 | <bool>true</bool> |
572 | </property> | 572 | </property> |
573 | <property stdset="1"> | 573 | <property stdset="1"> |
574 | <name>sizePolicy</name> | 574 | <name>sizePolicy</name> |
575 | <sizepolicy> | 575 | <sizepolicy> |
576 | <hsizetype>7</hsizetype> | 576 | <hsizetype>7</hsizetype> |
577 | <vsizetype>1</vsizetype> | 577 | <vsizetype>1</vsizetype> |
578 | </sizepolicy> | 578 | </sizepolicy> |
579 | </property> | 579 | </property> |
580 | <property stdset="1"> | 580 | <property stdset="1"> |
581 | <name>frameShape</name> | 581 | <name>frameShape</name> |
582 | <enum>StyledPanel</enum> | 582 | <enum>StyledPanel</enum> |
583 | </property> | 583 | </property> |
584 | <property stdset="1"> | 584 | <property stdset="1"> |
585 | <name>frameShadow</name> | 585 | <name>frameShadow</name> |
586 | <enum>Sunken</enum> | 586 | <enum>Sunken</enum> |
587 | </property> | 587 | </property> |
588 | <property stdset="1"> | 588 | <property stdset="1"> |
589 | <name>alignment</name> | 589 | <name>alignment</name> |
590 | <set>AlignCenter</set> | 590 | <set>AlignCenter</set> |
591 | </property> | 591 | </property> |
592 | <property stdset="1"> | 592 | <property stdset="1"> |
593 | <name>indent</name> | 593 | <name>indent</name> |
594 | <number>0</number> | 594 | <number>0</number> |
595 | </property> | 595 | </property> |
596 | <property> | 596 | <property> |
597 | <name>hAlign</name> | 597 | <name>hAlign</name> |
598 | </property> | 598 | </property> |
599 | </widget> | 599 | </widget> |
600 | <widget row="2" column="1" rowspan="1" colspan="3" > | 600 | <widget row="2" column="1" rowspan="1" colspan="3" > |
601 | <class>QLabel</class> | 601 | <class>QLabel</class> |
602 | <property stdset="1"> | 602 | <property stdset="1"> |
603 | <name>name</name> | 603 | <name>name</name> |
604 | <cstring>PointToPoint_LBL</cstring> | 604 | <cstring>PointToPoint_LBL</cstring> |
605 | </property> | 605 | </property> |
606 | <property stdset="1"> | 606 | <property stdset="1"> |
607 | <name>enabled</name> | 607 | <name>enabled</name> |
608 | <bool>true</bool> | 608 | <bool>true</bool> |
609 | </property> | 609 | </property> |
610 | <property stdset="1"> | 610 | <property stdset="1"> |
611 | <name>sizePolicy</name> | 611 | <name>sizePolicy</name> |
612 | <sizepolicy> | 612 | <sizepolicy> |
613 | <hsizetype>5</hsizetype> | 613 | <hsizetype>5</hsizetype> |
614 | <vsizetype>0</vsizetype> | 614 | <vsizetype>0</vsizetype> |
615 | </sizepolicy> | 615 | </sizepolicy> |
616 | </property> | 616 | </property> |
617 | <property stdset="1"> | 617 | <property stdset="1"> |
618 | <name>frameShape</name> | 618 | <name>frameShape</name> |
619 | <enum>Panel</enum> | 619 | <enum>Panel</enum> |
620 | </property> | 620 | </property> |
621 | <property stdset="1"> | 621 | <property stdset="1"> |
622 | <name>frameShadow</name> | 622 | <name>frameShadow</name> |
623 | <enum>Sunken</enum> | 623 | <enum>Sunken</enum> |
624 | </property> | 624 | </property> |
625 | <property stdset="1"> | 625 | <property stdset="1"> |
626 | <name>indent</name> | 626 | <name>indent</name> |
627 | <number>0</number> | 627 | <number>0</number> |
628 | </property> | 628 | </property> |
629 | </widget> | 629 | </widget> |
630 | <widget row="3" column="1" rowspan="1" colspan="3" > | 630 | <widget row="3" column="1" rowspan="1" colspan="3" > |
631 | <class>QLabel</class> | 631 | <class>QLabel</class> |
632 | <property stdset="1"> | 632 | <property stdset="1"> |
633 | <name>name</name> | 633 | <name>name</name> |
634 | <cstring>MACAddress_LBL</cstring> | 634 | <cstring>MACAddress_LBL</cstring> |
635 | </property> | 635 | </property> |
636 | <property stdset="1"> | 636 | <property stdset="1"> |
637 | <name>enabled</name> | 637 | <name>enabled</name> |
638 | <bool>true</bool> | 638 | <bool>true</bool> |
639 | </property> | 639 | </property> |
640 | <property stdset="1"> | 640 | <property stdset="1"> |
641 | <name>sizePolicy</name> | 641 | <name>sizePolicy</name> |
642 | <sizepolicy> | 642 | <sizepolicy> |
643 | <hsizetype>5</hsizetype> | 643 | <hsizetype>5</hsizetype> |
644 | <vsizetype>0</vsizetype> | 644 | <vsizetype>0</vsizetype> |
645 | </sizepolicy> | 645 | </sizepolicy> |
646 | </property> | 646 | </property> |
647 | <property stdset="1"> | 647 | <property stdset="1"> |
648 | <name>frameShape</name> | 648 | <name>frameShape</name> |
649 | <enum>Panel</enum> | 649 | <enum>Panel</enum> |
650 | </property> | 650 | </property> |
651 | <property stdset="1"> | 651 | <property stdset="1"> |
652 | <name>frameShadow</name> | 652 | <name>frameShadow</name> |
653 | <enum>Sunken</enum> | 653 | <enum>Sunken</enum> |
654 | </property> | 654 | </property> |
655 | <property stdset="1"> | 655 | <property stdset="1"> |
656 | <name>text</name> | 656 | <name>text</name> |
657 | <string>00:00:00:00:00:00</string> | 657 | <string>00:00:00:00:00:00</string> |
658 | </property> | 658 | </property> |
659 | <property stdset="1"> | 659 | <property stdset="1"> |
660 | <name>indent</name> | 660 | <name>indent</name> |
661 | <number>0</number> | 661 | <number>0</number> |
662 | </property> | 662 | </property> |
663 | </widget> | 663 | </widget> |
664 | </grid> | 664 | </grid> |
665 | </widget> | 665 | </widget> |
666 | <widget> | 666 | <widget> |
667 | <class>QLabel</class> | 667 | <class>QLabel</class> |
668 | <property stdset="1"> | 668 | <property stdset="1"> |
669 | <name>name</name> | 669 | <name>name</name> |
670 | <cstring>TextLabel2_2</cstring> | 670 | <cstring>TextLabel2_2</cstring> |
671 | </property> | 671 | </property> |
672 | <property stdset="1"> | 672 | <property stdset="1"> |
673 | <name>font</name> | 673 | <name>font</name> |
674 | <font> | 674 | <font> |
675 | <underline>1</underline> | 675 | <underline>1</underline> |
676 | </font> | 676 | </font> |
677 | </property> | 677 | </property> |
678 | <property stdset="1"> | 678 | <property stdset="1"> |
679 | <name>frameShape</name> | 679 | <name>frameShape</name> |
680 | <enum>NoFrame</enum> | 680 | <enum>NoFrame</enum> |
681 | </property> | 681 | </property> |
682 | <property stdset="1"> | 682 | <property stdset="1"> |
683 | <name>margin</name> | 683 | <name>margin</name> |
684 | <number>1</number> | 684 | <number>1</number> |
685 | </property> | 685 | </property> |
686 | <property stdset="1"> | 686 | <property stdset="1"> |
687 | <name>text</name> | 687 | <name>text</name> |
688 | <string>DHCP</string> | 688 | <string>DHCP</string> |
689 | </property> | 689 | </property> |
690 | <property stdset="1"> | 690 | <property stdset="1"> |
691 | <name>indent</name> | 691 | <name>indent</name> |
692 | <number>0</number> | 692 | <number>0</number> |
693 | </property> | 693 | </property> |
694 | </widget> | 694 | </widget> |
695 | <widget> | 695 | <widget> |
696 | <class>QFrame</class> | 696 | <class>QFrame</class> |
697 | <property stdset="1"> | 697 | <property stdset="1"> |
698 | <name>name</name> | 698 | <name>name</name> |
699 | <cstring>DHCP_GB</cstring> | 699 | <cstring>DHCP_GB</cstring> |
700 | </property> | 700 | </property> |
701 | <property stdset="1"> | 701 | <property stdset="1"> |
702 | <name>sizePolicy</name> | 702 | <name>sizePolicy</name> |
703 | <sizepolicy> | 703 | <sizepolicy> |
704 | <hsizetype>7</hsizetype> | 704 | <hsizetype>7</hsizetype> |
705 | <vsizetype>5</vsizetype> | 705 | <vsizetype>5</vsizetype> |
706 | </sizepolicy> | 706 | </sizepolicy> |
707 | </property> | 707 | </property> |
708 | <property stdset="1"> | 708 | <property stdset="1"> |
709 | <name>frameShape</name> | 709 | <name>frameShape</name> |
710 | <enum>NoFrame</enum> | 710 | <enum>NoFrame</enum> |
711 | </property> | 711 | </property> |
712 | <property stdset="1"> | 712 | <property stdset="1"> |
713 | <name>frameShadow</name> | 713 | <name>frameShadow</name> |
714 | <enum>Raised</enum> | 714 | <enum>Raised</enum> |
715 | </property> | 715 | </property> |
716 | <property> | 716 | <property> |
717 | <name>layoutMargin</name> | 717 | <name>layoutMargin</name> |
718 | </property> | 718 | </property> |
719 | <property> | 719 | <property> |
720 | <name>layoutSpacing</name> | 720 | <name>layoutSpacing</name> |
721 | </property> | 721 | </property> |
722 | <grid> | 722 | <grid> |
723 | <property stdset="1"> | 723 | <property stdset="1"> |
724 | <name>margin</name> | 724 | <name>margin</name> |
725 | <number>2</number> | 725 | <number>2</number> |
726 | </property> | 726 | </property> |
727 | <property stdset="1"> | 727 | <property stdset="1"> |
728 | <name>spacing</name> | 728 | <name>spacing</name> |
729 | <number>1</number> | 729 | <number>1</number> |
730 | </property> | 730 | </property> |
731 | <widget row="2" column="0" > | 731 | <widget row="2" column="0" > |
732 | <class>QLabel</class> | 732 | <class>QLabel</class> |
733 | <property stdset="1"> | 733 | <property stdset="1"> |
734 | <name>name</name> | 734 | <name>name</name> |
735 | <cstring>TextLabel9_3</cstring> | 735 | <cstring>TextLabel9_3</cstring> |
736 | </property> | 736 | </property> |
737 | <property stdset="1"> | 737 | <property stdset="1"> |
738 | <name>enabled</name> | 738 | <name>enabled</name> |
739 | <bool>true</bool> | 739 | <bool>true</bool> |
740 | </property> | 740 | </property> |
741 | <property stdset="1"> | 741 | <property stdset="1"> |
742 | <name>sizePolicy</name> | 742 | <name>sizePolicy</name> |
743 | <sizepolicy> | 743 | <sizepolicy> |
744 | <hsizetype>1</hsizetype> | 744 | <hsizetype>1</hsizetype> |
745 | <vsizetype>1</vsizetype> | 745 | <vsizetype>1</vsizetype> |
746 | </sizepolicy> | 746 | </sizepolicy> |
747 | </property> | 747 | </property> |
748 | <property stdset="1"> | 748 | <property stdset="1"> |
749 | <name>text</name> | 749 | <name>text</name> |
750 | <string>Lease Expires</string> | 750 | <string>Lease Expires</string> |
751 | </property> | 751 | </property> |
752 | </widget> | 752 | </widget> |
753 | <widget row="1" column="0" > | 753 | <widget row="1" column="0" > |
754 | <class>QLabel</class> | 754 | <class>QLabel</class> |
755 | <property stdset="1"> | 755 | <property stdset="1"> |
756 | <name>name</name> | 756 | <name>name</name> |
757 | <cstring>TextLabel8_3</cstring> | 757 | <cstring>TextLabel8_3</cstring> |
758 | </property> | 758 | </property> |
759 | <property stdset="1"> | 759 | <property stdset="1"> |
760 | <name>enabled</name> | 760 | <name>enabled</name> |
761 | <bool>true</bool> | 761 | <bool>true</bool> |
762 | </property> | 762 | </property> |
763 | <property stdset="1"> | 763 | <property stdset="1"> |
764 | <name>sizePolicy</name> | 764 | <name>sizePolicy</name> |
765 | <sizepolicy> | 765 | <sizepolicy> |
766 | <hsizetype>0</hsizetype> | 766 | <hsizetype>0</hsizetype> |
767 | <vsizetype>1</vsizetype> | 767 | <vsizetype>1</vsizetype> |
768 | </sizepolicy> | 768 | </sizepolicy> |
769 | </property> | 769 | </property> |
770 | <property stdset="1"> | 770 | <property stdset="1"> |
771 | <name>text</name> | 771 | <name>text</name> |
772 | <string>Lease Obtained</string> | 772 | <string>Lease Obtained</string> |
773 | </property> | 773 | </property> |
774 | </widget> | 774 | </widget> |
775 | <widget row="0" column="1" > | 775 | <widget row="0" column="1" > |
776 | <class>QLabel</class> | 776 | <class>QLabel</class> |
777 | <property stdset="1"> | 777 | <property stdset="1"> |
778 | <name>name</name> | 778 | <name>name</name> |
779 | <cstring>DHCPServer_LBL</cstring> | 779 | <cstring>DHCPServer_LBL</cstring> |
780 | </property> | 780 | </property> |
781 | <property stdset="1"> | 781 | <property stdset="1"> |
782 | <name>enabled</name> | 782 | <name>enabled</name> |
783 | <bool>true</bool> | 783 | <bool>true</bool> |
784 | </property> | 784 | </property> |
785 | <property stdset="1"> | 785 | <property stdset="1"> |
786 | <name>sizePolicy</name> | 786 | <name>sizePolicy</name> |
787 | <sizepolicy> | 787 | <sizepolicy> |
788 | <hsizetype>5</hsizetype> | 788 | <hsizetype>5</hsizetype> |
789 | <vsizetype>1</vsizetype> | 789 | <vsizetype>1</vsizetype> |
790 | </sizepolicy> | 790 | </sizepolicy> |
791 | </property> | 791 | </property> |
792 | <property stdset="1"> | 792 | <property stdset="1"> |
793 | <name>frameShape</name> | 793 | <name>frameShape</name> |
794 | <enum>Panel</enum> | 794 | <enum>Panel</enum> |
795 | </property> | 795 | </property> |
796 | <property stdset="1"> | 796 | <property stdset="1"> |
797 | <name>frameShadow</name> | 797 | <name>frameShadow</name> |
798 | <enum>Sunken</enum> | 798 | <enum>Sunken</enum> |
799 | </property> | 799 | </property> |
800 | <property stdset="1"> | 800 | <property stdset="1"> |
801 | <name>text</name> | 801 | <name>text</name> |
802 | <string></string> | 802 | <string></string> |
803 | </property> | 803 | </property> |
804 | <property stdset="1"> | 804 | <property stdset="1"> |
805 | <name>indent</name> | 805 | <name>indent</name> |
806 | <number>0</number> | 806 | <number>0</number> |
807 | </property> | 807 | </property> |
808 | </widget> | 808 | </widget> |
809 | <widget row="1" column="1" > | 809 | <widget row="1" column="1" > |
810 | <class>QLabel</class> | 810 | <class>QLabel</class> |
811 | <property stdset="1"> | 811 | <property stdset="1"> |
812 | <name>name</name> | 812 | <name>name</name> |
813 | <cstring>LeaseObtained_LBL</cstring> | 813 | <cstring>LeaseObtained_LBL</cstring> |
814 | </property> | 814 | </property> |
815 | <property stdset="1"> | 815 | <property stdset="1"> |
816 | <name>enabled</name> | 816 | <name>enabled</name> |
817 | <bool>true</bool> | 817 | <bool>true</bool> |
818 | </property> | 818 | </property> |
819 | <property stdset="1"> | 819 | <property stdset="1"> |
820 | <name>sizePolicy</name> | 820 | <name>sizePolicy</name> |
821 | <sizepolicy> | 821 | <sizepolicy> |
822 | <hsizetype>5</hsizetype> | 822 | <hsizetype>5</hsizetype> |
823 | <vsizetype>1</vsizetype> | 823 | <vsizetype>1</vsizetype> |
824 | </sizepolicy> | 824 | </sizepolicy> |
825 | </property> | 825 | </property> |
826 | <property stdset="1"> | 826 | <property stdset="1"> |
827 | <name>minimumSize</name> | 827 | <name>minimumSize</name> |
828 | <size> | 828 | <size> |
829 | <width>94</width> | 829 | <width>94</width> |
830 | <height>0</height> | 830 | <height>0</height> |
831 | </size> | 831 | </size> |
832 | </property> | 832 | </property> |
833 | <property stdset="1"> | 833 | <property stdset="1"> |
834 | <name>frameShape</name> | 834 | <name>frameShape</name> |
835 | <enum>Panel</enum> | 835 | <enum>Panel</enum> |
836 | </property> | 836 | </property> |
837 | <property stdset="1"> | 837 | <property stdset="1"> |
838 | <name>frameShadow</name> | 838 | <name>frameShadow</name> |
839 | <enum>Sunken</enum> | 839 | <enum>Sunken</enum> |
840 | </property> | 840 | </property> |
841 | <property stdset="1"> | 841 | <property stdset="1"> |
842 | <name>text</name> | 842 | <name>text</name> |
843 | <string></string> | 843 | <string></string> |
844 | </property> | 844 | </property> |
845 | <property stdset="1"> | 845 | <property stdset="1"> |
846 | <name>indent</name> | 846 | <name>indent</name> |
847 | <number>0</number> | 847 | <number>0</number> |
848 | </property> | 848 | </property> |
849 | </widget> | 849 | </widget> |
850 | <widget row="2" column="1" > | 850 | <widget row="2" column="1" > |
851 | <class>QLabel</class> | 851 | <class>QLabel</class> |
852 | <property stdset="1"> | 852 | <property stdset="1"> |
853 | <name>name</name> | 853 | <name>name</name> |
854 | <cstring>LeaseExpires_LBL</cstring> | 854 | <cstring>LeaseExpires_LBL</cstring> |
855 | </property> | 855 | </property> |
856 | <property stdset="1"> | 856 | <property stdset="1"> |
857 | <name>enabled</name> | 857 | <name>enabled</name> |
858 | <bool>true</bool> | 858 | <bool>true</bool> |
859 | </property> | 859 | </property> |
860 | <property stdset="1"> | 860 | <property stdset="1"> |
861 | <name>sizePolicy</name> | 861 | <name>sizePolicy</name> |
862 | <sizepolicy> | 862 | <sizepolicy> |
863 | <hsizetype>5</hsizetype> | 863 | <hsizetype>5</hsizetype> |
864 | <vsizetype>1</vsizetype> | 864 | <vsizetype>1</vsizetype> |
865 | </sizepolicy> | 865 | </sizepolicy> |
866 | </property> | 866 | </property> |
867 | <property stdset="1"> | 867 | <property stdset="1"> |
868 | <name>frameShape</name> | 868 | <name>frameShape</name> |
869 | <enum>Panel</enum> | 869 | <enum>Panel</enum> |
870 | </property> | 870 | </property> |
871 | <property stdset="1"> | 871 | <property stdset="1"> |
872 | <name>frameShadow</name> | 872 | <name>frameShadow</name> |
873 | <enum>Sunken</enum> | 873 | <enum>Sunken</enum> |
874 | </property> | 874 | </property> |
875 | <property stdset="1"> | 875 | <property stdset="1"> |
876 | <name>text</name> | 876 | <name>text</name> |
877 | <string></string> | 877 | <string></string> |
878 | </property> | 878 | </property> |
879 | <property stdset="1"> | 879 | <property stdset="1"> |
880 | <name>indent</name> | 880 | <name>indent</name> |
881 | <number>0</number> | 881 | <number>0</number> |
882 | </property> | 882 | </property> |
883 | </widget> | 883 | </widget> |
884 | <widget row="0" column="0" > | 884 | <widget row="0" column="0" > |
885 | <class>QLabel</class> | 885 | <class>QLabel</class> |
886 | <property stdset="1"> | 886 | <property stdset="1"> |
887 | <name>name</name> | 887 | <name>name</name> |
888 | <cstring>TextLabel6_3</cstring> | 888 | <cstring>TextLabel6_3</cstring> |
889 | </property> | 889 | </property> |
890 | <property stdset="1"> | 890 | <property stdset="1"> |
891 | <name>enabled</name> | 891 | <name>enabled</name> |
892 | <bool>true</bool> | 892 | <bool>true</bool> |
893 | </property> | 893 | </property> |
894 | <property stdset="1"> | 894 | <property stdset="1"> |
895 | <name>sizePolicy</name> | 895 | <name>sizePolicy</name> |
896 | <sizepolicy> | 896 | <sizepolicy> |
897 | <hsizetype>1</hsizetype> | 897 | <hsizetype>1</hsizetype> |
898 | <vsizetype>1</vsizetype> | 898 | <vsizetype>1</vsizetype> |
899 | </sizepolicy> | 899 | </sizepolicy> |
900 | </property> | 900 | </property> |
901 | <property stdset="1"> | 901 | <property stdset="1"> |
902 | <name>text</name> | 902 | <name>text</name> |
903 | <string>DHCP Server</string> | 903 | <string>DHCP Server</string> |
904 | </property> | 904 | </property> |
905 | </widget> | 905 | </widget> |
906 | </grid> | 906 | </grid> |
907 | </widget> | 907 | </widget> |
908 | <spacer> | 908 | <spacer> |
909 | <property> | 909 | <property> |
910 | <name>name</name> | 910 | <name>name</name> |
911 | <cstring>Spacer16</cstring> | 911 | <cstring>Spacer16</cstring> |
912 | </property> | 912 | </property> |
913 | <property stdset="1"> | 913 | <property stdset="1"> |
914 | <name>orientation</name> | 914 | <name>orientation</name> |
915 | <enum>Vertical</enum> | 915 | <enum>Vertical</enum> |
916 | </property> | 916 | </property> |
917 | <property stdset="1"> | 917 | <property stdset="1"> |
918 | <name>sizeType</name> | 918 | <name>sizeType</name> |
919 | <enum>Expanding</enum> | 919 | <enum>Expanding</enum> |
920 | </property> | 920 | </property> |
921 | <property> | 921 | <property> |
922 | <name>sizeHint</name> | 922 | <name>sizeHint</name> |
923 | <size> | 923 | <size> |
924 | <width>20</width> | 924 | <width>20</width> |
925 | <height>20</height> | 925 | <height>20</height> |
926 | </size> | 926 | </size> |
927 | </property> | 927 | </property> |
928 | </spacer> | 928 | </spacer> |
929 | </vbox> | 929 | </vbox> |
930 | </widget> | 930 | </widget> |
931 | <widget> | 931 | <widget> |
932 | <class>QWidget</class> | 932 | <class>QWidget</class> |
933 | <property stdset="1"> | 933 | <property stdset="1"> |
934 | <name>name</name> | 934 | <name>name</name> |
935 | <cstring>tab</cstring> | 935 | <cstring>tab</cstring> |
936 | </property> | 936 | </property> |
937 | <attribute> | 937 | <attribute> |
938 | <name>title</name> | 938 | <name>title</name> |
939 | <string>Traffic</string> | 939 | <string>Traffic</string> |
940 | </attribute> | 940 | </attribute> |
941 | <vbox> | 941 | <vbox> |
942 | <property stdset="1"> | 942 | <property stdset="1"> |
943 | <name>margin</name> | 943 | <name>margin</name> |
944 | <number>0</number> | 944 | <number>0</number> |
945 | </property> | 945 | </property> |
946 | <property stdset="1"> | 946 | <property stdset="1"> |
947 | <name>spacing</name> | 947 | <name>spacing</name> |
948 | <number>0</number> | 948 | <number>0</number> |
949 | </property> | 949 | </property> |
950 | <widget> | 950 | <widget> |
951 | <class>QGroupBox</class> | 951 | <class>QGroupBox</class> |
952 | <property stdset="1"> | 952 | <property stdset="1"> |
953 | <name>name</name> | 953 | <name>name</name> |
954 | <cstring>Receiving_GB</cstring> | 954 | <cstring>Receiving_GB</cstring> |
955 | </property> | 955 | </property> |
956 | <property stdset="1"> | 956 | <property stdset="1"> |
957 | <name>enabled</name> | 957 | <name>enabled</name> |
958 | <bool>false</bool> | 958 | <bool>false</bool> |
959 | </property> | 959 | </property> |
960 | <property stdset="1"> | 960 | <property stdset="1"> |
961 | <name>title</name> | 961 | <name>title</name> |
962 | <string>Receiving</string> | 962 | <string>Receiving</string> |
963 | </property> | 963 | </property> |
964 | <property> | 964 | <property> |
965 | <name>layoutMargin</name> | 965 | <name>layoutMargin</name> |
966 | </property> | 966 | </property> |
967 | <property> | 967 | <property> |
968 | <name>layoutSpacing</name> | 968 | <name>layoutSpacing</name> |
969 | </property> | 969 | </property> |
970 | <vbox> | 970 | <vbox> |
971 | <property stdset="1"> | 971 | <property stdset="1"> |
972 | <name>margin</name> | 972 | <name>margin</name> |
973 | <number>4</number> | 973 | <number>4</number> |
974 | </property> | 974 | </property> |
975 | <property stdset="1"> | 975 | <property stdset="1"> |
976 | <name>spacing</name> | 976 | <name>spacing</name> |
977 | <number>2</number> | 977 | <number>2</number> |
978 | </property> | 978 | </property> |
979 | <widget> | 979 | <widget> |
980 | <class>QLayoutWidget</class> | 980 | <class>QLayoutWidget</class> |
981 | <property stdset="1"> | 981 | <property stdset="1"> |
982 | <name>name</name> | 982 | <name>name</name> |
983 | <cstring>Layout11</cstring> | 983 | <cstring>Layout11</cstring> |
984 | </property> | 984 | </property> |
985 | <property> | 985 | <property> |
986 | <name>layoutSpacing</name> | 986 | <name>layoutSpacing</name> |
987 | </property> | 987 | </property> |
988 | <hbox> | 988 | <hbox> |
989 | <property stdset="1"> | 989 | <property stdset="1"> |
990 | <name>margin</name> | 990 | <name>margin</name> |
991 | <number>0</number> | 991 | <number>0</number> |
992 | </property> | 992 | </property> |
993 | <property stdset="1"> | 993 | <property stdset="1"> |
994 | <name>spacing</name> | 994 | <name>spacing</name> |
995 | <number>2</number> | 995 | <number>2</number> |
996 | </property> | 996 | </property> |
997 | <widget> | 997 | <widget> |
998 | <class>QLabel</class> | 998 | <class>QLabel</class> |
999 | <property stdset="1"> | 999 | <property stdset="1"> |
1000 | <name>name</name> | 1000 | <name>name</name> |
1001 | <cstring>xxxxxxxxxxxxx</cstring> | 1001 | <cstring>xxxxxxxxxxxxx</cstring> |
1002 | </property> | 1002 | </property> |
1003 | <property stdset="1"> | 1003 | <property stdset="1"> |
1004 | <name>text</name> | 1004 | <name>text</name> |
1005 | <string>Pkt</string> | 1005 | <string>Pkt</string> |
1006 | </property> | 1006 | </property> |
1007 | </widget> | 1007 | </widget> |
1008 | <widget> | 1008 | <widget> |
1009 | <class>QLabel</class> | 1009 | <class>QLabel</class> |
1010 | <property stdset="1"> | 1010 | <property stdset="1"> |
1011 | <name>name</name> | 1011 | <name>name</name> |
1012 | <cstring>RcvPackets_LBL</cstring> | 1012 | <cstring>RcvPackets_LBL</cstring> |
1013 | </property> | 1013 | </property> |
1014 | <property stdset="1"> | 1014 | <property stdset="1"> |
1015 | <name>sizePolicy</name> | 1015 | <name>sizePolicy</name> |
1016 | <sizepolicy> | 1016 | <sizepolicy> |
1017 | <hsizetype>7</hsizetype> | 1017 | <hsizetype>7</hsizetype> |
1018 | <vsizetype>1</vsizetype> | 1018 | <vsizetype>1</vsizetype> |
1019 | </sizepolicy> | 1019 | </sizepolicy> |
1020 | </property> | 1020 | </property> |
1021 | <property stdset="1"> | 1021 | <property stdset="1"> |
1022 | <name>frameShape</name> | 1022 | <name>frameShape</name> |
1023 | <enum>Panel</enum> | 1023 | <enum>Panel</enum> |
1024 | </property> | 1024 | </property> |
1025 | <property stdset="1"> | 1025 | <property stdset="1"> |
1026 | <name>frameShadow</name> | 1026 | <name>frameShadow</name> |
1027 | <enum>Sunken</enum> | 1027 | <enum>Sunken</enum> |
1028 | </property> | 1028 | </property> |
1029 | <property stdset="1"> | 1029 | <property stdset="1"> |
1030 | <name>indent</name> | 1030 | <name>indent</name> |
1031 | <number>0</number> | 1031 | <number>0</number> |
1032 | </property> | 1032 | </property> |
1033 | </widget> | 1033 | </widget> |
1034 | <widget> | 1034 | <widget> |
1035 | <class>QLabel</class> | 1035 | <class>QLabel</class> |
1036 | <property stdset="1"> | 1036 | <property stdset="1"> |
1037 | <name>name</name> | 1037 | <name>name</name> |
1038 | <cstring>TextLabel1_5_3_4</cstring> | 1038 | <cstring>TextLabel1_5_3_4</cstring> |
1039 | </property> | 1039 | </property> |
1040 | <property stdset="1"> | 1040 | <property stdset="1"> |
1041 | <name>text</name> | 1041 | <name>text</name> |
1042 | <string>Bytes</string> | 1042 | <string>Bytes</string> |
1043 | </property> | 1043 | </property> |
1044 | </widget> | 1044 | </widget> |
1045 | <widget> | 1045 | <widget> |
1046 | <class>QLabel</class> | 1046 | <class>QLabel</class> |
1047 | <property stdset="1"> | 1047 | <property stdset="1"> |
1048 | <name>name</name> | 1048 | <name>name</name> |
1049 | <cstring>RcvBytes_LBL</cstring> | 1049 | <cstring>RcvBytes_LBL</cstring> |
1050 | </property> | 1050 | </property> |
1051 | <property stdset="1"> | 1051 | <property stdset="1"> |
1052 | <name>sizePolicy</name> | 1052 | <name>sizePolicy</name> |
1053 | <sizepolicy> | 1053 | <sizepolicy> |
1054 | <hsizetype>7</hsizetype> | 1054 | <hsizetype>7</hsizetype> |
1055 | <vsizetype>1</vsizetype> | 1055 | <vsizetype>1</vsizetype> |
1056 | </sizepolicy> | 1056 | </sizepolicy> |
1057 | </property> | 1057 | </property> |
1058 | <property stdset="1"> | 1058 | <property stdset="1"> |
1059 | <name>frameShape</name> | 1059 | <name>frameShape</name> |
1060 | <enum>Panel</enum> | 1060 | <enum>Panel</enum> |
1061 | </property> | 1061 | </property> |
1062 | <property stdset="1"> | 1062 | <property stdset="1"> |
1063 | <name>frameShadow</name> | 1063 | <name>frameShadow</name> |
1064 | <enum>Sunken</enum> | 1064 | <enum>Sunken</enum> |
1065 | </property> | 1065 | </property> |
1066 | <property stdset="1"> | 1066 | <property stdset="1"> |
1067 | <name>indent</name> | 1067 | <name>indent</name> |
1068 | <number>0</number> | 1068 | <number>0</number> |
1069 | </property> | 1069 | </property> |
1070 | </widget> | 1070 | </widget> |
1071 | <widget> | 1071 | <widget> |
1072 | <class>QLabel</class> | 1072 | <class>QLabel</class> |
1073 | <property stdset="1"> | 1073 | <property stdset="1"> |
1074 | <name>name</name> | 1074 | <name>name</name> |
1075 | <cstring>TextLabel1_5_3_4_2</cstring> | 1075 | <cstring>TextLabel1_5_3_4_2</cstring> |
1076 | </property> | 1076 | </property> |
1077 | <property stdset="1"> | 1077 | <property stdset="1"> |
1078 | <name>text</name> | 1078 | <name>text</name> |
1079 | <string>ODO</string> | 1079 | <string>ODO</string> |
1080 | </property> | 1080 | </property> |
1081 | </widget> | 1081 | </widget> |
1082 | <widget> | 1082 | <widget> |
1083 | <class>QLabel</class> | 1083 | <class>QLabel</class> |
1084 | <property stdset="1"> | 1084 | <property stdset="1"> |
1085 | <name>name</name> | 1085 | <name>name</name> |
1086 | <cstring>RcvODO_LBL</cstring> | 1086 | <cstring>RcvODO_LBL</cstring> |
1087 | </property> | 1087 | </property> |
1088 | <property stdset="1"> | 1088 | <property stdset="1"> |
1089 | <name>sizePolicy</name> | 1089 | <name>sizePolicy</name> |
1090 | <sizepolicy> | 1090 | <sizepolicy> |
1091 | <hsizetype>7</hsizetype> | 1091 | <hsizetype>7</hsizetype> |
1092 | <vsizetype>1</vsizetype> | 1092 | <vsizetype>1</vsizetype> |
1093 | </sizepolicy> | 1093 | </sizepolicy> |
1094 | </property> | 1094 | </property> |
1095 | <property stdset="1"> | 1095 | <property stdset="1"> |
1096 | <name>frameShape</name> | 1096 | <name>frameShape</name> |
1097 | <enum>Panel</enum> | 1097 | <enum>Panel</enum> |
1098 | </property> | 1098 | </property> |
1099 | <property stdset="1"> | 1099 | <property stdset="1"> |
1100 | <name>frameShadow</name> | 1100 | <name>frameShadow</name> |
1101 | <enum>Sunken</enum> | 1101 | <enum>Sunken</enum> |
1102 | </property> | 1102 | </property> |
1103 | <property stdset="1"> | 1103 | <property stdset="1"> |
1104 | <name>indent</name> | 1104 | <name>indent</name> |
1105 | <number>0</number> | 1105 | <number>0</number> |
1106 | </property> | 1106 | </property> |
1107 | </widget> | 1107 | </widget> |
1108 | </hbox> | 1108 | </hbox> |
1109 | </widget> | 1109 | </widget> |
1110 | <widget> | 1110 | <widget> |
1111 | <class>QLayoutWidget</class> | 1111 | <class>QLayoutWidget</class> |
1112 | <property stdset="1"> | 1112 | <property stdset="1"> |
1113 | <name>name</name> | 1113 | <name>name</name> |
1114 | <cstring>Layout12</cstring> | 1114 | <cstring>Layout12</cstring> |
1115 | </property> | 1115 | </property> |
1116 | <property> | 1116 | <property> |
1117 | <name>layoutSpacing</name> | 1117 | <name>layoutSpacing</name> |
1118 | </property> | 1118 | </property> |
1119 | <hbox> | 1119 | <hbox> |
1120 | <property stdset="1"> | 1120 | <property stdset="1"> |
1121 | <name>margin</name> | 1121 | <name>margin</name> |
1122 | <number>0</number> | 1122 | <number>0</number> |
1123 | </property> | 1123 | </property> |
1124 | <property stdset="1"> | 1124 | <property stdset="1"> |
1125 | <name>spacing</name> | 1125 | <name>spacing</name> |
1126 | <number>2</number> | 1126 | <number>2</number> |
1127 | </property> | 1127 | </property> |
1128 | <widget> | 1128 | <widget> |
1129 | <class>QLabel</class> | 1129 | <class>QLabel</class> |
1130 | <property stdset="1"> | 1130 | <property stdset="1"> |
1131 | <name>name</name> | 1131 | <name>name</name> |
1132 | <cstring>TextLabel1_5_9</cstring> | 1132 | <cstring>TextLabel1_5_9</cstring> |
1133 | </property> | 1133 | </property> |
1134 | <property stdset="1"> | 1134 | <property stdset="1"> |
1135 | <name>text</name> | 1135 | <name>text</name> |
1136 | <string>Errors</string> | 1136 | <string>Errors</string> |
1137 | </property> | 1137 | </property> |
1138 | </widget> | 1138 | </widget> |
1139 | <widget> | 1139 | <widget> |
1140 | <class>QLabel</class> | 1140 | <class>QLabel</class> |
1141 | <property stdset="1"> | 1141 | <property stdset="1"> |
1142 | <name>name</name> | 1142 | <name>name</name> |
1143 | <cstring>RcvErrors_LBL</cstring> | 1143 | <cstring>RcvErrors_LBL</cstring> |
1144 | </property> | 1144 | </property> |
1145 | <property stdset="1"> | 1145 | <property stdset="1"> |
1146 | <name>sizePolicy</name> | 1146 | <name>sizePolicy</name> |
1147 | <sizepolicy> | 1147 | <sizepolicy> |
1148 | <hsizetype>7</hsizetype> | 1148 | <hsizetype>7</hsizetype> |
1149 | <vsizetype>1</vsizetype> | 1149 | <vsizetype>1</vsizetype> |
1150 | </sizepolicy> | 1150 | </sizepolicy> |
1151 | </property> | 1151 | </property> |
1152 | <property stdset="1"> | 1152 | <property stdset="1"> |
1153 | <name>frameShape</name> | 1153 | <name>frameShape</name> |
1154 | <enum>Panel</enum> | 1154 | <enum>Panel</enum> |
1155 | </property> | 1155 | </property> |
1156 | <property stdset="1"> | 1156 | <property stdset="1"> |
1157 | <name>frameShadow</name> | 1157 | <name>frameShadow</name> |
1158 | <enum>Sunken</enum> | 1158 | <enum>Sunken</enum> |
1159 | </property> | 1159 | </property> |
1160 | <property stdset="1"> | 1160 | <property stdset="1"> |
1161 | <name>indent</name> | 1161 | <name>indent</name> |
1162 | <number>0</number> | 1162 | <number>0</number> |
1163 | </property> | 1163 | </property> |
1164 | </widget> | 1164 | </widget> |
1165 | <widget> | 1165 | <widget> |
1166 | <class>QLabel</class> | 1166 | <class>QLabel</class> |
1167 | <property stdset="1"> | 1167 | <property stdset="1"> |
1168 | <name>name</name> | 1168 | <name>name</name> |
1169 | <cstring>TextLabel1_5_4</cstring> | 1169 | <cstring>TextLabel1_5_4</cstring> |
1170 | </property> | 1170 | </property> |
1171 | <property stdset="1"> | 1171 | <property stdset="1"> |
1172 | <name>text</name> | 1172 | <name>text</name> |
1173 | <string>Dropped</string> | 1173 | <string>Dropped</string> |
1174 | </property> | 1174 | </property> |
1175 | </widget> | 1175 | </widget> |
1176 | <widget> | 1176 | <widget> |
1177 | <class>QLabel</class> | 1177 | <class>QLabel</class> |
1178 | <property stdset="1"> | 1178 | <property stdset="1"> |
1179 | <name>name</name> | 1179 | <name>name</name> |
1180 | <cstring>RcvDropped_LBL</cstring> | 1180 | <cstring>RcvDropped_LBL</cstring> |
1181 | </property> | 1181 | </property> |
1182 | <property stdset="1"> | 1182 | <property stdset="1"> |
1183 | <name>sizePolicy</name> | 1183 | <name>sizePolicy</name> |
1184 | <sizepolicy> | 1184 | <sizepolicy> |
1185 | <hsizetype>7</hsizetype> | 1185 | <hsizetype>7</hsizetype> |
1186 | <vsizetype>1</vsizetype> | 1186 | <vsizetype>1</vsizetype> |
1187 | </sizepolicy> | 1187 | </sizepolicy> |
1188 | </property> | 1188 | </property> |
1189 | <property stdset="1"> | 1189 | <property stdset="1"> |
1190 | <name>frameShape</name> | 1190 | <name>frameShape</name> |
1191 | <enum>Panel</enum> | 1191 | <enum>Panel</enum> |
1192 | </property> | 1192 | </property> |
1193 | <property stdset="1"> | 1193 | <property stdset="1"> |
1194 | <name>frameShadow</name> | 1194 | <name>frameShadow</name> |
1195 | <enum>Sunken</enum> | 1195 | <enum>Sunken</enum> |
1196 | </property> | 1196 | </property> |
1197 | <property stdset="1"> | 1197 | <property stdset="1"> |
1198 | <name>indent</name> | 1198 | <name>indent</name> |
1199 | <number>0</number> | 1199 | <number>0</number> |
1200 | </property> | 1200 | </property> |
1201 | </widget> | 1201 | </widget> |
1202 | </hbox> | 1202 | </hbox> |
1203 | </widget> | 1203 | </widget> |
1204 | </vbox> | 1204 | </vbox> |
1205 | </widget> | 1205 | </widget> |
1206 | <widget> | 1206 | <widget> |
1207 | <class>QFrame</class> | 1207 | <class>QFrame</class> |
1208 | <property stdset="1"> | 1208 | <property stdset="1"> |
1209 | <name>name</name> | 1209 | <name>name</name> |
1210 | <cstring>Frame114</cstring> | 1210 | <cstring>Frame114</cstring> |
1211 | </property> | 1211 | </property> |
1212 | <property stdset="1"> | 1212 | <property stdset="1"> |
1213 | <name>sizePolicy</name> | 1213 | <name>sizePolicy</name> |
1214 | <sizepolicy> | 1214 | <sizepolicy> |
1215 | <hsizetype>0</hsizetype> | 1215 | <hsizetype>0</hsizetype> |
1216 | <vsizetype>5</vsizetype> | 1216 | <vsizetype>5</vsizetype> |
1217 | </sizepolicy> | 1217 | </sizepolicy> |
1218 | </property> | 1218 | </property> |
1219 | <property stdset="1"> | 1219 | <property stdset="1"> |
1220 | <name>minimumSize</name> | 1220 | <name>minimumSize</name> |
1221 | <size> | 1221 | <size> |
1222 | <width>5</width> | 1222 | <width>5</width> |
1223 | <height>0</height> | 1223 | <height>0</height> |
1224 | </size> | 1224 | </size> |
1225 | </property> | 1225 | </property> |
1226 | <property stdset="1"> | 1226 | <property stdset="1"> |
1227 | <name>maximumSize</name> | 1227 | <name>maximumSize</name> |
1228 | <size> | 1228 | <size> |
1229 | <width>5</width> | 1229 | <width>5</width> |
1230 | <height>32767</height> | 1230 | <height>32767</height> |
1231 | </size> | 1231 | </size> |
1232 | </property> | 1232 | </property> |
1233 | <property stdset="1"> | 1233 | <property stdset="1"> |
1234 | <name>frameShape</name> | 1234 | <name>frameShape</name> |
1235 | <enum>NoFrame</enum> | 1235 | <enum>NoFrame</enum> |
1236 | </property> | 1236 | </property> |
1237 | <property stdset="1"> | 1237 | <property stdset="1"> |
1238 | <name>frameShadow</name> | 1238 | <name>frameShadow</name> |
1239 | <enum>Raised</enum> | 1239 | <enum>Raised</enum> |
1240 | </property> | 1240 | </property> |
1241 | </widget> | 1241 | </widget> |
1242 | <widget> | 1242 | <widget> |
1243 | <class>QFrame</class> | 1243 | <class>QFrame</class> |
1244 | <property stdset="1"> | 1244 | <property stdset="1"> |
1245 | <name>name</name> | 1245 | <name>name</name> |
1246 | <cstring>Frame115</cstring> | 1246 | <cstring>Frame115</cstring> |
1247 | </property> | 1247 | </property> |
1248 | <property stdset="1"> | 1248 | <property stdset="1"> |
1249 | <name>sizePolicy</name> | 1249 | <name>sizePolicy</name> |
1250 | <sizepolicy> | 1250 | <sizepolicy> |
1251 | <hsizetype>0</hsizetype> | 1251 | <hsizetype>0</hsizetype> |
1252 | <vsizetype>5</vsizetype> | 1252 | <vsizetype>5</vsizetype> |
1253 | </sizepolicy> | 1253 | </sizepolicy> |
1254 | </property> | 1254 | </property> |
1255 | <property stdset="1"> | 1255 | <property stdset="1"> |
1256 | <name>minimumSize</name> | 1256 | <name>minimumSize</name> |
1257 | <size> | 1257 | <size> |
1258 | <width>5</width> | 1258 | <width>5</width> |
1259 | <height>0</height> | 1259 | <height>0</height> |
1260 | </size> | 1260 | </size> |
1261 | </property> | 1261 | </property> |
1262 | <property stdset="1"> | 1262 | <property stdset="1"> |
1263 | <name>maximumSize</name> | 1263 | <name>maximumSize</name> |
1264 | <size> | 1264 | <size> |
1265 | <width>5</width> | 1265 | <width>5</width> |
1266 | <height>32767</height> | 1266 | <height>32767</height> |
1267 | </size> | 1267 | </size> |
1268 | </property> | 1268 | </property> |
1269 | <property stdset="1"> | 1269 | <property stdset="1"> |
1270 | <name>frameShape</name> | 1270 | <name>frameShape</name> |
1271 | <enum>NoFrame</enum> | 1271 | <enum>NoFrame</enum> |
1272 | </property> | 1272 | </property> |
1273 | <property stdset="1"> | 1273 | <property stdset="1"> |
1274 | <name>frameShadow</name> | 1274 | <name>frameShadow</name> |
1275 | <enum>Plain</enum> | 1275 | <enum>Plain</enum> |
1276 | </property> | 1276 | </property> |
1277 | </widget> | 1277 | </widget> |
1278 | <widget> | 1278 | <widget> |
1279 | <class>QGroupBox</class> | 1279 | <class>QGroupBox</class> |
1280 | <property stdset="1"> | 1280 | <property stdset="1"> |
1281 | <name>name</name> | 1281 | <name>name</name> |
1282 | <cstring>Sending_GB</cstring> | 1282 | <cstring>Sending_GB</cstring> |
1283 | </property> | 1283 | </property> |
1284 | <property stdset="1"> | 1284 | <property stdset="1"> |
1285 | <name>enabled</name> | 1285 | <name>enabled</name> |
1286 | <bool>false</bool> | 1286 | <bool>false</bool> |
1287 | </property> | 1287 | </property> |
1288 | <property stdset="1"> | 1288 | <property stdset="1"> |
1289 | <name>title</name> | 1289 | <name>title</name> |
1290 | <string>Sending</string> | 1290 | <string>Sending</string> |
1291 | </property> | 1291 | </property> |
1292 | <property> | 1292 | <property> |
1293 | <name>layoutMargin</name> | 1293 | <name>layoutMargin</name> |
1294 | </property> | 1294 | </property> |
1295 | <property> | 1295 | <property> |
1296 | <name>layoutSpacing</name> | 1296 | <name>layoutSpacing</name> |
1297 | </property> | 1297 | </property> |
1298 | <vbox> | 1298 | <vbox> |
1299 | <property stdset="1"> | 1299 | <property stdset="1"> |
1300 | <name>margin</name> | 1300 | <name>margin</name> |
1301 | <number>4</number> | 1301 | <number>4</number> |
1302 | </property> | 1302 | </property> |
1303 | <property stdset="1"> | 1303 | <property stdset="1"> |
1304 | <name>spacing</name> | 1304 | <name>spacing</name> |
1305 | <number>2</number> | 1305 | <number>2</number> |
1306 | </property> | 1306 | </property> |
1307 | <widget> | 1307 | <widget> |
1308 | <class>QLayoutWidget</class> | 1308 | <class>QLayoutWidget</class> |
1309 | <property stdset="1"> | 1309 | <property stdset="1"> |
1310 | <name>name</name> | 1310 | <name>name</name> |
1311 | <cstring>Layout13</cstring> | 1311 | <cstring>Layout13</cstring> |
1312 | </property> | 1312 | </property> |
1313 | <property> | 1313 | <property> |
1314 | <name>layoutSpacing</name> | 1314 | <name>layoutSpacing</name> |
1315 | </property> | 1315 | </property> |
1316 | <hbox> | 1316 | <hbox> |
1317 | <property stdset="1"> | 1317 | <property stdset="1"> |
1318 | <name>margin</name> | 1318 | <name>margin</name> |
1319 | <number>0</number> | 1319 | <number>0</number> |
1320 | </property> | 1320 | </property> |
1321 | <property stdset="1"> | 1321 | <property stdset="1"> |
1322 | <name>spacing</name> | 1322 | <name>spacing</name> |
1323 | <number>2</number> | 1323 | <number>2</number> |
1324 | </property> | 1324 | </property> |
1325 | <widget> | 1325 | <widget> |
1326 | <class>QLabel</class> | 1326 | <class>QLabel</class> |
1327 | <property stdset="1"> | 1327 | <property stdset="1"> |
1328 | <name>name</name> | 1328 | <name>name</name> |
1329 | <cstring>dfsfadf</cstring> | 1329 | <cstring>dfsfadf</cstring> |
1330 | </property> | 1330 | </property> |
1331 | <property stdset="1"> | 1331 | <property stdset="1"> |
1332 | <name>text</name> | 1332 | <name>text</name> |
1333 | <string>Pkt</string> | 1333 | <string>Pkt</string> |
1334 | </property> | 1334 | </property> |
1335 | </widget> | 1335 | </widget> |
1336 | <widget> | 1336 | <widget> |
1337 | <class>QLabel</class> | 1337 | <class>QLabel</class> |
1338 | <property stdset="1"> | 1338 | <property stdset="1"> |
1339 | <name>name</name> | 1339 | <name>name</name> |
1340 | <cstring>SndPackets_LBL</cstring> | 1340 | <cstring>SndPackets_LBL</cstring> |
1341 | </property> | 1341 | </property> |
1342 | <property stdset="1"> | 1342 | <property stdset="1"> |
1343 | <name>sizePolicy</name> | 1343 | <name>sizePolicy</name> |
1344 | <sizepolicy> | 1344 | <sizepolicy> |
1345 | <hsizetype>7</hsizetype> | 1345 | <hsizetype>7</hsizetype> |
1346 | <vsizetype>1</vsizetype> | 1346 | <vsizetype>1</vsizetype> |
1347 | </sizepolicy> | 1347 | </sizepolicy> |
1348 | </property> | 1348 | </property> |
1349 | <property stdset="1"> | 1349 | <property stdset="1"> |
1350 | <name>frameShape</name> | 1350 | <name>frameShape</name> |
1351 | <enum>Panel</enum> | 1351 | <enum>Panel</enum> |
1352 | </property> | 1352 | </property> |
1353 | <property stdset="1"> | 1353 | <property stdset="1"> |
1354 | <name>frameShadow</name> | 1354 | <name>frameShadow</name> |
1355 | <enum>Sunken</enum> | 1355 | <enum>Sunken</enum> |
1356 | </property> | 1356 | </property> |
1357 | <property stdset="1"> | 1357 | <property stdset="1"> |
1358 | <name>indent</name> | 1358 | <name>indent</name> |
1359 | <number>0</number> | 1359 | <number>0</number> |
1360 | </property> | 1360 | </property> |
1361 | </widget> | 1361 | </widget> |
1362 | <widget> | 1362 | <widget> |
1363 | <class>QLabel</class> | 1363 | <class>QLabel</class> |
1364 | <property stdset="1"> | 1364 | <property stdset="1"> |
1365 | <name>name</name> | 1365 | <name>name</name> |
1366 | <cstring>TextLabel1_5_3_4_4</cstring> | 1366 | <cstring>TextLabel1_5_3_4_4</cstring> |
1367 | </property> | 1367 | </property> |
1368 | <property stdset="1"> | 1368 | <property stdset="1"> |
1369 | <name>text</name> | 1369 | <name>text</name> |
1370 | <string>Bytes</string> | 1370 | <string>Bytes</string> |
1371 | </property> | 1371 | </property> |
1372 | </widget> | 1372 | </widget> |
1373 | <widget> | 1373 | <widget> |
1374 | <class>QLabel</class> | 1374 | <class>QLabel</class> |
1375 | <property stdset="1"> | 1375 | <property stdset="1"> |
1376 | <name>name</name> | 1376 | <name>name</name> |
1377 | <cstring>SndBytes_LBL</cstring> | 1377 | <cstring>SndBytes_LBL</cstring> |
1378 | </property> | 1378 | </property> |
1379 | <property stdset="1"> | 1379 | <property stdset="1"> |
1380 | <name>sizePolicy</name> | 1380 | <name>sizePolicy</name> |
1381 | <sizepolicy> | 1381 | <sizepolicy> |
1382 | <hsizetype>7</hsizetype> | 1382 | <hsizetype>7</hsizetype> |
1383 | <vsizetype>1</vsizetype> | 1383 | <vsizetype>1</vsizetype> |
1384 | </sizepolicy> | 1384 | </sizepolicy> |
1385 | </property> | 1385 | </property> |
1386 | <property stdset="1"> | 1386 | <property stdset="1"> |
1387 | <name>frameShape</name> | 1387 | <name>frameShape</name> |
1388 | <enum>Panel</enum> | 1388 | <enum>Panel</enum> |
1389 | </property> | 1389 | </property> |
1390 | <property stdset="1"> | 1390 | <property stdset="1"> |
1391 | <name>frameShadow</name> | 1391 | <name>frameShadow</name> |
1392 | <enum>Sunken</enum> | 1392 | <enum>Sunken</enum> |
1393 | </property> | 1393 | </property> |
1394 | <property stdset="1"> | 1394 | <property stdset="1"> |
1395 | <name>indent</name> | 1395 | <name>indent</name> |
1396 | <number>0</number> | 1396 | <number>0</number> |
1397 | </property> | 1397 | </property> |
1398 | </widget> | 1398 | </widget> |
1399 | <widget> | 1399 | <widget> |
1400 | <class>QLabel</class> | 1400 | <class>QLabel</class> |
1401 | <property stdset="1"> | 1401 | <property stdset="1"> |
1402 | <name>name</name> | 1402 | <name>name</name> |
1403 | <cstring>TextLabel1_5_3_4_2_3</cstring> | 1403 | <cstring>TextLabel1_5_3_4_2_3</cstring> |
1404 | </property> | 1404 | </property> |
1405 | <property stdset="1"> | 1405 | <property stdset="1"> |
1406 | <name>text</name> | 1406 | <name>text</name> |
1407 | <string>ODO</string> | 1407 | <string>ODO</string> |
1408 | </property> | 1408 | </property> |
1409 | </widget> | 1409 | </widget> |
1410 | <widget> | 1410 | <widget> |
1411 | <class>QLabel</class> | 1411 | <class>QLabel</class> |
1412 | <property stdset="1"> | 1412 | <property stdset="1"> |
1413 | <name>name</name> | 1413 | <name>name</name> |
1414 | <cstring>SndODO_LBL</cstring> | 1414 | <cstring>SndODO_LBL</cstring> |
1415 | </property> | 1415 | </property> |
1416 | <property stdset="1"> | 1416 | <property stdset="1"> |
1417 | <name>sizePolicy</name> | 1417 | <name>sizePolicy</name> |
1418 | <sizepolicy> | 1418 | <sizepolicy> |
1419 | <hsizetype>7</hsizetype> | 1419 | <hsizetype>7</hsizetype> |
1420 | <vsizetype>1</vsizetype> | 1420 | <vsizetype>1</vsizetype> |
1421 | </sizepolicy> | 1421 | </sizepolicy> |
1422 | </property> | 1422 | </property> |
1423 | <property stdset="1"> | 1423 | <property stdset="1"> |
1424 | <name>frameShape</name> | 1424 | <name>frameShape</name> |
1425 | <enum>Panel</enum> | 1425 | <enum>Panel</enum> |
1426 | </property> | 1426 | </property> |
1427 | <property stdset="1"> | 1427 | <property stdset="1"> |
1428 | <name>frameShadow</name> | 1428 | <name>frameShadow</name> |
1429 | <enum>Sunken</enum> | 1429 | <enum>Sunken</enum> |
1430 | </property> | 1430 | </property> |
1431 | <property stdset="1"> | 1431 | <property stdset="1"> |
1432 | <name>indent</name> | 1432 | <name>indent</name> |
1433 | <number>0</number> | 1433 | <number>0</number> |
1434 | </property> | 1434 | </property> |
1435 | </widget> | 1435 | </widget> |
1436 | </hbox> | 1436 | </hbox> |
1437 | </widget> | 1437 | </widget> |
1438 | <widget> | 1438 | <widget> |
1439 | <class>QLayoutWidget</class> | 1439 | <class>QLayoutWidget</class> |
1440 | <property stdset="1"> | 1440 | <property stdset="1"> |
1441 | <name>name</name> | 1441 | <name>name</name> |
1442 | <cstring>Layout14</cstring> | 1442 | <cstring>Layout14</cstring> |
1443 | </property> | 1443 | </property> |
1444 | <property> | 1444 | <property> |
1445 | <name>layoutSpacing</name> | 1445 | <name>layoutSpacing</name> |
1446 | </property> | 1446 | </property> |
1447 | <hbox> | 1447 | <hbox> |
1448 | <property stdset="1"> | 1448 | <property stdset="1"> |
1449 | <name>margin</name> | 1449 | <name>margin</name> |
1450 | <number>0</number> | 1450 | <number>0</number> |
1451 | </property> | 1451 | </property> |
1452 | <property stdset="1"> | 1452 | <property stdset="1"> |
1453 | <name>spacing</name> | 1453 | <name>spacing</name> |
1454 | <number>2</number> | 1454 | <number>2</number> |
1455 | </property> | 1455 | </property> |
1456 | <widget> | 1456 | <widget> |
1457 | <class>QLabel</class> | 1457 | <class>QLabel</class> |
1458 | <property stdset="1"> | 1458 | <property stdset="1"> |
1459 | <name>name</name> | 1459 | <name>name</name> |
1460 | <cstring>TextLabel1_5_9_3</cstring> | 1460 | <cstring>TextLabel1_5_9_3</cstring> |
1461 | </property> | 1461 | </property> |
1462 | <property stdset="1"> | 1462 | <property stdset="1"> |
1463 | <name>text</name> | 1463 | <name>text</name> |
1464 | <string>Errors</string> | 1464 | <string>Errors</string> |
1465 | </property> | 1465 | </property> |
1466 | </widget> | 1466 | </widget> |
1467 | <widget> | 1467 | <widget> |
1468 | <class>QLabel</class> | 1468 | <class>QLabel</class> |
1469 | <property stdset="1"> | 1469 | <property stdset="1"> |
1470 | <name>name</name> | 1470 | <name>name</name> |
1471 | <cstring>SndErrors_LBL</cstring> | 1471 | <cstring>SndErrors_LBL</cstring> |
1472 | </property> | 1472 | </property> |
1473 | <property stdset="1"> | 1473 | <property stdset="1"> |
1474 | <name>sizePolicy</name> | 1474 | <name>sizePolicy</name> |
1475 | <sizepolicy> | 1475 | <sizepolicy> |
1476 | <hsizetype>7</hsizetype> | 1476 | <hsizetype>7</hsizetype> |
1477 | <vsizetype>1</vsizetype> | 1477 | <vsizetype>1</vsizetype> |
1478 | </sizepolicy> | 1478 | </sizepolicy> |
1479 | </property> | 1479 | </property> |
1480 | <property stdset="1"> | 1480 | <property stdset="1"> |
1481 | <name>frameShape</name> | 1481 | <name>frameShape</name> |
1482 | <enum>Panel</enum> | 1482 | <enum>Panel</enum> |
1483 | </property> | 1483 | </property> |
1484 | <property stdset="1"> | 1484 | <property stdset="1"> |
1485 | <name>frameShadow</name> | 1485 | <name>frameShadow</name> |
1486 | <enum>Sunken</enum> | 1486 | <enum>Sunken</enum> |
1487 | </property> | 1487 | </property> |
1488 | <property stdset="1"> | 1488 | <property stdset="1"> |
1489 | <name>indent</name> | 1489 | <name>indent</name> |
1490 | <number>0</number> | 1490 | <number>0</number> |
1491 | </property> | 1491 | </property> |
1492 | </widget> | 1492 | </widget> |
1493 | <widget> | 1493 | <widget> |
1494 | <class>QLabel</class> | 1494 | <class>QLabel</class> |
1495 | <property stdset="1"> | 1495 | <property stdset="1"> |
1496 | <name>name</name> | 1496 | <name>name</name> |
1497 | <cstring>TextLabel1_5_4_3</cstring> | 1497 | <cstring>TextLabel1_5_4_3</cstring> |
1498 | </property> | 1498 | </property> |
1499 | <property stdset="1"> | 1499 | <property stdset="1"> |
1500 | <name>text</name> | 1500 | <name>text</name> |
1501 | <string>Dropped</string> | 1501 | <string>Dropped</string> |
1502 | </property> | 1502 | </property> |
1503 | </widget> | 1503 | </widget> |
1504 | <widget> | 1504 | <widget> |
1505 | <class>QLabel</class> | 1505 | <class>QLabel</class> |
1506 | <property stdset="1"> | 1506 | <property stdset="1"> |
1507 | <name>name</name> | 1507 | <name>name</name> |
1508 | <cstring>SndDropped_LBL</cstring> | 1508 | <cstring>SndDropped_LBL</cstring> |
1509 | </property> | 1509 | </property> |
1510 | <property stdset="1"> | 1510 | <property stdset="1"> |
1511 | <name>sizePolicy</name> | 1511 | <name>sizePolicy</name> |
1512 | <sizepolicy> | 1512 | <sizepolicy> |
1513 | <hsizetype>7</hsizetype> | 1513 | <hsizetype>7</hsizetype> |
1514 | <vsizetype>1</vsizetype> | 1514 | <vsizetype>1</vsizetype> |
1515 | </sizepolicy> | 1515 | </sizepolicy> |
1516 | </property> | 1516 | </property> |
1517 | <property stdset="1"> | 1517 | <property stdset="1"> |
1518 | <name>frameShape</name> | 1518 | <name>frameShape</name> |
1519 | <enum>Panel</enum> | 1519 | <enum>Panel</enum> |
1520 | </property> | 1520 | </property> |
1521 | <property stdset="1"> | 1521 | <property stdset="1"> |
1522 | <name>frameShadow</name> | 1522 | <name>frameShadow</name> |
1523 | <enum>Sunken</enum> | 1523 | <enum>Sunken</enum> |
1524 | </property> | 1524 | </property> |
1525 | <property stdset="1"> | 1525 | <property stdset="1"> |
1526 | <name>indent</name> | 1526 | <name>indent</name> |
1527 | <number>0</number> | 1527 | <number>0</number> |
1528 | </property> | 1528 | </property> |
1529 | </widget> | 1529 | </widget> |
1530 | </hbox> | 1530 | </hbox> |
1531 | </widget> | 1531 | </widget> |
1532 | </vbox> | 1532 | </vbox> |
1533 | </widget> | 1533 | </widget> |
1534 | <widget> | 1534 | <widget> |
1535 | <class>QGroupBox</class> | 1535 | <class>QGroupBox</class> |
1536 | <property stdset="1"> | 1536 | <property stdset="1"> |
1537 | <name>name</name> | 1537 | <name>name</name> |
1538 | <cstring>Misc_GB</cstring> | 1538 | <cstring>Misc_GB</cstring> |
1539 | </property> | 1539 | </property> |
1540 | <property stdset="1"> | 1540 | <property stdset="1"> |
1541 | <name>enabled</name> | 1541 | <name>enabled</name> |
1542 | <bool>false</bool> | 1542 | <bool>false</bool> |
1543 | </property> | 1543 | </property> |
1544 | <property stdset="1"> | 1544 | <property stdset="1"> |
1545 | <name>title</name> | 1545 | <name>title</name> |
1546 | <string>Miscellaneous</string> | 1546 | <string>Miscellaneous</string> |
1547 | </property> | 1547 | </property> |
1548 | <property> | 1548 | <property> |
1549 | <name>layoutMargin</name> | 1549 | <name>layoutMargin</name> |
1550 | </property> | 1550 | </property> |
1551 | <property> | 1551 | <property> |
1552 | <name>layoutSpacing</name> | 1552 | <name>layoutSpacing</name> |
1553 | </property> | 1553 | </property> |
1554 | <hbox> | 1554 | <hbox> |
1555 | <property stdset="1"> | 1555 | <property stdset="1"> |
1556 | <name>margin</name> | 1556 | <name>margin</name> |
1557 | <number>4</number> | 1557 | <number>4</number> |
1558 | </property> | 1558 | </property> |
1559 | <property stdset="1"> | 1559 | <property stdset="1"> |
1560 | <name>spacing</name> | 1560 | <name>spacing</name> |
1561 | <number>2</number> | 1561 | <number>2</number> |
1562 | </property> | 1562 | </property> |
1563 | <widget> | 1563 | <widget> |
1564 | <class>QLabel</class> | 1564 | <class>QLabel</class> |
1565 | <property stdset="1"> | 1565 | <property stdset="1"> |
1566 | <name>name</name> | 1566 | <name>name</name> |
1567 | <cstring>TextLabel1_5_3_3</cstring> | 1567 | <cstring>TextLabel1_5_3_3</cstring> |
1568 | </property> | 1568 | </property> |
1569 | <property stdset="1"> | 1569 | <property stdset="1"> |
1570 | <name>text</name> | 1570 | <name>text</name> |
1571 | <string>Collisions</string> | 1571 | <string>Collisions</string> |
1572 | </property> | 1572 | </property> |
1573 | </widget> | 1573 | </widget> |
1574 | <widget> | 1574 | <widget> |
1575 | <class>QLabel</class> | 1575 | <class>QLabel</class> |
1576 | <property stdset="1"> | 1576 | <property stdset="1"> |
1577 | <name>name</name> | 1577 | <name>name</name> |
1578 | <cstring>Collisions_LBL</cstring> | 1578 | <cstring>Collisions_LBL</cstring> |
1579 | </property> | 1579 | </property> |
1580 | <property stdset="1"> | 1580 | <property stdset="1"> |
1581 | <name>sizePolicy</name> | 1581 | <name>sizePolicy</name> |
1582 | <sizepolicy> | 1582 | <sizepolicy> |
1583 | <hsizetype>7</hsizetype> | 1583 | <hsizetype>7</hsizetype> |
1584 | <vsizetype>1</vsizetype> | 1584 | <vsizetype>1</vsizetype> |
1585 | </sizepolicy> | 1585 | </sizepolicy> |
1586 | </property> | 1586 | </property> |
1587 | <property stdset="1"> | 1587 | <property stdset="1"> |
1588 | <name>frameShape</name> | 1588 | <name>frameShape</name> |
1589 | <enum>Panel</enum> | 1589 | <enum>Panel</enum> |
1590 | </property> | 1590 | </property> |
1591 | <property stdset="1"> | 1591 | <property stdset="1"> |
1592 | <name>frameShadow</name> | 1592 | <name>frameShadow</name> |
1593 | <enum>Sunken</enum> | 1593 | <enum>Sunken</enum> |
1594 | </property> | 1594 | </property> |
1595 | <property stdset="1"> | 1595 | <property stdset="1"> |
1596 | <name>indent</name> | 1596 | <name>indent</name> |
1597 | <number>0</number> | 1597 | <number>0</number> |
1598 | </property> | 1598 | </property> |
1599 | </widget> | 1599 | </widget> |
1600 | <spacer> | 1600 | <spacer> |
1601 | <property> | 1601 | <property> |
1602 | <name>name</name> | 1602 | <name>name</name> |
1603 | <cstring>Spacer10</cstring> | 1603 | <cstring>Spacer10</cstring> |
1604 | </property> | 1604 | </property> |
1605 | <property stdset="1"> | 1605 | <property stdset="1"> |
1606 | <name>orientation</name> | 1606 | <name>orientation</name> |
1607 | <enum>Horizontal</enum> | 1607 | <enum>Horizontal</enum> |
1608 | </property> | 1608 | </property> |
1609 | <property stdset="1"> | 1609 | <property stdset="1"> |
1610 | <name>sizeType</name> | 1610 | <name>sizeType</name> |
1611 | <enum>Expanding</enum> | 1611 | <enum>Expanding</enum> |
1612 | </property> | 1612 | </property> |
1613 | <property> | 1613 | <property> |
1614 | <name>sizeHint</name> | 1614 | <name>sizeHint</name> |
1615 | <size> | 1615 | <size> |
1616 | <width>20</width> | 1616 | <width>20</width> |
1617 | <height>20</height> | 1617 | <height>20</height> |
1618 | </size> | 1618 | </size> |
1619 | </property> | 1619 | </property> |
1620 | </spacer> | 1620 | </spacer> |
1621 | <spacer> | 1621 | <spacer> |
1622 | <property> | 1622 | <property> |
1623 | <name>name</name> | 1623 | <name>name</name> |
1624 | <cstring>Spacer13</cstring> | 1624 | <cstring>Spacer13</cstring> |
1625 | </property> | 1625 | </property> |
1626 | <property stdset="1"> | 1626 | <property stdset="1"> |
1627 | <name>orientation</name> | 1627 | <name>orientation</name> |
1628 | <enum>Horizontal</enum> | 1628 | <enum>Horizontal</enum> |
1629 | </property> | 1629 | </property> |
1630 | <property stdset="1"> | 1630 | <property stdset="1"> |
1631 | <name>sizeType</name> | 1631 | <name>sizeType</name> |
1632 | <enum>Expanding</enum> | 1632 | <enum>Expanding</enum> |
1633 | </property> | 1633 | </property> |
1634 | <property> | 1634 | <property> |
1635 | <name>sizeHint</name> | 1635 | <name>sizeHint</name> |
1636 | <size> | 1636 | <size> |
1637 | <width>20</width> | 1637 | <width>20</width> |
1638 | <height>20</height> | 1638 | <height>20</height> |
1639 | </size> | 1639 | </size> |
1640 | </property> | 1640 | </property> |
1641 | </spacer> | 1641 | </spacer> |
1642 | </hbox> | 1642 | </hbox> |
1643 | </widget> | 1643 | </widget> |
1644 | <spacer> | 1644 | <spacer> |
1645 | <property> | 1645 | <property> |
1646 | <name>name</name> | 1646 | <name>name</name> |
1647 | <cstring>Spacer17</cstring> | 1647 | <cstring>Spacer17</cstring> |
1648 | </property> | 1648 | </property> |
1649 | <property stdset="1"> | 1649 | <property stdset="1"> |
1650 | <name>orientation</name> | 1650 | <name>orientation</name> |
1651 | <enum>Vertical</enum> | 1651 | <enum>Vertical</enum> |
1652 | </property> | 1652 | </property> |
1653 | <property stdset="1"> | 1653 | <property stdset="1"> |
1654 | <name>sizeType</name> | 1654 | <name>sizeType</name> |
1655 | <enum>Expanding</enum> | 1655 | <enum>Expanding</enum> |
1656 | </property> | 1656 | </property> |
1657 | <property> | 1657 | <property> |
1658 | <name>sizeHint</name> | 1658 | <name>sizeHint</name> |
1659 | <size> | 1659 | <size> |
1660 | <width>20</width> | 1660 | <width>20</width> |
1661 | <height>20</height> | 1661 | <height>20</height> |
1662 | </size> | 1662 | </size> |
1663 | </property> | 1663 | </property> |
1664 | </spacer> | 1664 | </spacer> |
1665 | <widget> | 1665 | <widget> |
1666 | <class>QLayoutWidget</class> | 1666 | <class>QLayoutWidget</class> |
1667 | <property stdset="1"> | 1667 | <property stdset="1"> |
1668 | <name>name</name> | 1668 | <name>name</name> |
1669 | <cstring>Layout10</cstring> | 1669 | <cstring>Layout10</cstring> |
1670 | </property> | 1670 | </property> |
1671 | <hbox> | 1671 | <hbox> |
1672 | <property stdset="1"> | 1672 | <property stdset="1"> |
1673 | <name>margin</name> | 1673 | <name>margin</name> |
1674 | <number>0</number> | 1674 | <number>0</number> |
1675 | </property> | 1675 | </property> |
1676 | <property stdset="1"> | 1676 | <property stdset="1"> |
1677 | <name>spacing</name> | 1677 | <name>spacing</name> |
1678 | <number>6</number> | 1678 | <number>6</number> |
1679 | </property> | 1679 | </property> |
1680 | <widget> | 1680 | <widget> |
1681 | <class>QCheckBox</class> | 1681 | <class>QCheckBox</class> |
1682 | <property stdset="1"> | 1682 | <property stdset="1"> |
1683 | <name>name</name> | 1683 | <name>name</name> |
1684 | <cstring>Refresh_CB</cstring> | 1684 | <cstring>Refresh_CB</cstring> |
1685 | </property> | 1685 | </property> |
1686 | <property stdset="1"> | 1686 | <property stdset="1"> |
1687 | <name>enabled</name> | 1687 | <name>enabled</name> |
1688 | <bool>false</bool> | 1688 | <bool>false</bool> |
1689 | </property> | 1689 | </property> |
1690 | <property stdset="1"> | 1690 | <property stdset="1"> |
1691 | <name>text</name> | 1691 | <name>text</name> |
1692 | <string>Live feed </string> | 1692 | <string>Live feed </string> |
1693 | </property> | 1693 | </property> |
1694 | </widget> | 1694 | </widget> |
1695 | <spacer> | 1695 | <spacer> |
1696 | <property> | 1696 | <property> |
1697 | <name>name</name> | 1697 | <name>name</name> |
1698 | <cstring>Spacer57</cstring> | 1698 | <cstring>Spacer57</cstring> |
1699 | </property> | 1699 | </property> |
1700 | <property stdset="1"> | 1700 | <property stdset="1"> |
1701 | <name>orientation</name> | 1701 | <name>orientation</name> |
1702 | <enum>Horizontal</enum> | 1702 | <enum>Horizontal</enum> |
1703 | </property> | 1703 | </property> |
1704 | <property stdset="1"> | 1704 | <property stdset="1"> |
1705 | <name>sizeType</name> | 1705 | <name>sizeType</name> |
1706 | <enum>Expanding</enum> | 1706 | <enum>Expanding</enum> |
1707 | </property> | 1707 | </property> |
1708 | <property> | 1708 | <property> |
1709 | <name>sizeHint</name> | 1709 | <name>sizeHint</name> |
1710 | <size> | 1710 | <size> |
1711 | <width>20</width> | 1711 | <width>20</width> |
1712 | <height>20</height> | 1712 | <height>20</height> |
1713 | </size> | 1713 | </size> |
1714 | </property> | 1714 | </property> |
1715 | </spacer> | 1715 | </spacer> |
1716 | <widget> | 1716 | <widget> |
1717 | <class>QPushButton</class> | 1717 | <class>QPushButton</class> |
1718 | <property stdset="1"> | 1718 | <property stdset="1"> |
1719 | <name>name</name> | 1719 | <name>name</name> |
1720 | <cstring>ResetODO_But</cstring> | 1720 | <cstring>ResetODO_But</cstring> |
1721 | </property> | 1721 | </property> |
1722 | <property stdset="1"> | 1722 | <property stdset="1"> |
1723 | <name>enabled</name> | 1723 | <name>enabled</name> |
1724 | <bool>false</bool> | 1724 | <bool>false</bool> |
1725 | </property> | 1725 | </property> |
1726 | <property stdset="1"> | 1726 | <property stdset="1"> |
1727 | <name>text</name> | 1727 | <name>text</name> |
1728 | <string>Reset ODO</string> | 1728 | <string>Reset ODO</string> |
1729 | </property> | 1729 | </property> |
1730 | </widget> | 1730 | </widget> |
1731 | </hbox> | 1731 | </hbox> |
1732 | </widget> | 1732 | </widget> |
1733 | </vbox> | 1733 | </vbox> |
1734 | </widget> | 1734 | </widget> |
1735 | </widget> | 1735 | </widget> |
1736 | </vbox> | 1736 | </vbox> |
1737 | </widget> | 1737 | </widget> |
1738 | <connections> | 1738 | <connections> |
1739 | <connection> | 1739 | <connection> |
1740 | <sender>Refresh_CB</sender> | 1740 | <sender>Refresh_CB</sender> |
1741 | <signal>toggled(bool)</signal> | 1741 | <signal>toggled(bool)</signal> |
1742 | <receiver>Profile_FRM</receiver> | 1742 | <receiver>Profile_FRM</receiver> |
1743 | <slot>SLOT_AutoRefresh(bool)</slot> | 1743 | <slot>SLOT_AutoRefresh(bool)</slot> |
1744 | </connection> | 1744 | </connection> |
1745 | <connection> | 1745 | <connection> |
1746 | <sender>ResetODO_But</sender> | 1746 | <sender>ResetODO_But</sender> |
1747 | <signal>clicked()</signal> | 1747 | <signal>clicked()</signal> |
1748 | <receiver>Profile_FRM</receiver> | 1748 | <receiver>Profile_FRM</receiver> |
1749 | <slot>SLOT_ResetODO()</slot> | 1749 | <slot>SLOT_ResetODO()</slot> |
1750 | </connection> | 1750 | </connection> |
1751 | <slot access="public">SLOT_AutoRefresh(bool)</slot> | 1751 | <slot access="public">SLOT_AutoRefresh(bool)</slot> |
1752 | <slot access="public">SLOT_ResetODO()</slot> | 1752 | <slot access="public">SLOT_ResetODO()</slot> |
1753 | </connections> | 1753 | </connections> |
1754 | </UI> | 1754 | </UI> |
diff --git a/noncore/settings/networksettings2/profile/profile_NNI.cpp b/noncore/settings/networksettings2/profile/profile_NNI.cpp index fc2d809..0bc13d1 100644 --- a/noncore/settings/networksettings2/profile/profile_NNI.cpp +++ b/noncore/settings/networksettings2/profile/profile_NNI.cpp | |||
@@ -1,81 +1,83 @@ | |||
1 | #include <qpe/qpeapplication.h> | 1 | #include <qpe/qpeapplication.h> |
2 | #include <opie2/odebug.h> | 2 | #include <opie2/odebug.h> |
3 | #include "profileedit.h" | 3 | #include "profileedit.h" |
4 | #include "profile_NNI.h" | 4 | #include "profile_NNI.h" |
5 | #include "profile_NN.h" | 5 | #include "profile_NN.h" |
6 | 6 | ||
7 | AProfile::AProfile( ProfileNetNode * PNN ) : ANetNodeInstance( PNN ) { | 7 | AProfile::AProfile( ProfileNetNode * PNN ) : ANetNodeInstance( PNN ) { |
8 | Data.Automatic = 1; | 8 | Data.Automatic = 1; |
9 | Data.Confirm = 0; | 9 | Data.Confirm = 0; |
10 | Data.Description = ""; | 10 | Data.Description = ""; |
11 | Data.Disabled = 0; | 11 | Data.Enabled = 1; |
12 | Data.TriggerVPN = 0; | 12 | Data.TriggerVPN = 0; |
13 | GUI = 0; | 13 | GUI = 0; |
14 | RT = 0; | 14 | RT = 0; |
15 | } | 15 | } |
16 | 16 | ||
17 | void AProfile::setSpecificAttribute( QString & Attr, QString & Value ) { | 17 | void AProfile::setSpecificAttribute( QString & Attr, QString & Value ) { |
18 | 18 | ||
19 | if ( Attr == "automatic" ) { | 19 | if ( Attr == "automatic" ) { |
20 | Data.Automatic = (Value=="yes"); | 20 | Data.Automatic = (Value=="yes"); |
21 | } else if ( Attr == "preconfirm" ) { | 21 | } else if ( Attr == "preconfirm" ) { |
22 | Data.Confirm = (Value=="yes"); | 22 | Data.Confirm = (Value=="yes"); |
23 | } else if ( Attr == "disabled" ) { | 23 | } else if ( Attr == "disabled" ) { |
24 | Data.Disabled = (Value=="yes"); | 24 | Data.Enabled = (Value=="no"); |
25 | } else if ( Attr == "enabled" ) { | ||
26 | Data.Enabled = (Value=="yes"); | ||
25 | } else if ( Attr == "triggervpn" ) { | 27 | } else if ( Attr == "triggervpn" ) { |
26 | Data.TriggerVPN = (Value=="yes"); | 28 | Data.TriggerVPN = (Value=="yes"); |
27 | } else if ( Attr == "description" ) { | 29 | } else if ( Attr == "description" ) { |
28 | Data.Description = Value; | 30 | Data.Description = Value; |
29 | } | 31 | } |
30 | } | 32 | } |
31 | 33 | ||
32 | void AProfile::saveSpecificAttribute( QTextStream & TS ) { | 34 | void AProfile::saveSpecificAttribute( QTextStream & TS ) { |
33 | TS << "automatic=" << ((Data.Automatic) ? "yes" : "no") << endl; | 35 | TS << "automatic=" << ((Data.Automatic) ? "yes" : "no") << endl; |
34 | TS << "preconfirm=" << ((Data.Confirm) ? "yes" : "no") << endl; | 36 | TS << "preconfirm=" << ((Data.Confirm) ? "yes" : "no") << endl; |
35 | TS << "disabled=" << ((Data.Disabled) ? "yes" : "no") << endl; | 37 | TS << "enabled=" << ((Data.Enabled) ? "yes" : "no") << endl; |
36 | TS << "triggervpn=" << ((Data.TriggerVPN) ? "yes" : "no") << endl; | 38 | TS << "triggervpn=" << ((Data.TriggerVPN) ? "yes" : "no") << endl; |
37 | TS << "description=" << Data.Description << endl; | 39 | TS << "description=" << Data.Description << endl; |
38 | } | 40 | } |
39 | 41 | ||
40 | QWidget * AProfile::edit( QWidget * parent ) { | 42 | QWidget * AProfile::edit( QWidget * parent ) { |
41 | GUI = new ProfileEdit( parent, this ); | 43 | GUI = new ProfileEdit( parent, this ); |
42 | GUI->showData( Data ); | 44 | GUI->showData( Data ); |
43 | return GUI; | 45 | return GUI; |
44 | } | 46 | } |
45 | 47 | ||
46 | QString AProfile::acceptable( void ) { | 48 | QString AProfile::acceptable( void ) { |
47 | return ( GUI ) ? GUI->acceptable( ) : QString(); | 49 | return ( GUI ) ? GUI->acceptable( ) : QString(); |
48 | } | 50 | } |
49 | 51 | ||
50 | void AProfile::commit( void ) { | 52 | void AProfile::commit( void ) { |
51 | if( GUI && GUI->commit( Data ) ) | 53 | if( GUI && GUI->commit( Data ) ) |
52 | setModified( 1 ); | 54 | setModified( 1 ); |
53 | } | 55 | } |
54 | 56 | ||
55 | short AProfile::generateFileEmbedded( SystemFile & SF, | 57 | short AProfile::generateFileEmbedded( SystemFile & SF, |
56 | long DevNr ) { | 58 | long DevNr ) { |
57 | 59 | ||
58 | short rvl, rvd; | 60 | short rvl, rvd; |
59 | 61 | ||
60 | rvl = 1; | 62 | rvl = 1; |
61 | 63 | ||
62 | if( SF.name() == "interfaces" ) { | 64 | if( SF.name() == "interfaces" ) { |
63 | Log(("Generate Profile for %s\n", SF.name().latin1() )); | 65 | Log(("Generate Profile for %s\n", SF.name().latin1() )); |
64 | if( Data.TriggerVPN ) { | 66 | if( Data.TriggerVPN ) { |
65 | // this profile triggers VPN -> insert trigger | 67 | // this profile triggers VPN -> insert trigger |
66 | SF << " up " | 68 | SF << " up " |
67 | << QPEApplication::qpeDir() | 69 | << QPEApplication::qpeDir() |
68 | << "bin/networksettings2 --triggervpn " | 70 | << "bin/networksettings2 --triggervpn " |
69 | << runtime()->device()->netNode()->nodeClass()->genNic( DevNr ) | 71 | << runtime()->device()->netNode()->nodeClass()->genNic( DevNr ) |
70 | << " || true" | 72 | << " || true" |
71 | << endl; | 73 | << endl; |
72 | rvl = 0; | 74 | rvl = 0; |
73 | } | 75 | } |
74 | } | 76 | } |
75 | rvd = ANetNodeInstance::generateFileEmbedded( SF, DevNr ); | 77 | rvd = ANetNodeInstance::generateFileEmbedded( SF, DevNr ); |
76 | return (rvd == 2 || rvl == 2 ) ? 2 : | 78 | return (rvd == 2 || rvl == 2 ) ? 2 : |
77 | (rvd == 0 || rvl == 0 ) ? 0 : 1; | 79 | (rvd == 0 || rvl == 0 ) ? 0 : 1; |
78 | } | 80 | } |
79 | 81 | ||
80 | 82 | ||
81 | 83 | ||
diff --git a/noncore/settings/networksettings2/profile/profiledata.h b/noncore/settings/networksettings2/profile/profiledata.h index 2f7060d..376b393 100644 --- a/noncore/settings/networksettings2/profile/profiledata.h +++ b/noncore/settings/networksettings2/profile/profiledata.h | |||
@@ -1,17 +1,17 @@ | |||
1 | #ifndef PROFILE_DATA_H | 1 | #ifndef PROFILE_DATA_H |
2 | #define PROFILE_DATA_H | 2 | #define PROFILE_DATA_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | class ProfileData { | 5 | class ProfileData { |
6 | public : | 6 | public : |
7 | QString Description; | 7 | QString Description; |
8 | // start up automatically | 8 | // start up automatically |
9 | bool Automatic; | 9 | bool Automatic; |
10 | // if started up automatically, ask user for confirmation | 10 | // if started up automatically, ask user for confirmation |
11 | bool Confirm; | 11 | bool Confirm; |
12 | // Do not bring this networkSetup up | 12 | // bring this networkSetup up |
13 | bool Disabled; | 13 | bool Enabled; |
14 | bool TriggerVPN; | 14 | bool TriggerVPN; |
15 | } ; | 15 | } ; |
16 | 16 | ||
17 | #endif | 17 | #endif |
diff --git a/noncore/settings/networksettings2/profile/profileedit.cpp b/noncore/settings/networksettings2/profile/profileedit.cpp index 1713f0c..818bad6 100644 --- a/noncore/settings/networksettings2/profile/profileedit.cpp +++ b/noncore/settings/networksettings2/profile/profileedit.cpp | |||
@@ -1,125 +1,125 @@ | |||
1 | #include <qlabel.h> | 1 | #include <qlabel.h> |
2 | #include <qgroupbox.h> | 2 | #include <qgroupbox.h> |
3 | #include <qpushbutton.h> | 3 | #include <qpushbutton.h> |
4 | #include <qframe.h> | 4 | #include <qframe.h> |
5 | #include <qcheckbox.h> | 5 | #include <qcheckbox.h> |
6 | #include <qmultilineedit.h> | 6 | #include <qmultilineedit.h> |
7 | #include <qcheckbox.h> | 7 | #include <qcheckbox.h> |
8 | 8 | ||
9 | #include <GUIUtils.h> | 9 | #include <GUIUtils.h> |
10 | #include <netnode.h> | 10 | #include <netnode.h> |
11 | #include <resources.h> | 11 | #include <resources.h> |
12 | 12 | ||
13 | #include "profileedit.h" | 13 | #include "profileedit.h" |
14 | 14 | ||
15 | ProfileEdit::ProfileEdit( QWidget * Parent, ANetNodeInstance * TNNI ) : | 15 | ProfileEdit::ProfileEdit( QWidget * Parent, ANetNodeInstance * TNNI ) : |
16 | ProfileGUI( Parent ), RefreshTimer(this) { | 16 | ProfileGUI( Parent ), RefreshTimer(this) { |
17 | InterfaceInfo * II; | 17 | InterfaceInfo * II; |
18 | 18 | ||
19 | II = TNNI->networkSetup()->assignedInterface(); | 19 | II = TNNI->networkSetup()->assignedInterface(); |
20 | Log(( "Interface %p %p %p: %d\n", II, | 20 | Log(( "Interface %p %p %p: %d\n", II, |
21 | TNNI, TNNI->networkSetup(), (II) ? II->IsUp : 0 )); | 21 | TNNI, TNNI->networkSetup(), (II) ? II->IsUp : 0 )); |
22 | 22 | ||
23 | NNI = TNNI; | 23 | NNI = TNNI; |
24 | Dev = NNI->runtime()->device(); | 24 | Dev = NNI->runtime()->device(); |
25 | if( ( II = NNI->networkSetup()->assignedInterface() ) ) { | 25 | if( ( II = NNI->networkSetup()->assignedInterface() ) ) { |
26 | 26 | ||
27 | Refresh_CB->setEnabled( TRUE ); | 27 | Refresh_CB->setEnabled( TRUE ); |
28 | ResetODO_But->setEnabled( TRUE ); | 28 | ResetODO_But->setEnabled( TRUE ); |
29 | Sending_GB->setEnabled( TRUE ); | 29 | Sending_GB->setEnabled( TRUE ); |
30 | Receiving_GB->setEnabled( TRUE ); | 30 | Receiving_GB->setEnabled( TRUE ); |
31 | Misc_GB->setEnabled( TRUE ); | 31 | Misc_GB->setEnabled( TRUE ); |
32 | 32 | ||
33 | // show current content | 33 | // show current content |
34 | SLOT_Refresh(); | 34 | SLOT_Refresh(); |
35 | 35 | ||
36 | // initialize ODO | 36 | // initialize ODO |
37 | SLOT_ResetODO(); | 37 | SLOT_ResetODO(); |
38 | 38 | ||
39 | // fill in static data | 39 | // fill in static data |
40 | InterfaceName_LBL->setText( II->Name ); | 40 | InterfaceName_LBL->setText( II->Name ); |
41 | IPAddress_LBL->setText( II->Address ); | 41 | IPAddress_LBL->setText( II->Address ); |
42 | SubnetMask_LBL->setText( II->Netmask ); | 42 | SubnetMask_LBL->setText( II->Netmask ); |
43 | Broadcast_LBL->setText( II->BCastAddress ); | 43 | Broadcast_LBL->setText( II->BCastAddress ); |
44 | MACAddress_LBL->setText( II->MACAddress ); | 44 | MACAddress_LBL->setText( II->MACAddress ); |
45 | if( II->IsPointToPoint ) { | 45 | if( II->IsPointToPoint ) { |
46 | PointToPoint_LBL->setText( II->DstAddress ); | 46 | PointToPoint_LBL->setText( II->DstAddress ); |
47 | } | 47 | } |
48 | QString S; | 48 | QString S; |
49 | InterfaceName_LBL->setText( II->Name ); | 49 | InterfaceName_LBL->setText( II->Name ); |
50 | if( II->HasMulticast ) { | 50 | if( II->HasMulticast ) { |
51 | S += "Multicast"; | 51 | S += "Multicast"; |
52 | } | 52 | } |
53 | if( ! S.isEmpty() ) { | 53 | if( ! S.isEmpty() ) { |
54 | S.prepend( " : " ); | 54 | S.prepend( " : " ); |
55 | } | 55 | } |
56 | InterfaceOptions_LBL->setText( S ); | 56 | InterfaceOptions_LBL->setText( S ); |
57 | 57 | ||
58 | connect( &RefreshTimer, SIGNAL( timeout() ), | 58 | connect( &RefreshTimer, SIGNAL( timeout() ), |
59 | this, SLOT( SLOT_Refresh() ) ); | 59 | this, SLOT( SLOT_Refresh() ) ); |
60 | } | 60 | } |
61 | 61 | ||
62 | } | 62 | } |
63 | 63 | ||
64 | QString ProfileEdit::acceptable( void ) { | 64 | QString ProfileEdit::acceptable( void ) { |
65 | return QString(); | 65 | return QString(); |
66 | } | 66 | } |
67 | 67 | ||
68 | void ProfileEdit::showData( ProfileData & Data ) { | 68 | void ProfileEdit::showData( ProfileData & Data ) { |
69 | Description_LE->setText( Data.Description ); | 69 | Description_LE->setText( Data.Description ); |
70 | Automatic_CB->setChecked( Data.Automatic ); | 70 | Automatic_CB->setChecked( Data.Automatic ); |
71 | TriggersVPN_CB->setChecked( Data.TriggerVPN ); | 71 | TriggersVPN_CB->setChecked( Data.TriggerVPN ); |
72 | Confirm_CB->setChecked( Data.Confirm ); | 72 | Confirm_CB->setChecked( Data.Confirm ); |
73 | Disabled_CB->setChecked( Data.Disabled ); | 73 | Enabled_CB->setChecked( Data.Enabled ); |
74 | } | 74 | } |
75 | 75 | ||
76 | 76 | ||
77 | bool ProfileEdit::commit( ProfileData & Data ) { | 77 | bool ProfileEdit::commit( ProfileData & Data ) { |
78 | bool SM = 0; | 78 | bool SM = 0; |
79 | TXTM( Data.Description, Description_LE, SM ); | 79 | TXTM( Data.Description, Description_LE, SM ); |
80 | 80 | ||
81 | CBM( Data.Automatic, Automatic_CB, SM ); | 81 | CBM( Data.Automatic, Automatic_CB, SM ); |
82 | CBM( Data.TriggerVPN, TriggersVPN_CB, SM ); | 82 | CBM( Data.TriggerVPN, TriggersVPN_CB, SM ); |
83 | CBM( Data.Disabled, Disabled_CB, SM ); | 83 | CBM( Data.Enabled, Enabled_CB, SM ); |
84 | CBM( Data.Confirm, Confirm_CB, SM ); | 84 | CBM( Data.Confirm, Confirm_CB, SM ); |
85 | 85 | ||
86 | return SM; | 86 | return SM; |
87 | } | 87 | } |
88 | 88 | ||
89 | void ProfileEdit::SLOT_Refresh( void ) { | 89 | void ProfileEdit::SLOT_Refresh( void ) { |
90 | InterfaceInfo * II = NNI->networkSetup()->assignedInterface(); | 90 | InterfaceInfo * II = NNI->networkSetup()->assignedInterface(); |
91 | QString S; | 91 | QString S; |
92 | NSResources->system().refreshStatistics( *II ); | 92 | NSResources->system().refreshStatistics( *II ); |
93 | 93 | ||
94 | RcvBytes_LBL->setText( II->RcvBytes ); | 94 | RcvBytes_LBL->setText( II->RcvBytes ); |
95 | RcvPackets_LBL->setText( II->RcvPackets ); | 95 | RcvPackets_LBL->setText( II->RcvPackets ); |
96 | RcvErrors_LBL->setText( II->RcvErrors ); | 96 | RcvErrors_LBL->setText( II->RcvErrors ); |
97 | RcvDropped_LBL->setText( II->RcvDropped ); | 97 | RcvDropped_LBL->setText( II->RcvDropped ); |
98 | S.setNum( II->RcvBytes.toLong() - RcvODO ); | 98 | S.setNum( II->RcvBytes.toLong() - RcvODO ); |
99 | RcvODO_LBL->setText( S ); | 99 | RcvODO_LBL->setText( S ); |
100 | 100 | ||
101 | SndBytes_LBL->setText( II->SndBytes ); | 101 | SndBytes_LBL->setText( II->SndBytes ); |
102 | SndPackets_LBL->setText( II->SndPackets ); | 102 | SndPackets_LBL->setText( II->SndPackets ); |
103 | SndErrors_LBL->setText( II->SndErrors ); | 103 | SndErrors_LBL->setText( II->SndErrors ); |
104 | SndDropped_LBL->setText( II->SndDropped ); | 104 | SndDropped_LBL->setText( II->SndDropped ); |
105 | S.setNum( II->SndBytes.toLong() - SndODO ); | 105 | S.setNum( II->SndBytes.toLong() - SndODO ); |
106 | SndODO_LBL->setText( S ); | 106 | SndODO_LBL->setText( S ); |
107 | 107 | ||
108 | Collisions_LBL->setText( II->Collisions ); | 108 | Collisions_LBL->setText( II->Collisions ); |
109 | } | 109 | } |
110 | 110 | ||
111 | void ProfileEdit::SLOT_AutoRefresh( bool ar ) { | 111 | void ProfileEdit::SLOT_AutoRefresh( bool ar ) { |
112 | if( ar ) { | 112 | if( ar ) { |
113 | RefreshTimer.start( 1000 ); | 113 | RefreshTimer.start( 1000 ); |
114 | SLOT_Refresh(); | 114 | SLOT_Refresh(); |
115 | } else { | 115 | } else { |
116 | RefreshTimer.stop(); | 116 | RefreshTimer.stop(); |
117 | } | 117 | } |
118 | } | 118 | } |
119 | 119 | ||
120 | void ProfileEdit::SLOT_ResetODO( void ) { | 120 | void ProfileEdit::SLOT_ResetODO( void ) { |
121 | InterfaceInfo * II = NNI->networkSetup()->assignedInterface(); | 121 | InterfaceInfo * II = NNI->networkSetup()->assignedInterface(); |
122 | RcvODO = II->RcvBytes.toLong(); | 122 | RcvODO = II->RcvBytes.toLong(); |
123 | SndODO = II->SndBytes.toLong(); | 123 | SndODO = II->SndBytes.toLong(); |
124 | SLOT_Refresh(); | 124 | SLOT_Refresh(); |
125 | } | 125 | } |
diff --git a/noncore/settings/networksettings2/profile/profilerun.cpp b/noncore/settings/networksettings2/profile/profilerun.cpp index 77bf9ac..faa7d66 100644 --- a/noncore/settings/networksettings2/profile/profilerun.cpp +++ b/noncore/settings/networksettings2/profile/profilerun.cpp | |||
@@ -1,30 +1,30 @@ | |||
1 | #include <resources.h> | 1 | #include <resources.h> |
2 | 2 | ||
3 | #include "profilerun.h" | 3 | #include "profilerun.h" |
4 | 4 | ||
5 | State_t ProfileRun::detectState( void ) { | 5 | State_t ProfileRun::detectState( void ) { |
6 | 6 | ||
7 | Log(( "Profile %sabled\n", (Data->Disabled) ? "dis" : "en" )); | 7 | Log(( "Profile %sabled\n", (Data->Enabled) ? "en" : "dis" )); |
8 | 8 | ||
9 | if( Data->Disabled ) { | 9 | if( Data->Enabled ) { |
10 | return Disabled; | 10 | return Unknown; |
11 | } | 11 | } |
12 | return Unknown; | 12 | return Disabled; |
13 | } | 13 | } |
14 | 14 | ||
15 | QString ProfileRun::setMyState( NetworkSetup * NC, Action_t A, bool ) { | 15 | QString ProfileRun::setMyState( NetworkSetup * NC, Action_t A, bool ) { |
16 | odebug << "Profile " << Data->Disabled << oendl; | 16 | odebug << "Profile " << Data->Enabled << oendl; |
17 | if( A == Disable ) { | 17 | if( A == Disable ) { |
18 | if( ! Data->Disabled ) { | 18 | if( Data->Enabled ) { |
19 | Data->Disabled = 1; | 19 | Data->Enabled = 0; |
20 | NC->setModified( 1 ); | 20 | NC->setModified( 1 ); |
21 | } | 21 | } |
22 | } else if( A == Enable ) { | 22 | } else if( A == Enable ) { |
23 | if( Data->Disabled ) { | 23 | if( ! Data->Enabled ) { |
24 | Data->Disabled = 0; | 24 | Data->Enabled = 1; |
25 | NC->setModified( 1 ); | 25 | NC->setModified( 1 ); |
26 | } | 26 | } |
27 | } | 27 | } |
28 | 28 | ||
29 | return QString(); | 29 | return QString(); |
30 | } | 30 | } |