summaryrefslogtreecommitdiffstats
path: root/korganizer/plugins/exchange/exchangeconfig.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
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /korganizer/plugins/exchange/exchangeconfig.cpp
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.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/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/plugins/exchange/exchangeconfig.cpp')
-rw-r--r--korganizer/plugins/exchange/exchangeconfig.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/korganizer/plugins/exchange/exchangeconfig.cpp b/korganizer/plugins/exchange/exchangeconfig.cpp
new file mode 100644
index 00000000..e75265ca
--- /dev/null
+++ b/korganizer/plugins/exchange/exchangeconfig.cpp
@@ -0,0 +1,135 @@
+/*
+ This file is part of KOrganizer.
+ Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.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.
+
+ 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; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+#include <qlayout.h>
+#include <qlabel.h>
+#include <qcombobox.h>
+
+#include <kapplication.h>
+#include <kconfig.h>
+#include <klocale.h>
+#include <kdebug.h>
+#include <kmessagebox.h>
+
+#include <exchangeaccount.h>
+
+#include "exchangeconfig.h"
+
+ExchangeConfig::ExchangeConfig( KPIM::ExchangeAccount* account, QWidget* parent )
+ : KDialogBase(Plain,i18n("Exchange Plugin"),Ok|Cancel,Ok,parent)
+{
+ mAccount = account;
+
+ kdDebug(5850) << "Creating ExchangeConfig with account: " <<
+ account->host() << ":" << account->account() << endl;
+
+ QFrame *topFrame = plainPage();
+ QGridLayout *topLayout = new QGridLayout( topFrame, 5, 3, 3 );
+
+ m_host = new KLineEdit( mAccount->host(), topFrame );
+ topLayout->addWidget( new QLabel( i18n( "Exchange server:" ), topFrame ), 0, 0 );
+ topLayout->addWidget( m_host, 0, 1 );
+
+ m_port = new KLineEdit( mAccount->port(), topFrame );
+ topLayout->addWidget( new QLabel( i18n( "Port:" ), topFrame ), 1, 0 );
+ topLayout->addWidget( m_port, 1, 1 );
+
+ m_user = new KLineEdit( mAccount->account(), topFrame );
+ topLayout->addWidget( new QLabel( i18n( "User:" ), topFrame ), 2, 0 );
+ topLayout->addWidget( m_user, 2, 1 );
+ connect( m_user, SIGNAL(textChanged(const QString&)), this, SLOT(slotUserChanged(const QString&)) );
+
+ m_password = new KLineEdit( mAccount->password(), topFrame );
+ topLayout->addWidget( new QLabel( i18n( "Password:" ), topFrame ), 3, 0 );
+ topLayout->addWidget( m_password, 3, 1 );
+ m_password->setEchoMode( QLineEdit::Password );
+
+ m_autoMailbox = new QCheckBox( i18n( "Determine mailbox automatically" ), topFrame );
+ topLayout->addMultiCellWidget( m_autoMailbox, 4, 4, 0, 1 );
+ connect( m_autoMailbox, SIGNAL(toggled(bool)), this, SLOT(slotToggleAuto(bool)) );
+
+ m_mailbox= new KLineEdit( mAccount->mailbox(), topFrame );
+ topLayout->addWidget( new QLabel( i18n( "Mailbox URL:" ), topFrame ), 5, 0 );
+ topLayout->addWidget( m_mailbox, 5, 1 );
+
+ m_tryFindMailbox = new QPushButton( "&Find", topFrame );
+ topLayout->addWidget( m_tryFindMailbox, 5, 2 );
+ connect( m_tryFindMailbox, SIGNAL(clicked()), this, SLOT(slotFindClicked()) );
+
+ kapp->config()->setGroup( "Calendar/Exchange Plugin" );
+ bool autoChecked = kapp->config()->readBoolEntry( "auto-mailbox", true );
+ m_autoMailbox->setChecked( autoChecked );
+}
+
+ExchangeConfig::~ExchangeConfig()
+{
+}
+
+void ExchangeConfig::slotToggleAuto( bool on )
+{
+ m_mailbox->setEnabled( ! on );
+// m_tryFindMailbox->setEnabled( ! on );
+// if ( on ) {
+// m_mailbox->setText( "webdav://" + m_host->text() + "/exchange/" + m_user->text() );
+// }
+}
+
+void ExchangeConfig::slotUserChanged( const QString& /*text*/ )
+{
+// if ( m_mailboxEqualsUser->isChecked() ) {
+// m_mailbox->setText( "webdav://" + m_host->text() + "/exchange/" + text );
+// }
+}
+
+void ExchangeConfig::slotOk()
+{
+ if ( m_autoMailbox->isChecked() ) {
+ QString mailbox = mAccount->tryFindMailbox( m_host->text(), m_port->text(), m_user->text(), m_password->text() );
+ if ( mailbox.isNull() ) {
+ kdWarning() << "Could not find Exchange mailbox URL, incomplete settings!"<< endl;
+ KMessageBox::sorry( this, "Could not determine mailbox URL" );
+ return; // Do not accept
+ } else {
+ mAccount->setMailbox( mailbox );
+ }
+ } else {
+ mAccount->setMailbox( m_mailbox->text() );
+ }
+ mAccount->setHost( m_host->text() );
+ mAccount->setPort( m_port->text() );
+ mAccount->setAccount( m_user->text() );
+ mAccount->setPassword( m_password->text() );
+
+ kapp->config()->setGroup( "Calendar/Exchange Plugin" );
+ kapp->config()->writeEntry( "auto-mailbox", m_autoMailbox->isChecked() );
+
+ accept();
+}
+
+void ExchangeConfig::slotFindClicked()
+{
+ QString mailbox = mAccount->tryFindMailbox( m_host->text(), m_port->text(), m_user->text(), m_password->text() );
+ if ( mailbox.isNull() ) {
+ KMessageBox::sorry( this, "Could not determine mailbox URL" );
+ } else {
+ m_mailbox->setText( mailbox );
+ }
+}
+
+#include "exchangeconfig.moc"