summaryrefslogtreecommitdiffstats
path: root/kompare/kompareurldialog.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbd9e6617827818fd043452c08c606f07b78014a0 (patch)
tree425bb4c3168f9c02f10150f235d2cb998dcc6108 /kompare/kompareurldialog.cpp
downloadtdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz
tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kompare/kompareurldialog.cpp')
-rw-r--r--kompare/kompareurldialog.cpp143
1 files changed, 143 insertions, 0 deletions
diff --git a/kompare/kompareurldialog.cpp b/kompare/kompareurldialog.cpp
new file mode 100644
index 00000000..4630cd18
--- /dev/null
+++ b/kompare/kompareurldialog.cpp
@@ -0,0 +1,143 @@
+/***************************************************************************
+ comparedialog.cpp - description
+ -------------------
+ begin : Sun Mar 4 2001
+ copyright : (C) 2001-2004 Otto Bruggeman
+ (C) 2001-2003 John Firebaugh
+ email : otto.bruggeman@home.nl
+ jfirebaugh@kde.org
+****************************************************************************/
+
+/***************************************************************************
+**
+** 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.
+**
+***************************************************************************/
+
+#include <qvbox.h>
+
+#include <kapplication.h>
+#include <klocale.h>
+#include <kurlrequester.h>
+
+#include "diffpage.h"
+#include "diffsettings.h"
+#include "filespage.h"
+#include "filessettings.h"
+#include "viewpage.h"
+#include "viewsettings.h"
+
+#include "kompareurldialog.h"
+
+KompareURLDialog::KompareURLDialog( QWidget *parent, const char *name )
+ : KDialogBase( IconList, "", Ok|Cancel, Ok, parent, name )
+{
+ setIconListAllVisible(true);
+
+ KConfig* cfg = kapp->config();
+ QVBox* filesBox = addVBoxPage( i18n( "Files" ), i18n( "Here you can enter the files you want to compare." ) );
+ m_filesPage = new FilesPage( filesBox );
+ m_filesSettings = new FilesSettings( this );
+ m_filesSettings->loadSettings( cfg );
+ m_filesPage->setSettings( m_filesSettings );
+
+ QVBox* diffBox = addVBoxPage( i18n( "Diff" ), i18n( "Here you can change the options for comparing the files." ) );
+ m_diffPage = new DiffPage( diffBox );
+ m_diffSettings = new DiffSettings( this );
+ m_diffSettings->loadSettings( cfg );
+ m_diffPage->setSettings( m_diffSettings );
+
+ QVBox* viewBox = addVBoxPage( i18n( "Appearance" ), i18n( "Here you can change the options for the view." ) );
+ m_viewPage = new ViewPage( viewBox );
+ m_viewSettings = new ViewSettings( this );
+ m_viewSettings->loadSettings( cfg );
+ m_viewPage->setSettings( m_viewSettings );
+
+ adjustSize();
+
+ enableButtonSeparator( true );
+
+ connect( m_filesPage->firstURLRequester(), SIGNAL( textChanged( const QString& ) ),
+ this, SLOT( slotEnableOk() ) );
+ connect( m_filesPage->secondURLRequester(), SIGNAL( textChanged( const QString& ) ),
+ this, SLOT( slotEnableOk() ) );
+
+ slotEnableOk();
+}
+
+KompareURLDialog::~KompareURLDialog()
+{
+}
+
+void KompareURLDialog::slotOk()
+{
+ m_filesPage->setURLsInComboBoxes();
+
+ KConfig* cfg = kapp->config();
+
+ m_filesPage->apply();
+ m_diffPage->apply();
+ m_viewPage->apply();
+
+ m_filesSettings->saveSettings( cfg );
+ m_diffSettings->saveSettings( cfg );
+ m_viewSettings->saveSettings( cfg );
+
+ cfg->sync();
+
+ KDialogBase::slotOk();
+}
+
+void KompareURLDialog::slotEnableOk()
+{
+ enableButtonOK( !m_filesPage->firstURLRequester()->url().isEmpty() &&
+ !m_filesPage->secondURLRequester()->url().isEmpty() );
+}
+
+KURL KompareURLDialog::getFirstURL() const
+{
+ return KURL( m_filesPage->firstURLRequester()->url() );
+}
+
+KURL KompareURLDialog::getSecondURL() const
+{
+ return KURL( m_filesPage->secondURLRequester()->url() );
+}
+
+QString KompareURLDialog::encoding() const
+{
+ return m_filesPage->encoding();
+}
+
+void KompareURLDialog::setFirstGroupBoxTitle( const QString& title )
+{
+ m_filesPage->setFirstGroupBoxTitle( title );
+}
+
+void KompareURLDialog::setSecondGroupBoxTitle( const QString& title )
+{
+ m_filesPage->setSecondGroupBoxTitle( title );
+}
+
+void KompareURLDialog::setGroup( const QString& groupName )
+{
+ m_filesSettings->setGroup( groupName );
+ m_filesSettings->loadSettings( kapp->config() );
+ m_filesPage->setSettings( m_filesSettings );
+}
+
+void KompareURLDialog::setFirstURLRequesterMode( unsigned int mode )
+{
+ m_filesPage->setFirstURLRequesterMode( mode );
+}
+
+void KompareURLDialog::setSecondURLRequesterMode( unsigned int mode )
+{
+ m_filesPage->setSecondURLRequesterMode( mode );
+}
+
+#include "kompareurldialog.moc"
+