summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-10-28 17:59:33 (UTC)
committer zautrix <zautrix>2004-10-28 17:59:33 (UTC)
commita9ca33a6c78026396ff081572e96f0d1e3eb63fa (patch) (side-by-side diff)
tree559ce203ce5adb871f8636a8f2213cf4a472d576
parent5c64eb04c048d7e51f1c71621e1d37c5c0c580a0 (diff)
downloadkdepimpi-a9ca33a6c78026396ff081572e96f0d1e3eb63fa.zip
kdepimpi-a9ca33a6c78026396ff081572e96f0d1e3eb63fa.tar.gz
kdepimpi-a9ca33a6c78026396ff081572e96f0d1e3eb63fa.tar.bz2
showing clcok skew in pisync with warning
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--libkdepim/ksyncmanager.cpp27
1 files changed, 22 insertions, 5 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp
index 9a1f2a9..21af295 100644
--- a/libkdepim/ksyncmanager.cpp
+++ b/libkdepim/ksyncmanager.cpp
@@ -1163,68 +1163,85 @@ void KServerSocket::readClient()
else {
KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password"));
//qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() );
}
}
if ( tokens[0] == "STOP" ) {
//emit endConnect();
end_connect();
}
}
}
void KServerSocket::end_connect()
{
delete mSyncActionDialog;
mSyncActionDialog = 0;
}
void KServerSocket::send_file()
{
//qDebug("MainWindow::sendFile(QSocket* s) ");
if ( mSyncActionDialog )
delete mSyncActionDialog;
mSyncActionDialog = new QDialog ( 0, "input-dialog", true );
mSyncActionDialog->setCaption(i18n("Received sync request"));
QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog );
+ label->setAlignment ( Qt::AlignHCenter );
QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog );
lay->addWidget( label);
lay->setMargin(7);
lay->setSpacing(7);
if ( KSyncManager::mRequestedSyncEvent.isValid() ) {
int secs = QDateTime::currentDateTime().secsTo( KSyncManager::mRequestedSyncEvent );
- //if ( secs > 30 )
- if ( true )
+ if ( secs < 0 )
+ secs = secs * (-1);
+ if ( secs > 30 )
+ //if ( true )
{
QString warning = i18n("Clock skew of\nsyncing devices\nis %1 seconds!").arg( secs );
QLabel* label = new QLabel( warning, mSyncActionDialog );
- if ( secs > 600 )
+ label->setAlignment ( Qt::AlignHCenter );
+ lay->addWidget( label);
+ if ( secs > 180 )
{
+ if ( secs > 300 ) {
+ if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(0, i18n("The clocks of the syncing\ndevices have a difference\n of more than 5 minutes.\nPlease adjust your clocks.\n<b>You may get wrong syncing results!<\b>\nPlease confirm synchronization!"), i18n("High clock skew!"),i18n("Synchronize!"))) {
+ qDebug("cancelled ");
+ return ;
+ }
+ }
QFont f = label->font();
+ f.setPointSize ( f.pointSize() *2 );
f. setBold (true );
- f.setPointSize ( f.pointSize() + 10);
+ QLabel* label = new QLabel( warning, mSyncActionDialog );
label->setFont( f );
- }
+ warning = i18n("ADJUST\nYOUR\nCLOCKS!");
+ label->setText( warning );
+ label->setAlignment ( Qt::AlignHCenter );
lay->addWidget( label);
+ mSyncActionDialog->setFixedSize( 230, 300);
+ } else {
mSyncActionDialog->setFixedSize( 230, 200);
+ }
} else {
mSyncActionDialog->setFixedSize( 230, 120);
}
} else
mSyncActionDialog->setFixedSize( 230, 120);
mSyncActionDialog->show();
mSyncActionDialog->raise();
emit request_file();
qApp->processEvents();
QString fileName = mFileName;
QFile file( fileName );
if (!file.open( IO_ReadOnly ) ) {
delete mSyncActionDialog;
mSyncActionDialog = 0;
qDebug("KSS::error open file ");
mSocket->close();
if ( mSocket->state() == QSocket::Idle )
QTimer::singleShot( 10, this , SLOT ( discardClient()));
return ;
}
mSyncActionDialog->setCaption( i18n("Sending file...") );
QTextStream ts( &file );
ts.setEncoding( QTextStream::Latin1 );