-rw-r--r-- | noncore/settings/netsystemtime/ntp.cpp | 45 | ||||
-rw-r--r-- | noncore/settings/netsystemtime/ntp.h | 5 | ||||
-rw-r--r-- | noncore/settings/netsystemtime/ntpbase.cpp | 90 | ||||
-rw-r--r-- | noncore/settings/netsystemtime/ntpbase.h | 17 | ||||
-rw-r--r-- | noncore/settings/netsystemtime/ntpbase.ui | 1027 |
5 files changed, 722 insertions, 462 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp index fbd65a2..6f6316c 100644 --- a/noncore/settings/netsystemtime/ntp.cpp +++ b/noncore/settings/netsystemtime/ntp.cpp | |||
@@ -7,6 +7,9 @@ | |||
7 | #include <qsocket.h> | 7 | #include <qsocket.h> |
8 | #include <qlineedit.h> | 8 | #include <qlineedit.h> |
9 | #include <qspinbox.h> | 9 | #include <qspinbox.h> |
10 | #include <qcheckbox.h> | ||
11 | #include <qtabwidget.h> | ||
12 | #include <qlayout.h> | ||
10 | #include <qmessagebox.h> | 13 | #include <qmessagebox.h> |
11 | #include <qmultilineedit.h> | 14 | #include <qmultilineedit.h> |
12 | #include <opie/oprocess.h> | 15 | #include <opie/oprocess.h> |
@@ -39,10 +42,16 @@ Ntp::Ntp( QWidget* parent, const char* name, WFlags fl ) | |||
39 | 42 | ||
40 | Config cfg("ntp",Config::User); | 43 | Config cfg("ntp",Config::User); |
41 | cfg.setGroup("settings"); | 44 | cfg.setGroup("settings"); |
42 | SpinBoxMinLookupDelay->setValue( cfg.readNumEntry("minLookupDiff",41) ); | 45 | SpinBoxMinLookupDelay->setValue( cfg.readNumEntry("minLookupDiff",720) ); |
43 | SpinBoxNtpDelay->setValue( cfg.readNumEntry("ntpRefreshFreq",42) ); | 46 | SpinBoxNtpDelay->setValue( cfg.readNumEntry("ntpRefreshFreq",1440) ); |
44 | ComboNtpSrv->setCurrentItem( cfg.readNumEntry("ntpServer", 0) ); | 47 | ComboNtpSrv->setCurrentItem( cfg.readNumEntry("ntpServer", 0) ); |
45 | 48 | ||
49 | bool advMode = cfg.readBoolEntry("advancedFeatures", false ); | ||
50 | showAdvancedFeatures(advMode); | ||
51 | CheckBoxAdvSettings->setChecked( advMode ); | ||
52 | connect( CheckBoxAdvSettings, SIGNAL( toggled( bool ) ), | ||
53 | SLOT( showAdvancedFeatures( bool ) ) ); | ||
54 | |||
46 | makeChannel(); | 55 | makeChannel(); |
47 | 56 | ||
48 | ntpTimer = new QTimer(this); | 57 | ntpTimer = new QTimer(this); |
@@ -142,7 +151,7 @@ void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen) | |||
142 | 151 | ||
143 | void Ntp::ntpFinished(OProcess *p) | 152 | void Ntp::ntpFinished(OProcess *p) |
144 | { | 153 | { |
145 | qDebug("p->exitStatus() %i",p->exitStatus()); | 154 | //qDebug("p->exitStatus() %i",p->exitStatus()); |
146 | if (p->exitStatus()!=0 || !p->normalExit()) | 155 | if (p->exitStatus()!=0 || !p->normalExit()) |
147 | { | 156 | { |
148 | slotProbeNtpServer(); | 157 | slotProbeNtpServer(); |
@@ -277,7 +286,7 @@ void Ntp::slotCheckNtp(int i) | |||
277 | } | 286 | } |
278 | }else{ | 287 | }else{ |
279 | preditctTime(); | 288 | preditctTime(); |
280 | ButtonSetTime->setText( tr("Set predicted time") ); | 289 | ButtonSetTime->setText( tr("Set predicted time: ")+predictedTime.toString() ); |
281 | if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer()); | 290 | if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer()); |
282 | connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) ); | 291 | connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) ); |
283 | connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); | 292 | connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); |
@@ -286,7 +295,6 @@ void Ntp::slotCheckNtp(int i) | |||
286 | 295 | ||
287 | void Ntp::slotProbeNtpServer() | 296 | void Ntp::slotProbeNtpServer() |
288 | { | 297 | { |
289 | qDebug("Ntp::slotProbeNtpServer()"); | ||
290 | ntpSock->connectToHost( getNtpServer() ,123); | 298 | ntpSock->connectToHost( getNtpServer() ,123); |
291 | } | 299 | } |
292 | 300 | ||
@@ -330,3 +338,30 @@ void Ntp::setDocument(const QString &fileName) | |||
330 | { | 338 | { |
331 | 339 | ||
332 | } | 340 | } |
341 | |||
342 | void Ntp::showAdvancedFeatures(bool advMode) | ||
343 | { | ||
344 | if (advMode) { | ||
345 | TabWidgetMain->addTab( tabPredict, tr( "Predict" ) ); | ||
346 | TabWidgetMain->addTab( tabNtp, tr( "NTP" ) ); | ||
347 | TextLabel1_2_2->show(); | ||
348 | TextLabel2_3->show(); | ||
349 | TextLabel3_3_2->show(); | ||
350 | TextLabel1_2->show(); | ||
351 | SpinBoxMinLookupDelay->show(); | ||
352 | TextLabel2->show(); | ||
353 | TextLabel3_3->show(); | ||
354 | SpinBoxNtpDelay->show(); | ||
355 | }else{ | ||
356 | TabWidgetMain->removePage( tabPredict ); | ||
357 | TabWidgetMain->removePage( tabNtp ); | ||
358 | TextLabel1_2_2->hide(); | ||
359 | TextLabel2_3->hide(); | ||
360 | TextLabel3_3_2->hide(); | ||
361 | TextLabel1_2->hide(); | ||
362 | SpinBoxMinLookupDelay->hide(); | ||
363 | TextLabel2->hide(); | ||
364 | TextLabel3_3->hide(); | ||
365 | SpinBoxNtpDelay->hide(); | ||
366 | }; | ||
367 | } | ||
diff --git a/noncore/settings/netsystemtime/ntp.h b/noncore/settings/netsystemtime/ntp.h index 56e0131..fe0bae6 100644 --- a/noncore/settings/netsystemtime/ntp.h +++ b/noncore/settings/netsystemtime/ntp.h | |||
@@ -11,10 +11,10 @@ class QCopChannel; | |||
11 | 11 | ||
12 | class Ntp : public SetDateTime | 12 | class Ntp : public SetDateTime |
13 | { | 13 | { |
14 | Q_OBJECT | 14 | Q_OBJECT |
15 | 15 | ||
16 | public: | 16 | public: |
17 | Ntp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 17 | Ntp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
18 | ~Ntp(); | 18 | ~Ntp(); |
19 | 19 | ||
20 | public slots: | 20 | public slots: |
@@ -45,6 +45,7 @@ private slots: | |||
45 | void preditctTime(); | 45 | void preditctTime(); |
46 | void slotCheckNtp(int); | 46 | void slotCheckNtp(int); |
47 | void setPredictTime(); | 47 | void setPredictTime(); |
48 | void showAdvancedFeatures(bool); | ||
48 | void slotProbeNtpServer(); | 49 | void slotProbeNtpServer(); |
49 | void slotNtpDelayChanged(int); | 50 | void slotNtpDelayChanged(int); |
50 | }; | 51 | }; |
diff --git a/noncore/settings/netsystemtime/ntpbase.cpp b/noncore/settings/netsystemtime/ntpbase.cpp index 7762e93..c10c6ae 100644 --- a/noncore/settings/netsystemtime/ntpbase.cpp +++ b/noncore/settings/netsystemtime/ntpbase.cpp | |||
@@ -1,13 +1,14 @@ | |||
1 | /**************************************************************************** | 1 | /**************************************************************************** |
2 | ** Form implementation generated from reading ui file 'ntpbase.ui' | 2 | ** Form implementation generated from reading ui file 'ntpbase.ui' |
3 | ** | 3 | ** |
4 | ** Created: Mon Oct 21 21:06:08 2002 | 4 | ** Created: Mon Oct 21 21:32:47 2002 |
5 | ** by: The User Interface Compiler (uic) | 5 | ** by: The User Interface Compiler (uic) |
6 | ** | 6 | ** |
7 | ** WARNING! All changes made in this file will be lost! | 7 | ** WARNING! All changes made in this file will be lost! |
8 | ****************************************************************************/ | 8 | ****************************************************************************/ |
9 | #include "ntpbase.h" | 9 | #include "ntpbase.h" |
10 | 10 | ||
11 | #include <qcheckbox.h> | ||
11 | #include <qcombobox.h> | 12 | #include <qcombobox.h> |
12 | #include <qframe.h> | 13 | #include <qframe.h> |
13 | #include <qlabel.h> | 14 | #include <qlabel.h> |
@@ -182,9 +183,9 @@ NtpBase::NtpBase( QWidget* parent, const char* name, WFlags fl ) | |||
182 | FrameSettings = new QFrame( TabSettings, "FrameSettings" ); | 183 | FrameSettings = new QFrame( TabSettings, "FrameSettings" ); |
183 | FrameSettings->setFrameShape( QFrame::StyledPanel ); | 184 | FrameSettings->setFrameShape( QFrame::StyledPanel ); |
184 | FrameSettings->setFrameShadow( QFrame::Raised ); | 185 | FrameSettings->setFrameShadow( QFrame::Raised ); |
185 | FrameSettingsLayout = new QGridLayout( FrameSettings ); | 186 | FrameSettingsLayout = new QVBoxLayout( FrameSettings ); |
186 | FrameSettingsLayout->setSpacing( 11 ); | 187 | FrameSettingsLayout->setSpacing( 6 ); |
187 | FrameSettingsLayout->setMargin( 3 ); | 188 | FrameSettingsLayout->setMargin( 11 ); |
188 | 189 | ||
189 | Layout6 = new QGridLayout; | 190 | Layout6 = new QGridLayout; |
190 | Layout6->setSpacing( 6 ); | 191 | Layout6->setSpacing( 6 ); |
@@ -210,38 +211,19 @@ NtpBase::NtpBase( QWidget* parent, const char* name, WFlags fl ) | |||
210 | ComboNtpSrv->setEditable( TRUE ); | 211 | ComboNtpSrv->setEditable( TRUE ); |
211 | 212 | ||
212 | Layout6->addWidget( ComboNtpSrv, 0, 1 ); | 213 | Layout6->addWidget( ComboNtpSrv, 0, 1 ); |
214 | FrameSettingsLayout->addLayout( Layout6 ); | ||
215 | QSpacerItem* spacer_2 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Minimum ); | ||
216 | FrameSettingsLayout->addItem( spacer_2 ); | ||
213 | 217 | ||
214 | FrameSettingsLayout->addLayout( Layout6, 0, 0 ); | 218 | CheckBoxAdvSettings = new QCheckBox( FrameSettings, "CheckBoxAdvSettings" ); |
215 | QSpacerItem* spacer_2 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding ); | 219 | CheckBoxAdvSettings->setText( tr( "Advanced features" ) ); |
216 | FrameSettingsLayout->addItem( spacer_2, 3, 0 ); | 220 | FrameSettingsLayout->addWidget( CheckBoxAdvSettings ); |
221 | QSpacerItem* spacer_3 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding ); | ||
222 | FrameSettingsLayout->addItem( spacer_3 ); | ||
217 | 223 | ||
218 | Layout7 = new QGridLayout; | 224 | Line1 = new QFrame( FrameSettings, "Line1" ); |
219 | Layout7->setSpacing( 6 ); | 225 | Line1->setFrameStyle( QFrame::HLine | QFrame::Sunken ); |
220 | Layout7->setMargin( 0 ); | 226 | FrameSettingsLayout->addWidget( Line1 ); |
221 | |||
222 | TextLabel1_2 = new QLabel( FrameSettings, "TextLabel1_2" ); | ||
223 | TextLabel1_2->setText( tr( "Insure a delay of" ) ); | ||
224 | |||
225 | Layout7->addWidget( TextLabel1_2, 0, 0 ); | ||
226 | |||
227 | TextLabel2 = new QLabel( FrameSettings, "TextLabel2" ); | ||
228 | TextLabel2->setText( tr( "minutes until" ) ); | ||
229 | |||
230 | Layout7->addWidget( TextLabel2, 0, 2 ); | ||
231 | |||
232 | TextLabel3_3 = new QLabel( FrameSettings, "TextLabel3_3" ); | ||
233 | TextLabel3_3->setText( tr( "a new NTP lookup will be used to predict the time." ) ); | ||
234 | TextLabel3_3->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter | QLabel::AlignLeft ) ); | ||
235 | |||
236 | Layout7->addMultiCellWidget( TextLabel3_3, 1, 1, 0, 2 ); | ||
237 | |||
238 | SpinBoxMinLookupDelay = new QSpinBox( FrameSettings, "SpinBoxMinLookupDelay" ); | ||
239 | SpinBoxMinLookupDelay->setMaxValue( 9999999 ); | ||
240 | SpinBoxMinLookupDelay->setMinValue( 42 ); | ||
241 | |||
242 | Layout7->addWidget( SpinBoxMinLookupDelay, 0, 1 ); | ||
243 | |||
244 | FrameSettingsLayout->addLayout( Layout7, 2, 0 ); | ||
245 | 227 | ||
246 | Layout7_2 = new QGridLayout; | 228 | Layout7_2 = new QGridLayout; |
247 | Layout7_2->setSpacing( 6 ); | 229 | Layout7_2->setSpacing( 6 ); |
@@ -265,12 +247,42 @@ NtpBase::NtpBase( QWidget* parent, const char* name, WFlags fl ) | |||
265 | Layout7_2->addMultiCellWidget( TextLabel3_3_2, 1, 1, 0, 2 ); | 247 | Layout7_2->addMultiCellWidget( TextLabel3_3_2, 1, 1, 0, 2 ); |
266 | 248 | ||
267 | SpinBoxNtpDelay = new QSpinBox( FrameSettings, "SpinBoxNtpDelay" ); | 249 | SpinBoxNtpDelay = new QSpinBox( FrameSettings, "SpinBoxNtpDelay" ); |
250 | SpinBoxNtpDelay->setWrapping( TRUE ); | ||
268 | SpinBoxNtpDelay->setMaxValue( 9999999 ); | 251 | SpinBoxNtpDelay->setMaxValue( 9999999 ); |
269 | SpinBoxNtpDelay->setMinValue( 0 ); | 252 | SpinBoxNtpDelay->setMinValue( 1 ); |
253 | SpinBoxNtpDelay->setValue( 1440 ); | ||
270 | 254 | ||
271 | Layout7_2->addWidget( SpinBoxNtpDelay, 0, 1 ); | 255 | Layout7_2->addWidget( SpinBoxNtpDelay, 0, 1 ); |
256 | FrameSettingsLayout->addLayout( Layout7_2 ); | ||
272 | 257 | ||
273 | FrameSettingsLayout->addLayout( Layout7_2, 1, 0 ); | 258 | Layout7 = new QGridLayout; |
259 | Layout7->setSpacing( 6 ); | ||
260 | Layout7->setMargin( 0 ); | ||
261 | |||
262 | TextLabel1_2 = new QLabel( FrameSettings, "TextLabel1_2" ); | ||
263 | TextLabel1_2->setText( tr( "Insure a delay of" ) ); | ||
264 | |||
265 | Layout7->addWidget( TextLabel1_2, 0, 0 ); | ||
266 | |||
267 | TextLabel2 = new QLabel( FrameSettings, "TextLabel2" ); | ||
268 | TextLabel2->setText( tr( "minutes until" ) ); | ||
269 | |||
270 | Layout7->addWidget( TextLabel2, 0, 2 ); | ||
271 | |||
272 | TextLabel3_3 = new QLabel( FrameSettings, "TextLabel3_3" ); | ||
273 | TextLabel3_3->setText( tr( "a new NTP lookup will be used to predict the time." ) ); | ||
274 | TextLabel3_3->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter | QLabel::AlignLeft ) ); | ||
275 | |||
276 | Layout7->addMultiCellWidget( TextLabel3_3, 1, 1, 0, 2 ); | ||
277 | |||
278 | SpinBoxMinLookupDelay = new QSpinBox( FrameSettings, "SpinBoxMinLookupDelay" ); | ||
279 | SpinBoxMinLookupDelay->setWrapping( TRUE ); | ||
280 | SpinBoxMinLookupDelay->setMaxValue( 9999999 ); | ||
281 | SpinBoxMinLookupDelay->setMinValue( 42 ); | ||
282 | SpinBoxMinLookupDelay->setValue( 720 ); | ||
283 | |||
284 | Layout7->addWidget( SpinBoxMinLookupDelay, 0, 1 ); | ||
285 | FrameSettingsLayout->addLayout( Layout7 ); | ||
274 | 286 | ||
275 | TabSettingsLayout->addWidget( FrameSettings, 0, 0 ); | 287 | TabSettingsLayout->addWidget( FrameSettings, 0, 0 ); |
276 | 288 | ||
@@ -288,14 +300,12 @@ NtpBase::NtpBase( QWidget* parent, const char* name, WFlags fl ) | |||
288 | PushButtonSetManualTime->setText( tr( "Set time" ) ); | 300 | PushButtonSetManualTime->setText( tr( "Set time" ) ); |
289 | tabManualSetTimeLayout->addWidget( PushButtonSetManualTime ); | 301 | tabManualSetTimeLayout->addWidget( PushButtonSetManualTime ); |
290 | 302 | ||
291 | TabWidgetMain->insertTab( tabMain, tr( "Main" ) ); | ||
292 | 303 | ||
304 | TabWidgetMain->insertTab( tabMain, tr( "Main" ) ); | ||
293 | TabWidgetMain->insertTab( tabManualSetTime, tr( "Manual" ) ); | 305 | TabWidgetMain->insertTab( tabManualSetTime, tr( "Manual" ) ); |
294 | |||
295 | TabWidgetMain->insertTab( TabSettings, tr( "Settings" ) ); | 306 | TabWidgetMain->insertTab( TabSettings, tr( "Settings" ) ); |
296 | |||
297 | TabWidgetMain->insertTab( tabNtp, tr( "NTP" ) ); | ||
298 | TabWidgetMain->insertTab( tabPredict, tr( "Predict" ) ); | 307 | TabWidgetMain->insertTab( tabPredict, tr( "Predict" ) ); |
308 | TabWidgetMain->insertTab( tabNtp, tr( "NTP" ) ); | ||
299 | 309 | ||
300 | NtpBaseLayout->addWidget( TabWidgetMain, 0, 0 ); | 310 | NtpBaseLayout->addWidget( TabWidgetMain, 0, 0 ); |
301 | } | 311 | } |
diff --git a/noncore/settings/netsystemtime/ntpbase.h b/noncore/settings/netsystemtime/ntpbase.h index b337822..a669601 100644 --- a/noncore/settings/netsystemtime/ntpbase.h +++ b/noncore/settings/netsystemtime/ntpbase.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /**************************************************************************** | 1 | /**************************************************************************** |
2 | ** Form interface generated from reading ui file 'ntpbase.ui' | 2 | ** Form interface generated from reading ui file 'ntpbase.ui' |
3 | ** | 3 | ** |
4 | ** Created: Mon Oct 21 21:05:47 2002 | 4 | ** Created: Mon Oct 21 21:32:43 2002 |
5 | ** by: The User Interface Compiler (uic) | 5 | ** by: The User Interface Compiler (uic) |
6 | ** | 6 | ** |
7 | ** WARNING! All changes made in this file will be lost! | 7 | ** WARNING! All changes made in this file will be lost! |
@@ -14,6 +14,7 @@ | |||
14 | class QVBoxLayout; | 14 | class QVBoxLayout; |
15 | class QHBoxLayout; | 15 | class QHBoxLayout; |
16 | class QGridLayout; | 16 | class QGridLayout; |
17 | class QCheckBox; | ||
17 | class QComboBox; | 18 | class QComboBox; |
18 | class QFrame; | 19 | class QFrame; |
19 | class QLabel; | 20 | class QLabel; |
@@ -60,14 +61,16 @@ public: | |||
60 | QLabel* TextLabel2_2; | 61 | QLabel* TextLabel2_2; |
61 | QLabel* TextLabel1_3; | 62 | QLabel* TextLabel1_3; |
62 | QComboBox* ComboNtpSrv; | 63 | QComboBox* ComboNtpSrv; |
63 | QLabel* TextLabel1_2; | 64 | QCheckBox* CheckBoxAdvSettings; |
64 | QLabel* TextLabel2; | 65 | QFrame* Line1; |
65 | QLabel* TextLabel3_3; | ||
66 | QSpinBox* SpinBoxMinLookupDelay; | ||
67 | QLabel* TextLabel1_2_2; | 66 | QLabel* TextLabel1_2_2; |
68 | QLabel* TextLabel2_3; | 67 | QLabel* TextLabel2_3; |
69 | QLabel* TextLabel3_3_2; | 68 | QLabel* TextLabel3_3_2; |
70 | QSpinBox* SpinBoxNtpDelay; | 69 | QSpinBox* SpinBoxNtpDelay; |
70 | QLabel* TextLabel1_2; | ||
71 | QLabel* TextLabel2; | ||
72 | QLabel* TextLabel3_3; | ||
73 | QSpinBox* SpinBoxMinLookupDelay; | ||
71 | QWidget* tabManualSetTime; | 74 | QWidget* tabManualSetTime; |
72 | QFrame* FrameSetTime; | 75 | QFrame* FrameSetTime; |
73 | QPushButton* PushButtonSetManualTime; | 76 | QPushButton* PushButtonSetManualTime; |
@@ -82,10 +85,10 @@ protected: | |||
82 | QGridLayout* Layout9; | 85 | QGridLayout* Layout9; |
83 | QHBoxLayout* Layout11; | 86 | QHBoxLayout* Layout11; |
84 | QGridLayout* TabSettingsLayout; | 87 | QGridLayout* TabSettingsLayout; |
85 | QGridLayout* FrameSettingsLayout; | 88 | QVBoxLayout* FrameSettingsLayout; |
86 | QGridLayout* Layout6; | 89 | QGridLayout* Layout6; |
87 | QGridLayout* Layout7; | ||
88 | QGridLayout* Layout7_2; | 90 | QGridLayout* Layout7_2; |
91 | QGridLayout* Layout7; | ||
89 | QVBoxLayout* tabManualSetTimeLayout; | 92 | QVBoxLayout* tabManualSetTimeLayout; |
90 | bool event( QEvent* ); | 93 | bool event( QEvent* ); |
91 | }; | 94 | }; |
diff --git a/noncore/settings/netsystemtime/ntpbase.ui b/noncore/settings/netsystemtime/ntpbase.ui index be2c8d3..62f736b 100644 --- a/noncore/settings/netsystemtime/ntpbase.ui +++ b/noncore/settings/netsystemtime/ntpbase.ui | |||
@@ -1,469 +1,436 @@ | |||
1 | <!DOCTYPE UI><UI version="3.0" stdsetdef="1"> | 1 | <!DOCTYPE UI><UI> |
2 | <class>NtpBase</class> | 2 | <class>NtpBase</class> |
3 | <widget class="QWidget"> | 3 | <widget> |
4 | <property name="name"> | 4 | <class>QWidget</class> |
5 | <property stdset="1"> | ||
6 | <name>name</name> | ||
5 | <cstring>NtpBase</cstring> | 7 | <cstring>NtpBase</cstring> |
6 | </property> | 8 | </property> |
7 | <property name="geometry"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | ||
8 | <rect> | 11 | <rect> |
9 | <x>0</x> | 12 | <x>0</x> |
10 | <y>0</y> | 13 | <y>0</y> |
11 | <width>324</width> | 14 | <width>320</width> |
12 | <height>411</height> | 15 | <height>411</height> |
13 | </rect> | 16 | </rect> |
14 | </property> | 17 | </property> |
15 | <property name="caption"> | 18 | <property stdset="1"> |
16 | <string>Set Time</string> | 19 | <name>caption</name> |
20 | <string>Network Time</string> | ||
17 | </property> | 21 | </property> |
18 | <property name="layoutMargin" stdset="0"> | 22 | <property> |
23 | <name>layoutMargin</name> | ||
19 | </property> | 24 | </property> |
20 | <property name="layoutSpacing" stdset="0"> | 25 | <property> |
26 | <name>layoutSpacing</name> | ||
21 | </property> | 27 | </property> |
22 | <grid> | 28 | <grid> |
23 | <property name="name"> | 29 | <property stdset="1"> |
24 | <cstring>unnamed</cstring> | 30 | <name>margin</name> |
25 | </property> | ||
26 | <property name="margin"> | ||
27 | <number>2</number> | 31 | <number>2</number> |
28 | </property> | 32 | </property> |
29 | <property name="spacing"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | ||
30 | <number>2</number> | 35 | <number>2</number> |
31 | </property> | 36 | </property> |
32 | <widget class="QTabWidget" row="0" column="0"> | 37 | <widget row="0" column="0" > |
33 | <property name="name"> | 38 | <class>QTabWidget</class> |
39 | <property stdset="1"> | ||
40 | <name>name</name> | ||
34 | <cstring>TabWidgetMain</cstring> | 41 | <cstring>TabWidgetMain</cstring> |
35 | </property> | 42 | </property> |
36 | <property name="layoutMargin" stdset="0"> | 43 | <property> |
44 | <name>layoutMargin</name> | ||
37 | </property> | 45 | </property> |
38 | <property name="layoutSpacing" stdset="0"> | 46 | <property> |
47 | <name>layoutSpacing</name> | ||
39 | </property> | 48 | </property> |
40 | <widget class="QWidget"> | 49 | <widget> |
41 | <property name="name"> | 50 | <class>QWidget</class> |
51 | <property stdset="1"> | ||
52 | <name>name</name> | ||
42 | <cstring>tabMain</cstring> | 53 | <cstring>tabMain</cstring> |
43 | </property> | 54 | </property> |
44 | <attribute name="title"> | 55 | <attribute> |
56 | <name>title</name> | ||
45 | <string>Main</string> | 57 | <string>Main</string> |
46 | </attribute> | 58 | </attribute> |
47 | <grid> | 59 | <grid> |
48 | <property name="name"> | 60 | <property stdset="1"> |
49 | <cstring>unnamed</cstring> | 61 | <name>margin</name> |
50 | </property> | ||
51 | <property name="margin"> | ||
52 | <number>2</number> | 62 | <number>2</number> |
53 | </property> | 63 | </property> |
54 | <property name="spacing"> | 64 | <property stdset="1"> |
65 | <name>spacing</name> | ||
55 | <number>2</number> | 66 | <number>2</number> |
56 | </property> | 67 | </property> |
57 | <widget class="QFrame" row="0" column="0"> | 68 | <widget row="0" column="0" > |
58 | <property name="name"> | 69 | <class>QFrame</class> |
70 | <property stdset="1"> | ||
71 | <name>name</name> | ||
59 | <cstring>FrameSystemTime</cstring> | 72 | <cstring>FrameSystemTime</cstring> |
60 | </property> | 73 | </property> |
61 | <property name="frameShape"> | 74 | <property stdset="1"> |
75 | <name>frameShape</name> | ||
62 | <enum>StyledPanel</enum> | 76 | <enum>StyledPanel</enum> |
63 | </property> | 77 | </property> |
64 | <property name="frameShadow"> | 78 | <property stdset="1"> |
79 | <name>frameShadow</name> | ||
65 | <enum>Raised</enum> | 80 | <enum>Raised</enum> |
66 | </property> | 81 | </property> |
67 | </widget> | 82 | </widget> |
68 | </grid> | 83 | </grid> |
69 | </widget> | 84 | </widget> |
70 | <widget class="QWidget"> | 85 | <widget> |
71 | <property name="name"> | 86 | <class>QWidget</class> |
72 | <cstring>tabSetTime</cstring> | 87 | <property stdset="1"> |
88 | <name>name</name> | ||
89 | <cstring>tabNtp</cstring> | ||
73 | </property> | 90 | </property> |
74 | <attribute name="title"> | 91 | <attribute> |
75 | <string>Manual</string> | 92 | <name>title</name> |
93 | <string>NTP</string> | ||
76 | </attribute> | 94 | </attribute> |
77 | <vbox> | 95 | <grid> |
78 | <property name="name"> | 96 | <property stdset="1"> |
79 | <cstring>unnamed</cstring> | 97 | <name>margin</name> |
80 | </property> | 98 | <number>1</number> |
81 | <property name="margin"> | ||
82 | <number>2</number> | ||
83 | </property> | 99 | </property> |
84 | <property name="spacing"> | 100 | <property stdset="1"> |
101 | <name>spacing</name> | ||
85 | <number>2</number> | 102 | <number>2</number> |
86 | </property> | 103 | </property> |
87 | <widget class="QFrame"> | 104 | <widget row="1" column="0" > |
88 | <property name="name"> | 105 | <class>QPushButton</class> |
89 | <cstring>FrameSetTime</cstring> | 106 | <property stdset="1"> |
90 | </property> | 107 | <name>name</name> |
91 | <property name="frameShape"> | 108 | <cstring>runNtp</cstring> |
92 | <enum>StyledPanel</enum> | ||
93 | </property> | ||
94 | <property name="frameShadow"> | ||
95 | <enum>Raised</enum> | ||
96 | </property> | ||
97 | </widget> | ||
98 | <widget class="QPushButton"> | ||
99 | <property name="name"> | ||
100 | <cstring>PushButtonSetManualTime</cstring> | ||
101 | </property> | 109 | </property> |
102 | <property name="text"> | 110 | <property stdset="1"> |
103 | <string>Set time</string> | 111 | <name>text</name> |
112 | <string>Get time from network</string> | ||
104 | </property> | 113 | </property> |
105 | </widget> | 114 | </widget> |
106 | </vbox> | 115 | <widget row="0" column="0" > |
107 | </widget> | 116 | <class>QFrame</class> |
108 | <widget class="QWidget"> | 117 | <property stdset="1"> |
109 | <property name="name"> | 118 | <name>name</name> |
110 | <cstring>TabSettings</cstring> | 119 | <cstring>FrameNtp</cstring> |
111 | </property> | ||
112 | <attribute name="title"> | ||
113 | <string>Settings</string> | ||
114 | </attribute> | ||
115 | <grid> | ||
116 | <property name="name"> | ||
117 | <cstring>unnamed</cstring> | ||
118 | </property> | ||
119 | <property name="margin"> | ||
120 | <number>2</number> | ||
121 | </property> | ||
122 | <property name="spacing"> | ||
123 | <number>2</number> | ||
124 | </property> | ||
125 | <widget class="QFrame" row="0" column="0"> | ||
126 | <property name="name"> | ||
127 | <cstring>FrameSettings</cstring> | ||
128 | </property> | 120 | </property> |
129 | <property name="frameShape"> | 121 | <property stdset="1"> |
122 | <name>frameShape</name> | ||
130 | <enum>StyledPanel</enum> | 123 | <enum>StyledPanel</enum> |
131 | </property> | 124 | </property> |
132 | <property name="frameShadow"> | 125 | <property stdset="1"> |
126 | <name>frameShadow</name> | ||
133 | <enum>Raised</enum> | 127 | <enum>Raised</enum> |
134 | </property> | 128 | </property> |
135 | <property name="layoutMargin" stdset="0"> | 129 | <property> |
130 | <name>layoutMargin</name> | ||
136 | </property> | 131 | </property> |
137 | <property name="layoutSpacing" stdset="0"> | 132 | <property> |
133 | <name>layoutSpacing</name> | ||
138 | </property> | 134 | </property> |
139 | <grid> | 135 | <grid> |
140 | <property name="name"> | 136 | <property stdset="1"> |
141 | <cstring>unnamed</cstring> | 137 | <name>margin</name> |
142 | </property> | 138 | <number>2</number> |
143 | <property name="margin"> | ||
144 | <number>3</number> | ||
145 | </property> | 139 | </property> |
146 | <property name="spacing"> | 140 | <property stdset="1"> |
147 | <number>11</number> | 141 | <name>spacing</name> |
142 | <number>2</number> | ||
148 | </property> | 143 | </property> |
149 | <widget class="QLayoutWidget" row="0" column="0"> | 144 | <widget row="0" column="0" > |
150 | <property name="name"> | 145 | <class>QLayoutWidget</class> |
151 | <cstring>Layout6</cstring> | 146 | <property stdset="1"> |
147 | <name>name</name> | ||
148 | <cstring>Layout4</cstring> | ||
152 | </property> | 149 | </property> |
153 | <grid> | 150 | <vbox> |
154 | <property name="name"> | 151 | <property stdset="1"> |
155 | <cstring>unnamed</cstring> | 152 | <name>margin</name> |
156 | </property> | ||
157 | <property name="margin"> | ||
158 | <number>0</number> | 153 | <number>0</number> |
159 | </property> | 154 | </property> |
160 | <property name="spacing"> | 155 | <property stdset="1"> |
156 | <name>spacing</name> | ||
161 | <number>6</number> | 157 | <number>6</number> |
162 | </property> | 158 | </property> |
163 | <widget class="QLabel" row="0" column="0"> | 159 | <widget> |
164 | <property name="name"> | 160 | <class>QLabel</class> |
165 | <cstring>TextLabel7_2</cstring> | 161 | <property stdset="1"> |
166 | </property> | 162 | <name>name</name> |
167 | <property name="text"> | 163 | <cstring>TextLabel1</cstring> |
168 | <string>Use</string> | ||
169 | </property> | 164 | </property> |
170 | </widget> | 165 | <property stdset="1"> |
171 | <widget class="QLabel" row="0" column="2"> | 166 | <name>autoMask</name> |
172 | <property name="name"> | 167 | <bool>false</bool> |
173 | <cstring>TextLabel2_2</cstring> | ||
174 | </property> | 168 | </property> |
175 | <property name="text"> | 169 | <property stdset="1"> |
176 | <string>as</string> | 170 | <name>text</name> |
171 | <string>Start Time:</string> | ||
177 | </property> | 172 | </property> |
178 | </widget> | 173 | </widget> |
179 | <widget class="QLabel" row="1" column="0" rowspan="1" colspan="2"> | 174 | <widget> |
180 | <property name="name"> | 175 | <class>QLabel</class> |
181 | <cstring>TextLabel1_3</cstring> | 176 | <property stdset="1"> |
182 | </property> | 177 | <name>name</name> |
183 | <property name="text"> | 178 | <cstring>TextLabelStartTime</cstring> |
184 | <string>NTP server to get the time from the network.</string> | ||
185 | </property> | ||
186 | <property name="alignment"> | ||
187 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
188 | </property> | 179 | </property> |
189 | <property name="wordwrap" stdset="0"> | 180 | <property stdset="1"> |
181 | <name>text</name> | ||
182 | <string>nan</string> | ||
190 | </property> | 183 | </property> |
191 | </widget> | 184 | </widget> |
192 | <widget class="QComboBox" row="0" column="1"> | 185 | <widget> |
193 | <property name="name"> | 186 | <class>QLabel</class> |
194 | <cstring>ComboNtpSrv</cstring> | 187 | <property stdset="1"> |
188 | <name>name</name> | ||
189 | <cstring>TextLabel3</cstring> | ||
195 | </property> | 190 | </property> |
196 | <property name="editable"> | 191 | <property stdset="1"> |
197 | <bool>true</bool> | 192 | <name>text</name> |
193 | <string>Time Shift:</string> | ||
198 | </property> | 194 | </property> |
199 | </widget> | 195 | </widget> |
200 | </grid> | 196 | <widget> |
201 | </widget> | 197 | <class>QLabel</class> |
202 | <spacer row="3" column="0"> | 198 | <property stdset="1"> |
203 | <property name="name"> | 199 | <name>name</name> |
204 | <cstring>Spacer2</cstring> | 200 | <cstring>TextLabelTimeShift</cstring> |
205 | </property> | ||
206 | <property name="orientation"> | ||
207 | <enum>Vertical</enum> | ||
208 | </property> | ||
209 | <property name="sizeType"> | ||
210 | <enum>Expanding</enum> | ||
211 | </property> | ||
212 | <property name="sizeHint"> | ||
213 | <size> | ||
214 | <width>0</width> | ||
215 | <height>20</height> | ||
216 | </size> | ||
217 | </property> | ||
218 | </spacer> | ||
219 | <widget class="QLayoutWidget" row="2" column="0"> | ||
220 | <property name="name"> | ||
221 | <cstring>Layout7</cstring> | ||
222 | </property> | ||
223 | <grid> | ||
224 | <property name="name"> | ||
225 | <cstring>unnamed</cstring> | ||
226 | </property> | ||
227 | <property name="margin"> | ||
228 | <number>0</number> | ||
229 | </property> | ||
230 | <property name="spacing"> | ||
231 | <number>6</number> | ||
232 | </property> | ||
233 | <widget class="QLabel" row="0" column="0"> | ||
234 | <property name="name"> | ||
235 | <cstring>TextLabel1_2</cstring> | ||
236 | </property> | 201 | </property> |
237 | <property name="text"> | 202 | <property stdset="1"> |
238 | <string>Insure a delay of</string> | 203 | <name>text</name> |
204 | <string>nan</string> | ||
239 | </property> | 205 | </property> |
240 | </widget> | 206 | </widget> |
241 | <widget class="QLabel" row="0" column="2"> | 207 | <widget> |
242 | <property name="name"> | 208 | <class>QLabel</class> |
243 | <cstring>TextLabel2</cstring> | 209 | <property stdset="1"> |
210 | <name>name</name> | ||
211 | <cstring>TextLabel5</cstring> | ||
244 | </property> | 212 | </property> |
245 | <property name="text"> | 213 | <property stdset="1"> |
246 | <string>minutes until</string> | 214 | <name>text</name> |
215 | <string>New Time:</string> | ||
247 | </property> | 216 | </property> |
248 | </widget> | 217 | </widget> |
249 | <widget class="QLabel" row="1" column="0" rowspan="1" colspan="3"> | 218 | <widget> |
250 | <property name="name"> | 219 | <class>QLabel</class> |
251 | <cstring>TextLabel3_3</cstring> | 220 | <property stdset="1"> |
252 | </property> | 221 | <name>name</name> |
253 | <property name="text"> | 222 | <cstring>TextLabelNewTime</cstring> |
254 | <string>a new NTP lookup will be used to predict the time.</string> | ||
255 | </property> | ||
256 | <property name="alignment"> | ||
257 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
258 | </property> | 223 | </property> |
259 | <property name="wordwrap" stdset="0"> | 224 | <property stdset="1"> |
225 | <name>text</name> | ||
226 | <string>nan</string> | ||
260 | </property> | 227 | </property> |
261 | </widget> | 228 | </widget> |
262 | <widget class="QSpinBox" row="0" column="1"> | 229 | <spacer> |
263 | <property name="name"> | 230 | <property> |
264 | <cstring>SpinBoxMinLookupDelay</cstring> | 231 | <name>name</name> |
232 | <cstring>Spacer1</cstring> | ||
265 | </property> | 233 | </property> |
266 | <property name="maxValue"> | 234 | <property stdset="1"> |
267 | <number>9999999</number> | 235 | <name>orientation</name> |
236 | <enum>Vertical</enum> | ||
268 | </property> | 237 | </property> |
269 | <property name="minValue"> | 238 | <property stdset="1"> |
270 | <number>42</number> | 239 | <name>sizeType</name> |
240 | <enum>Expanding</enum> | ||
271 | </property> | 241 | </property> |
272 | </widget> | 242 | <property> |
273 | </grid> | 243 | <name>sizeHint</name> |
244 | <size> | ||
245 | <width>20</width> | ||
246 | <height>20</height> | ||
247 | </size> | ||
248 | </property> | ||
249 | </spacer> | ||
250 | </vbox> | ||
274 | </widget> | 251 | </widget> |
275 | <widget class="QLayoutWidget" row="1" column="0"> | 252 | <widget row="1" column="0" > |
276 | <property name="name"> | 253 | <class>QMultiLineEdit</class> |
277 | <cstring>Layout7_2</cstring> | 254 | <property stdset="1"> |
255 | <name>name</name> | ||
256 | <cstring>MultiLineEditntpOutPut</cstring> | ||
257 | </property> | ||
258 | <property stdset="1"> | ||
259 | <name>font</name> | ||
260 | <font> | ||
261 | <pointsize>7</pointsize> | ||
262 | </font> | ||
263 | </property> | ||
264 | <property stdset="1"> | ||
265 | <name>wordWrap</name> | ||
266 | <enum>WidgetWidth</enum> | ||
267 | </property> | ||
268 | <property stdset="1"> | ||
269 | <name>text</name> | ||
270 | <string></string> | ||
278 | </property> | 271 | </property> |
279 | <grid> | ||
280 | <property name="name"> | ||
281 | <cstring>unnamed</cstring> | ||
282 | </property> | ||
283 | <property name="margin"> | ||
284 | <number>0</number> | ||
285 | </property> | ||
286 | <property name="spacing"> | ||
287 | <number>6</number> | ||
288 | </property> | ||
289 | <widget class="QLabel" row="0" column="0"> | ||
290 | <property name="name"> | ||
291 | <cstring>TextLabel1_2_2</cstring> | ||
292 | </property> | ||
293 | <property name="sizePolicy"> | ||
294 | <sizepolicy> | ||
295 | <hsizetype>1</hsizetype> | ||
296 | <vsizetype>1</vsizetype> | ||
297 | <horstretch>0</horstretch> | ||
298 | <verstretch>0</verstretch> | ||
299 | </sizepolicy> | ||
300 | </property> | ||
301 | <property name="text"> | ||
302 | <string>Wait for </string> | ||
303 | </property> | ||
304 | </widget> | ||
305 | <widget class="QLabel" row="0" column="2"> | ||
306 | <property name="name"> | ||
307 | <cstring>TextLabel2_3</cstring> | ||
308 | </property> | ||
309 | <property name="text"> | ||
310 | <string>minutes until</string> | ||
311 | </property> | ||
312 | </widget> | ||
313 | <widget class="QLabel" row="1" column="0" rowspan="1" colspan="3"> | ||
314 | <property name="name"> | ||
315 | <cstring>TextLabel3_3_2</cstring> | ||
316 | </property> | ||
317 | <property name="text"> | ||
318 | <string>NTP tries to syncronises the clock with the network.</string> | ||
319 | </property> | ||
320 | <property name="alignment"> | ||
321 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
322 | </property> | ||
323 | <property name="wordwrap" stdset="0"> | ||
324 | </property> | ||
325 | </widget> | ||
326 | <widget class="QSpinBox" row="0" column="1"> | ||
327 | <property name="name"> | ||
328 | <cstring>SpinBoxNtpDelay</cstring> | ||
329 | </property> | ||
330 | <property name="maxValue"> | ||
331 | <number>9999999</number> | ||
332 | </property> | ||
333 | <property name="minValue"> | ||
334 | <number>0</number> | ||
335 | </property> | ||
336 | </widget> | ||
337 | </grid> | ||
338 | </widget> | 272 | </widget> |
339 | </grid> | 273 | </grid> |
340 | </widget> | 274 | </widget> |
341 | </grid> | 275 | </grid> |
342 | </widget> | 276 | </widget> |
343 | <widget class="QWidget"> | 277 | <widget> |
344 | <property name="name"> | 278 | <class>QWidget</class> |
345 | <cstring>tab</cstring> | 279 | <property stdset="1"> |
280 | <name>name</name> | ||
281 | <cstring>tabPredict</cstring> | ||
346 | </property> | 282 | </property> |
347 | <attribute name="title"> | 283 | <attribute> |
284 | <name>title</name> | ||
348 | <string>Predict</string> | 285 | <string>Predict</string> |
349 | </attribute> | 286 | </attribute> |
350 | <grid> | 287 | <grid> |
351 | <property name="name"> | 288 | <property stdset="1"> |
352 | <cstring>unnamed</cstring> | 289 | <name>margin</name> |
353 | </property> | ||
354 | <property name="margin"> | ||
355 | <number>5</number> | 290 | <number>5</number> |
356 | </property> | 291 | </property> |
357 | <property name="spacing"> | 292 | <property stdset="1"> |
293 | <name>spacing</name> | ||
358 | <number>6</number> | 294 | <number>6</number> |
359 | </property> | 295 | </property> |
360 | <widget class="QTable" row="0" column="0"> | 296 | <widget row="0" column="0" > |
361 | <property name="name"> | 297 | <class>QTable</class> |
298 | <property stdset="1"> | ||
299 | <name>name</name> | ||
362 | <cstring>TableLookups</cstring> | 300 | <cstring>TableLookups</cstring> |
363 | </property> | 301 | </property> |
364 | <property name="font"> | 302 | <property stdset="1"> |
303 | <name>font</name> | ||
365 | <font> | 304 | <font> |
366 | <pointsize>8</pointsize> | 305 | <pointsize>8</pointsize> |
367 | </font> | 306 | </font> |
368 | </property> | 307 | </property> |
369 | <property name="numRows"> | 308 | <property stdset="1"> |
309 | <name>numRows</name> | ||
370 | <number>2</number> | 310 | <number>2</number> |
371 | </property> | 311 | </property> |
372 | <property name="numCols"> | 312 | <property stdset="1"> |
313 | <name>numCols</name> | ||
373 | <number>2</number> | 314 | <number>2</number> |
374 | </property> | 315 | </property> |
375 | </widget> | 316 | </widget> |
376 | <widget class="QLayoutWidget" row="1" column="0"> | 317 | <widget row="1" column="0" > |
377 | <property name="name"> | 318 | <class>QLayoutWidget</class> |
319 | <property stdset="1"> | ||
320 | <name>name</name> | ||
378 | <cstring>Layout9</cstring> | 321 | <cstring>Layout9</cstring> |
379 | </property> | 322 | </property> |
380 | <grid> | 323 | <grid> |
381 | <property name="name"> | 324 | <property stdset="1"> |
382 | <cstring>unnamed</cstring> | 325 | <name>margin</name> |
383 | </property> | ||
384 | <property name="margin"> | ||
385 | <number>0</number> | 326 | <number>0</number> |
386 | </property> | 327 | </property> |
387 | <property name="spacing"> | 328 | <property stdset="1"> |
329 | <name>spacing</name> | ||
388 | <number>6</number> | 330 | <number>6</number> |
389 | </property> | 331 | </property> |
390 | <widget class="QLabel" row="0" column="1"> | 332 | <widget row="0" column="1" > |
391 | <property name="name"> | 333 | <class>QLabel</class> |
334 | <property stdset="1"> | ||
335 | <name>name</name> | ||
392 | <cstring>TextLabelShift</cstring> | 336 | <cstring>TextLabelShift</cstring> |
393 | </property> | 337 | </property> |
394 | <property name="text"> | 338 | <property stdset="1"> |
339 | <name>text</name> | ||
395 | <string>nan</string> | 340 | <string>nan</string> |
396 | </property> | 341 | </property> |
397 | </widget> | 342 | </widget> |
398 | <widget class="QLabel" row="1" column="0"> | 343 | <widget row="1" column="0" > |
399 | <property name="name"> | 344 | <class>QLabel</class> |
345 | <property stdset="1"> | ||
346 | <name>name</name> | ||
400 | <cstring>TextLabel4</cstring> | 347 | <cstring>TextLabel4</cstring> |
401 | </property> | 348 | </property> |
402 | <property name="text"> | 349 | <property stdset="1"> |
350 | <name>text</name> | ||
403 | <string>Esimated Shift:</string> | 351 | <string>Esimated Shift:</string> |
404 | </property> | 352 | </property> |
405 | </widget> | 353 | </widget> |
406 | <widget class="QLabel" row="1" column="1"> | 354 | <widget row="1" column="1" > |
407 | <property name="name"> | 355 | <class>QLabel</class> |
356 | <property stdset="1"> | ||
357 | <name>name</name> | ||
408 | <cstring>TextLabelEstimatedShift</cstring> | 358 | <cstring>TextLabelEstimatedShift</cstring> |
409 | </property> | 359 | </property> |
410 | <property name="text"> | 360 | <property stdset="1"> |
361 | <name>text</name> | ||
411 | <string>nan</string> | 362 | <string>nan</string> |
412 | </property> | 363 | </property> |
413 | </widget> | 364 | </widget> |
414 | <widget class="QLabel" row="2" column="0"> | 365 | <widget row="2" column="0" > |
415 | <property name="name"> | 366 | <class>QLabel</class> |
367 | <property stdset="1"> | ||
368 | <name>name</name> | ||
416 | <cstring>TextLabel3_2</cstring> | 369 | <cstring>TextLabel3_2</cstring> |
417 | </property> | 370 | </property> |
418 | <property name="text"> | 371 | <property stdset="1"> |
372 | <name>text</name> | ||
419 | <string>Predicted Time:</string> | 373 | <string>Predicted Time:</string> |
420 | </property> | 374 | </property> |
421 | </widget> | 375 | </widget> |
422 | <widget class="QLabel" row="0" column="0"> | 376 | <widget row="0" column="0" > |
423 | <property name="name"> | 377 | <class>QLabel</class> |
378 | <property stdset="1"> | ||
379 | <name>name</name> | ||
424 | <cstring>Mean_shift_label</cstring> | 380 | <cstring>Mean_shift_label</cstring> |
425 | </property> | 381 | </property> |
426 | <property name="text"> | 382 | <property stdset="1"> |
383 | <name>text</name> | ||
427 | <string>Mean shift:</string> | 384 | <string>Mean shift:</string> |
428 | </property> | 385 | </property> |
429 | </widget> | 386 | </widget> |
430 | <widget class="QLabel" row="2" column="1"> | 387 | <widget row="2" column="1" > |
431 | <property name="name"> | 388 | <class>QLabel</class> |
389 | <property stdset="1"> | ||
390 | <name>name</name> | ||
432 | <cstring>TextLabelPredTime</cstring> | 391 | <cstring>TextLabelPredTime</cstring> |
433 | </property> | 392 | </property> |
434 | <property name="text"> | 393 | <property stdset="1"> |
394 | <name>text</name> | ||
435 | <string>nan</string> | 395 | <string>nan</string> |
436 | </property> | 396 | </property> |
437 | </widget> | 397 | </widget> |
438 | </grid> | 398 | </grid> |
439 | </widget> | 399 | </widget> |
440 | <widget class="QLayoutWidget" row="2" column="0"> | 400 | <widget row="2" column="0" > |
441 | <property name="name"> | 401 | <class>QLayoutWidget</class> |
402 | <property stdset="1"> | ||
403 | <name>name</name> | ||
442 | <cstring>Layout11</cstring> | 404 | <cstring>Layout11</cstring> |
443 | </property> | 405 | </property> |
444 | <hbox> | 406 | <hbox> |
445 | <property name="name"> | 407 | <property stdset="1"> |
446 | <cstring>unnamed</cstring> | 408 | <name>margin</name> |
447 | </property> | ||
448 | <property name="margin"> | ||
449 | <number>0</number> | 409 | <number>0</number> |
450 | </property> | 410 | </property> |
451 | <property name="spacing"> | 411 | <property stdset="1"> |
412 | <name>spacing</name> | ||
452 | <number>6</number> | 413 | <number>6</number> |
453 | </property> | 414 | </property> |
454 | <widget class="QPushButton"> | 415 | <widget> |
455 | <property name="name"> | 416 | <class>QPushButton</class> |
417 | <property stdset="1"> | ||
418 | <name>name</name> | ||
456 | <cstring>PushButtonSetPredTime</cstring> | 419 | <cstring>PushButtonSetPredTime</cstring> |
457 | </property> | 420 | </property> |
458 | <property name="text"> | 421 | <property stdset="1"> |
422 | <name>text</name> | ||
459 | <string>Set predicted time</string> | 423 | <string>Set predicted time</string> |
460 | </property> | 424 | </property> |
461 | </widget> | 425 | </widget> |
462 | <widget class="QPushButton"> | 426 | <widget> |
463 | <property name="name"> | 427 | <class>QPushButton</class> |
428 | <property stdset="1"> | ||
429 | <name>name</name> | ||
464 | <cstring>PushButtonPredict</cstring> | 430 | <cstring>PushButtonPredict</cstring> |
465 | </property> | 431 | </property> |
466 | <property name="text"> | 432 | <property stdset="1"> |
433 | <name>text</name> | ||
467 | <string>Predict time</string> | 434 | <string>Predict time</string> |
468 | </property> | 435 | </property> |
469 | </widget> | 436 | </widget> |
@@ -471,161 +438,405 @@ | |||
471 | </widget> | 438 | </widget> |
472 | </grid> | 439 | </grid> |
473 | </widget> | 440 | </widget> |
474 | <widget class="QWidget"> | 441 | <widget> |
475 | <property name="name"> | 442 | <class>QWidget</class> |
476 | <cstring>tabNtp</cstring> | 443 | <property stdset="1"> |
444 | <name>name</name> | ||
445 | <cstring>TabSettings</cstring> | ||
477 | </property> | 446 | </property> |
478 | <attribute name="title"> | 447 | <attribute> |
479 | <string>NTP</string> | 448 | <name>title</name> |
449 | <string>Settings</string> | ||
480 | </attribute> | 450 | </attribute> |
481 | <grid> | 451 | <grid> |
482 | <property name="name"> | 452 | <property stdset="1"> |
483 | <cstring>unnamed</cstring> | 453 | <name>margin</name> |
484 | </property> | 454 | <number>2</number> |
485 | <property name="margin"> | ||
486 | <number>1</number> | ||
487 | </property> | 455 | </property> |
488 | <property name="spacing"> | 456 | <property stdset="1"> |
457 | <name>spacing</name> | ||
489 | <number>2</number> | 458 | <number>2</number> |
490 | </property> | 459 | </property> |
491 | <widget class="QPushButton" row="1" column="0"> | 460 | <widget row="0" column="0" > |
492 | <property name="name"> | 461 | <class>QFrame</class> |
493 | <cstring>runNtp</cstring> | 462 | <property stdset="1"> |
494 | </property> | 463 | <name>name</name> |
495 | <property name="text"> | 464 | <cstring>FrameSettings</cstring> |
496 | <string>Get time from network</string> | ||
497 | </property> | ||
498 | </widget> | ||
499 | <widget class="QFrame" row="0" column="0"> | ||
500 | <property name="name"> | ||
501 | <cstring>FrameNtp</cstring> | ||
502 | </property> | 465 | </property> |
503 | <property name="frameShape"> | 466 | <property stdset="1"> |
467 | <name>frameShape</name> | ||
504 | <enum>StyledPanel</enum> | 468 | <enum>StyledPanel</enum> |
505 | </property> | 469 | </property> |
506 | <property name="frameShadow"> | 470 | <property stdset="1"> |
471 | <name>frameShadow</name> | ||
507 | <enum>Raised</enum> | 472 | <enum>Raised</enum> |
508 | </property> | 473 | </property> |
509 | <property name="layoutMargin" stdset="0"> | 474 | <property> |
475 | <name>layoutMargin</name> | ||
510 | </property> | 476 | </property> |
511 | <property name="layoutSpacing" stdset="0"> | 477 | <property> |
478 | <name>layoutSpacing</name> | ||
512 | </property> | 479 | </property> |
513 | <grid> | 480 | <vbox> |
514 | <property name="name"> | 481 | <property stdset="1"> |
515 | <cstring>unnamed</cstring> | 482 | <name>margin</name> |
516 | </property> | 483 | <number>11</number> |
517 | <property name="margin"> | ||
518 | <number>2</number> | ||
519 | </property> | 484 | </property> |
520 | <property name="spacing"> | 485 | <property stdset="1"> |
521 | <number>2</number> | 486 | <name>spacing</name> |
487 | <number>6</number> | ||
522 | </property> | 488 | </property> |
523 | <widget class="QLayoutWidget" row="0" column="0"> | 489 | <widget> |
524 | <property name="name"> | 490 | <class>QLayoutWidget</class> |
525 | <cstring>Layout4</cstring> | 491 | <property stdset="1"> |
492 | <name>name</name> | ||
493 | <cstring>Layout6</cstring> | ||
526 | </property> | 494 | </property> |
527 | <vbox> | 495 | <grid> |
528 | <property name="name"> | 496 | <property stdset="1"> |
529 | <cstring>unnamed</cstring> | 497 | <name>margin</name> |
530 | </property> | ||
531 | <property name="margin"> | ||
532 | <number>0</number> | 498 | <number>0</number> |
533 | </property> | 499 | </property> |
534 | <property name="spacing"> | 500 | <property stdset="1"> |
501 | <name>spacing</name> | ||
535 | <number>6</number> | 502 | <number>6</number> |
536 | </property> | 503 | </property> |
537 | <widget class="QLabel"> | 504 | <widget row="0" column="0" > |
538 | <property name="name"> | 505 | <class>QLabel</class> |
539 | <cstring>TextLabel1</cstring> | 506 | <property stdset="1"> |
507 | <name>name</name> | ||
508 | <cstring>TextLabel7_2</cstring> | ||
540 | </property> | 509 | </property> |
541 | <property name="autoMask"> | 510 | <property stdset="1"> |
542 | <bool>false</bool> | 511 | <name>text</name> |
512 | <string>Use</string> | ||
543 | </property> | 513 | </property> |
544 | <property name="text"> | 514 | </widget> |
545 | <string>Start Time:</string> | 515 | <widget row="0" column="2" > |
516 | <class>QLabel</class> | ||
517 | <property stdset="1"> | ||
518 | <name>name</name> | ||
519 | <cstring>TextLabel2_2</cstring> | ||
520 | </property> | ||
521 | <property stdset="1"> | ||
522 | <name>text</name> | ||
523 | <string>as</string> | ||
546 | </property> | 524 | </property> |
547 | </widget> | 525 | </widget> |
548 | <widget class="QLabel"> | 526 | <widget row="1" column="0" rowspan="1" colspan="2" > |
549 | <property name="name"> | 527 | <class>QLabel</class> |
550 | <cstring>TextLabelStartTime</cstring> | 528 | <property stdset="1"> |
529 | <name>name</name> | ||
530 | <cstring>TextLabel1_3</cstring> | ||
551 | </property> | 531 | </property> |
552 | <property name="text"> | 532 | <property stdset="1"> |
553 | <string>nan</string> | 533 | <name>text</name> |
534 | <string>NTP server to get the time from the network.</string> | ||
535 | </property> | ||
536 | <property stdset="1"> | ||
537 | <name>alignment</name> | ||
538 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
539 | </property> | ||
540 | <property> | ||
541 | <name>wordwrap</name> | ||
554 | </property> | 542 | </property> |
555 | </widget> | 543 | </widget> |
556 | <widget class="QLabel"> | 544 | <widget row="0" column="1" > |
557 | <property name="name"> | 545 | <class>QComboBox</class> |
558 | <cstring>TextLabel3</cstring> | 546 | <property stdset="1"> |
547 | <name>name</name> | ||
548 | <cstring>ComboNtpSrv</cstring> | ||
559 | </property> | 549 | </property> |
560 | <property name="text"> | 550 | <property stdset="1"> |
561 | <string>Time Shift:</string> | 551 | <name>editable</name> |
552 | <bool>true</bool> | ||
562 | </property> | 553 | </property> |
563 | </widget> | 554 | </widget> |
564 | <widget class="QLabel"> | 555 | </grid> |
565 | <property name="name"> | 556 | </widget> |
566 | <cstring>TextLabelTimeShift</cstring> | 557 | <spacer> |
558 | <property> | ||
559 | <name>name</name> | ||
560 | <cstring>Spacer3</cstring> | ||
561 | </property> | ||
562 | <property stdset="1"> | ||
563 | <name>orientation</name> | ||
564 | <enum>Vertical</enum> | ||
565 | </property> | ||
566 | <property stdset="1"> | ||
567 | <name>sizeType</name> | ||
568 | <enum>Minimum</enum> | ||
569 | </property> | ||
570 | <property> | ||
571 | <name>sizeHint</name> | ||
572 | <size> | ||
573 | <width>20</width> | ||
574 | <height>20</height> | ||
575 | </size> | ||
576 | </property> | ||
577 | </spacer> | ||
578 | <widget> | ||
579 | <class>QCheckBox</class> | ||
580 | <property stdset="1"> | ||
581 | <name>name</name> | ||
582 | <cstring>CheckBoxAdvSettings</cstring> | ||
583 | </property> | ||
584 | <property stdset="1"> | ||
585 | <name>text</name> | ||
586 | <string>Advanced settings</string> | ||
587 | </property> | ||
588 | </widget> | ||
589 | <spacer> | ||
590 | <property> | ||
591 | <name>name</name> | ||
592 | <cstring>Spacer4</cstring> | ||
593 | </property> | ||
594 | <property stdset="1"> | ||
595 | <name>orientation</name> | ||
596 | <enum>Vertical</enum> | ||
597 | </property> | ||
598 | <property stdset="1"> | ||
599 | <name>sizeType</name> | ||
600 | <enum>Expanding</enum> | ||
601 | </property> | ||
602 | <property> | ||
603 | <name>sizeHint</name> | ||
604 | <size> | ||
605 | <width>20</width> | ||
606 | <height>20</height> | ||
607 | </size> | ||
608 | </property> | ||
609 | </spacer> | ||
610 | <widget> | ||
611 | <class>Line</class> | ||
612 | <property stdset="1"> | ||
613 | <name>name</name> | ||
614 | <cstring>Line1</cstring> | ||
615 | </property> | ||
616 | <property stdset="1"> | ||
617 | <name>orientation</name> | ||
618 | <enum>Horizontal</enum> | ||
619 | </property> | ||
620 | </widget> | ||
621 | <widget> | ||
622 | <class>QLayoutWidget</class> | ||
623 | <property stdset="1"> | ||
624 | <name>name</name> | ||
625 | <cstring>Layout7_2</cstring> | ||
626 | </property> | ||
627 | <grid> | ||
628 | <property stdset="1"> | ||
629 | <name>margin</name> | ||
630 | <number>0</number> | ||
631 | </property> | ||
632 | <property stdset="1"> | ||
633 | <name>spacing</name> | ||
634 | <number>6</number> | ||
635 | </property> | ||
636 | <widget row="0" column="0" > | ||
637 | <class>QLabel</class> | ||
638 | <property stdset="1"> | ||
639 | <name>name</name> | ||
640 | <cstring>TextLabel1_2_2</cstring> | ||
567 | </property> | 641 | </property> |
568 | <property name="text"> | 642 | <property stdset="1"> |
569 | <string>nan</string> | 643 | <name>sizePolicy</name> |
644 | <sizepolicy> | ||
645 | <hsizetype>1</hsizetype> | ||
646 | <vsizetype>1</vsizetype> | ||
647 | </sizepolicy> | ||
648 | </property> | ||
649 | <property stdset="1"> | ||
650 | <name>text</name> | ||
651 | <string>Wait for </string> | ||
570 | </property> | 652 | </property> |
571 | </widget> | 653 | </widget> |
572 | <widget class="QLabel"> | 654 | <widget row="0" column="2" > |
573 | <property name="name"> | 655 | <class>QLabel</class> |
574 | <cstring>TextLabel5</cstring> | 656 | <property stdset="1"> |
657 | <name>name</name> | ||
658 | <cstring>TextLabel2_3</cstring> | ||
575 | </property> | 659 | </property> |
576 | <property name="text"> | 660 | <property stdset="1"> |
577 | <string>New Time:</string> | 661 | <name>text</name> |
662 | <string>minutes until</string> | ||
578 | </property> | 663 | </property> |
579 | </widget> | 664 | </widget> |
580 | <widget class="QLabel"> | 665 | <widget row="1" column="0" rowspan="1" colspan="3" > |
581 | <property name="name"> | 666 | <class>QLabel</class> |
582 | <cstring>TextLabelNewTime</cstring> | 667 | <property stdset="1"> |
668 | <name>name</name> | ||
669 | <cstring>TextLabel3_3_2</cstring> | ||
583 | </property> | 670 | </property> |
584 | <property name="text"> | 671 | <property stdset="1"> |
585 | <string>nan</string> | 672 | <name>text</name> |
673 | <string>NTP tries to syncronises the clock with the network.</string> | ||
674 | </property> | ||
675 | <property stdset="1"> | ||
676 | <name>alignment</name> | ||
677 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
678 | </property> | ||
679 | <property> | ||
680 | <name>wordwrap</name> | ||
586 | </property> | 681 | </property> |
587 | </widget> | 682 | </widget> |
588 | <spacer> | 683 | <widget row="0" column="1" > |
589 | <property name="name"> | 684 | <class>QSpinBox</class> |
590 | <cstring>Spacer1</cstring> | 685 | <property stdset="1"> |
686 | <name>name</name> | ||
687 | <cstring>SpinBoxNtpDelay</cstring> | ||
591 | </property> | 688 | </property> |
592 | <property name="orientation"> | 689 | <property stdset="1"> |
593 | <enum>Vertical</enum> | 690 | <name>wrapping</name> |
691 | <bool>true</bool> | ||
594 | </property> | 692 | </property> |
595 | <property name="sizeType"> | 693 | <property stdset="1"> |
596 | <enum>Expanding</enum> | 694 | <name>maxValue</name> |
695 | <number>9999999</number> | ||
597 | </property> | 696 | </property> |
598 | <property name="sizeHint"> | 697 | <property stdset="1"> |
599 | <size> | 698 | <name>minValue</name> |
600 | <width>0</width> | 699 | <number>1</number> |
601 | <height>20</height> | ||
602 | </size> | ||
603 | </property> | 700 | </property> |
604 | </spacer> | 701 | <property stdset="1"> |
605 | </vbox> | 702 | <name>value</name> |
703 | <number>1440</number> | ||
704 | </property> | ||
705 | </widget> | ||
706 | </grid> | ||
606 | </widget> | 707 | </widget> |
607 | <widget class="QMultiLineEdit" row="1" column="0"> | 708 | <widget> |
608 | <property name="name"> | 709 | <class>QLayoutWidget</class> |
609 | <cstring>MultiLineEditntpOutPut</cstring> | 710 | <property stdset="1"> |
610 | </property> | 711 | <name>name</name> |
611 | <property name="font"> | 712 | <cstring>Layout7</cstring> |
612 | <font> | ||
613 | <pointsize>7</pointsize> | ||
614 | </font> | ||
615 | </property> | ||
616 | <property name="text"> | ||
617 | <string></string> | ||
618 | </property> | ||
619 | <property name="wordWrap"> | ||
620 | <enum>WidgetWidth</enum> | ||
621 | </property> | 713 | </property> |
714 | <grid> | ||
715 | <property stdset="1"> | ||
716 | <name>margin</name> | ||
717 | <number>0</number> | ||
718 | </property> | ||
719 | <property stdset="1"> | ||
720 | <name>spacing</name> | ||
721 | <number>6</number> | ||
722 | </property> | ||
723 | <widget row="0" column="0" > | ||
724 | <class>QLabel</class> | ||
725 | <property stdset="1"> | ||
726 | <name>name</name> | ||
727 | <cstring>TextLabel1_2</cstring> | ||
728 | </property> | ||
729 | <property stdset="1"> | ||
730 | <name>text</name> | ||
731 | <string>Insure a delay of</string> | ||
732 | </property> | ||
733 | </widget> | ||
734 | <widget row="0" column="2" > | ||
735 | <class>QLabel</class> | ||
736 | <property stdset="1"> | ||
737 | <name>name</name> | ||
738 | <cstring>TextLabel2</cstring> | ||
739 | </property> | ||
740 | <property stdset="1"> | ||
741 | <name>text</name> | ||
742 | <string>minutes until</string> | ||
743 | </property> | ||
744 | </widget> | ||
745 | <widget row="1" column="0" rowspan="1" colspan="3" > | ||
746 | <class>QLabel</class> | ||
747 | <property stdset="1"> | ||
748 | <name>name</name> | ||
749 | <cstring>TextLabel3_3</cstring> | ||
750 | </property> | ||
751 | <property stdset="1"> | ||
752 | <name>text</name> | ||
753 | <string>a new NTP lookup will be used to predict the time.</string> | ||
754 | </property> | ||
755 | <property stdset="1"> | ||
756 | <name>alignment</name> | ||
757 | <set>WordBreak|AlignVCenter|AlignLeft</set> | ||
758 | </property> | ||
759 | <property> | ||
760 | <name>wordwrap</name> | ||
761 | </property> | ||
762 | </widget> | ||
763 | <widget row="0" column="1" > | ||
764 | <class>QSpinBox</class> | ||
765 | <property stdset="1"> | ||
766 | <name>name</name> | ||
767 | <cstring>SpinBoxMinLookupDelay</cstring> | ||
768 | </property> | ||
769 | <property stdset="1"> | ||
770 | <name>wrapping</name> | ||
771 | <bool>true</bool> | ||
772 | </property> | ||
773 | <property stdset="1"> | ||
774 | <name>maxValue</name> | ||
775 | <number>9999999</number> | ||
776 | </property> | ||
777 | <property stdset="1"> | ||
778 | <name>minValue</name> | ||
779 | <number>42</number> | ||
780 | </property> | ||
781 | <property stdset="1"> | ||
782 | <name>value</name> | ||
783 | <number>720</number> | ||
784 | </property> | ||
785 | </widget> | ||
786 | </grid> | ||
622 | </widget> | 787 | </widget> |
623 | </grid> | 788 | </vbox> |
624 | </widget> | 789 | </widget> |
625 | </grid> | 790 | </grid> |
626 | </widget> | 791 | </widget> |
792 | <widget> | ||
793 | <class>QWidget</class> | ||
794 | <property stdset="1"> | ||
795 | <name>name</name> | ||
796 | <cstring>tabManualSetTime</cstring> | ||
797 | </property> | ||
798 | <attribute> | ||
799 | <name>title</name> | ||
800 | <string>Manual</string> | ||
801 | </attribute> | ||
802 | <vbox> | ||
803 | <property stdset="1"> | ||
804 | <name>margin</name> | ||
805 | <number>2</number> | ||
806 | </property> | ||
807 | <property stdset="1"> | ||
808 | <name>spacing</name> | ||
809 | <number>2</number> | ||
810 | </property> | ||
811 | <widget> | ||
812 | <class>QFrame</class> | ||
813 | <property stdset="1"> | ||
814 | <name>name</name> | ||
815 | <cstring>FrameSetTime</cstring> | ||
816 | </property> | ||
817 | <property stdset="1"> | ||
818 | <name>frameShape</name> | ||
819 | <enum>StyledPanel</enum> | ||
820 | </property> | ||
821 | <property stdset="1"> | ||
822 | <name>frameShadow</name> | ||
823 | <enum>Raised</enum> | ||
824 | </property> | ||
825 | </widget> | ||
826 | <widget> | ||
827 | <class>QPushButton</class> | ||
828 | <property stdset="1"> | ||
829 | <name>name</name> | ||
830 | <cstring>PushButtonSetManualTime</cstring> | ||
831 | </property> | ||
832 | <property stdset="1"> | ||
833 | <name>text</name> | ||
834 | <string>Set time</string> | ||
835 | </property> | ||
836 | </widget> | ||
837 | </vbox> | ||
838 | </widget> | ||
627 | </widget> | 839 | </widget> |
628 | </grid> | 840 | </grid> |
629 | </widget> | 841 | </widget> |
630 | <layoutdefaults spacing="6" margin="11"/> | ||
631 | </UI> | 842 | </UI> |