summaryrefslogtreecommitdiffstats
path: root/kpilot/conduits/docconduit/doc-conflictdialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/conduits/docconduit/doc-conflictdialog.cc')
-rw-r--r--kpilot/conduits/docconduit/doc-conflictdialog.cc182
1 files changed, 182 insertions, 0 deletions
diff --git a/kpilot/conduits/docconduit/doc-conflictdialog.cc b/kpilot/conduits/docconduit/doc-conflictdialog.cc
new file mode 100644
index 000000000..7dafd9b66
--- /dev/null
+++ b/kpilot/conduits/docconduit/doc-conflictdialog.cc
@@ -0,0 +1,182 @@
+/* KPilot
+**
+** Copyright (C) 2002 by Reinhold Kainhofer
+**
+*/
+
+/*
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-pim@kde.org
+*/
+
+#include "options.h"
+#include "doc-conflictdialog.moc"
+
+#include <qlabel.h>
+#include <qpushbutton.h>
+#include <qlayout.h>
+#include <qbuttongroup.h>
+#include <kmessagebox.h>
+#include <qtimer.h>
+#include <qtable.h>
+#include <qcombobox.h>
+#include <qscrollview.h>
+
+
+ResolutionDialog::ResolutionDialog( QWidget* parent, const QString& caption, syncInfoList*sinfo, KPilotLink*lnk )
+ : KDialogBase( parent, "resolutionDialog", true, caption, KDialogBase::Ok|KDialogBase::Cancel, KDialogBase::Ok, true), tickleTimer(0L), fHandle(lnk) {
+ FUNCTIONSETUP;
+ syncInfo=sinfo;
+ hasConflicts=false;
+
+ QWidget *page = new QWidget( this );
+ setMainWidget(page);
+ QVBoxLayout *topLayout = new QVBoxLayout( page, 0, spacingHint() );
+
+ // First, insert the texts on top:
+ textLabel1 = new QLabel(i18n("Here is a list of all text files and DOC databases the conduit found. The conduit tried to determine the correct sync direction, but for databases in bold red letters a conflict occurred (i.e. the text was changed both on the desktop and on the handheld). For these databases please specify which version is the current one."), page);
+ textLabel1->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter ) );
+ topLayout->addWidget(textLabel1);
+
+ textLabel2 = new QLabel(i18n("You can also change the sync direction for databases without a conflict." ), page );
+ textLabel2->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter ) );
+ topLayout->addWidget(textLabel2);
+
+ resolutionGroupBox = new QGroupBox(i18n("DOC Databases"), page );
+ QVBoxLayout*playout = new QVBoxLayout(resolutionGroupBox);
+ QScrollView* sv = new QScrollView(resolutionGroupBox);
+ playout->addWidget(sv);
+ sv->setResizePolicy(QScrollView::AutoOneFit);
+ sv->setHScrollBarMode(QScrollView::AlwaysOff);
+ sv->setMargin(5);
+ QFrame* big_box = new QFrame(sv->viewport());
+ sv->addChild(big_box);
+
+
+ resolutionGroupBoxLayout = new QGridLayout( big_box, syncInfo->size(), 3 );
+ resolutionGroupBoxLayout->setAlignment( Qt::AlignTop );
+
+ // Invisible button group for the information buttons to use the same slot for all of them (see Dallheimer's book, page 309f)
+ QButtonGroup *bgroup = new QButtonGroup( this );
+ bgroup->hide();
+ QObject::connect(bgroup, SIGNAL(clicked(int)), this, SLOT(slotInfo(int)));
+
+ if (syncInfo) {
+ DEBUGKPILOT<<"Adding resolution options for the databases "<<endl;
+ syncInfoList::Iterator it;
+ int nr=0;
+ DEBUGKPILOT<<"We're having "<<(*syncInfo).size()<<" entries in the database list"<<endl;
+ for (it=syncInfo->begin(); it!=syncInfo->end(); ++it ) {
+ docSyncInfo si=(*it);
+ conflictEntry cE;
+ cE.index=nr;
+ cE.conflict=(si.direction==eSyncConflict);
+ DEBUGKPILOT<<"Adding "<<si.handheldDB<<" to the conflict resolution dialog"<<endl;
+
+ QString text=si.handheldDB;
+ if (cE.conflict) {
+ text=CSL1("<qt><b><font color=red>")+text+CSL1("</font></b></qt>");
+ DEBUGKPILOT<<"We have a conflict for database "<<si.handheldDB<<endl;
+ hasConflicts=true;
+ }
+ cE.dbname=new QLabel(text, big_box);
+ resolutionGroupBoxLayout->addWidget( cE.dbname, cE.index, 0 );
+
+ cE.resolution=new QComboBox( FALSE, big_box);
+ cE.resolution->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)7,
+ (QSizePolicy::SizeType)0, 0, 0,
+ cE.resolution->sizePolicy().hasHeightForWidth() ) );
+ cE.resolution->clear();
+ cE.resolution->insertItem( i18n( "No Sync" ) );
+ cE.resolution->insertItem( i18n( "Sync Handheld to PC" ) );
+ cE.resolution->insertItem( i18n( "Sync PC to Handheld" ) );
+ cE.resolution->insertItem( i18n( "Delete Both Databases" ) );
+ cE.resolution->setCurrentItem((int)si.direction);
+ resolutionGroupBoxLayout->addWidget( cE.resolution, cE.index, 1);
+
+ cE.info = new QPushButton( i18n("More Info..."), big_box );
+ resolutionGroupBoxLayout->addWidget(cE.info, cE.index, 2);
+ bgroup->insert(cE.info);
+
+ conflictEntries.append(cE);
+ ++nr;
+ }
+ } else {
+ WARNINGKPILOT << "The list of text files is not available to the resolution dialog." << endl;
+ }
+
+
+ topLayout->addWidget( resolutionGroupBox );
+ resize( QSize(600, 480).expandedTo(minimumSizeHint()) );
+
+ if (fHandle) tickleTimer=new QTimer(this, "TickleTimer");
+ if (tickleTimer) {
+ connect( tickleTimer, SIGNAL(timeout()), this, SLOT(_tickle()) );
+ tickleTimer->start( 10000 ); // tickle the palm every 10 seconds to prevent a timeout until the sync is really finished.
+ }
+
+}
+
+/*
+ * Destroys the object and frees any allocated resources
+ */
+ResolutionDialog::~ResolutionDialog()
+{
+ // no need to delete child widgets, Qt does it all for us
+}
+
+/* virtual slot */ void ResolutionDialog::slotOk() {
+ FUNCTIONSETUP;
+ QValueList<conflictEntry>::Iterator ceIt;
+ for (ceIt=conflictEntries.begin(); ceIt!=conflictEntries.end(); ++ceIt) {
+ (*syncInfo)[(*ceIt).index].direction=(eSyncDirectionEnum)((*ceIt).resolution->currentItem());
+ }
+ KDialogBase::slotOk();
+}
+
+QString eTextStatusToString(eTextStatus stat) {
+ switch(stat) {
+ case eStatNone: return i18n("unchanged");
+ case eStatNew: return i18n("new");
+ case eStatChanged: return i18n("changed");
+ case eStatBookmarksChanged: return i18n("only bookmarks changed");
+ case eStatDeleted: return i18n("deleted");
+ case eStatDoesntExist: return i18n("does not exist");
+ default: return i18n("unknown");
+ }
+}
+
+void ResolutionDialog::slotInfo(int index) {
+ FUNCTIONSETUP;
+ conflictEntry cE=conflictEntries[index];
+ int ix=cE.index;
+ if (!syncInfo) return;
+ docSyncInfo si=(*syncInfo)[ix];
+ QString text=i18n("Status of the database %1:\n\n").arg(si.handheldDB);
+ text+=i18n("Handheld: %1\n").arg(eTextStatusToString(si.fPalmStatus));
+ text+=i18n("Desktop: %1\n").arg(eTextStatusToString(si.fPCStatus));
+
+ KMessageBox::information(this, text, i18n("Database information"));
+}
+
+
+void ResolutionDialog::_tickle() {
+ FUNCTIONSETUP;
+ if (fHandle) fHandle->tickle();
+}