From b363d2579af0a11b77e698aed2e1021c2233b644 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:50 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kresources/slox/kcalresourcesloxconfig.cpp | 145 ----------------------------- 1 file changed, 145 deletions(-) delete mode 100644 kresources/slox/kcalresourcesloxconfig.cpp (limited to 'kresources/slox/kcalresourcesloxconfig.cpp') diff --git a/kresources/slox/kcalresourcesloxconfig.cpp b/kresources/slox/kcalresourcesloxconfig.cpp deleted file mode 100644 index e09cf85c1..000000000 --- a/kresources/slox/kcalresourcesloxconfig.cpp +++ /dev/null @@ -1,145 +0,0 @@ -/* - This file is part of tdepim. - - Copyright (c) 2004 Cornelius Schumacher - - 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 - -#include -#include -#include - -#include -#include -#include -#include -#include - -#include - -#include "kcalresourceslox.h" -#include "kcalsloxprefs.h" -#include "sloxfolder.h" -#include "sloxfolderdialog.h" -#include "sloxfoldermanager.h" - -#include "kcalresourcesloxconfig.h" - -KCalResourceSloxConfig::KCalResourceSloxConfig( TQWidget* parent, const char* name ) : - KRES::ConfigWidget( parent, name ), mRes( 0 ) -{ - resize( 245, 115 ); - TQGridLayout *mainLayout = new TQGridLayout( this, 6, 2, KDialog::spacingHint(), KDialog::spacingHint() ); - - TQLabel *label = new TQLabel( i18n( "Download from:" ), this ); - - mDownloadUrl = new KURLRequester( this ); - mDownloadUrl->setMode( KFile::File ); - mainLayout->addWidget( label, 1, 0 ); - mainLayout->addWidget( mDownloadUrl, 1, 1 ); - - label = new TQLabel( i18n("User:"), this ); - mainLayout->addWidget( label, 2, 0 ); - - mUserEdit = new KLineEdit( this ); - mainLayout->addWidget( mUserEdit, 2, 1 ); - - label = new TQLabel( i18n("Password:"), this ); - mainLayout->addWidget( label, 3, 0 ); - - mPasswordEdit = new KLineEdit( this ); - mainLayout->addWidget( mPasswordEdit, 3, 1 ); - mPasswordEdit->setEchoMode( KLineEdit::Password ); - - mLastSyncCheck = new TQCheckBox( i18n("Only load data since last sync"), - this ); - mainLayout->addMultiCellWidget( mLastSyncCheck, 4, 4, 0, 1 ); - - mCalButton = new KPushButton( i18n("Calendar Folder..."), this ); - mainLayout->addWidget( mCalButton, 5, 0 ); - connect( mCalButton, TQT_SIGNAL( clicked() ), TQT_SLOT( selectCalendarFolder() ) ); - - mTaskButton = new KPushButton( i18n("Task Folder..."), this ); - mainLayout->addWidget( mTaskButton, 5, 1 ); - connect( mTaskButton, TQT_SIGNAL( clicked() ), TQT_SLOT( selectTaskFolder() ) ); - - mReloadConfig = new KCal::ResourceCachedReloadConfig( this ); - mainLayout->addMultiCellWidget( mReloadConfig, 6, 6, 0, 1 ); - - mSaveConfig = new KCal::ResourceCachedSaveConfig( this ); - mainLayout->addMultiCellWidget( mSaveConfig, 7, 7, 0, 1 ); -} - -void KCalResourceSloxConfig::loadSettings( KRES::Resource *resource ) -{ - KCalResourceSlox *res = static_cast( resource ); - mRes = res; - if ( mRes->resType() == "slox" ) { // we don't have folder selection for SLOX - mCalButton->setEnabled( false ); - mTaskButton->setEnabled( false ); - } - if ( res ) { - mDownloadUrl->setURL( res->prefs()->url() ); - mLastSyncCheck->setChecked( res->prefs()->useLastSync() ); - mUserEdit->setText( res->prefs()->user() ); - mPasswordEdit->setText( res->prefs()->password() ); - mCalendarFolderId = res->prefs()->calendarFolderId(); - mTaskFolderId = res->prefs()->taskFolderId(); - mReloadConfig->loadSettings( res ); - mSaveConfig->loadSettings( res ); - } else { - kdError(5700) << "KCalResourceSloxConfig::loadSettings(): no KCalResourceSlox, cast failed" << endl; - } -} - -void KCalResourceSloxConfig::saveSettings( KRES::Resource *resource ) -{ - KCalResourceSlox *res = static_cast( resource ); - if ( res ) { - res->prefs()->setUrl( mDownloadUrl->url() ); - res->prefs()->setUseLastSync( mLastSyncCheck->isChecked() ); - res->prefs()->setUser( mUserEdit->text() ); - res->prefs()->setPassword( mPasswordEdit->text() ); - res->prefs()->setCalendarFolderId( mCalendarFolderId ); - res->prefs()->setTaskFolderId( mTaskFolderId ); - mReloadConfig->saveSettings( res ); - mSaveConfig->saveSettings( res ); - } else { - kdError(5700) << "KCalResourceSloxConfig::saveSettings(): no KCalResourceSlox, cast failed" << endl; - } -} - -void KCalResourceSloxConfig::selectCalendarFolder() -{ - SloxFolderManager *manager = new SloxFolderManager( mRes, mDownloadUrl->url() ); - SloxFolderDialog *dialog = new SloxFolderDialog( manager, ::Calendar, this ); - dialog->setSelectedFolder( mCalendarFolderId ); - if ( dialog->exec() == TQDialog::Accepted ) - mCalendarFolderId = dialog->selectedFolder(); -} - -void KCalResourceSloxConfig::selectTaskFolder( ) -{ - SloxFolderManager *manager = new SloxFolderManager( mRes, mDownloadUrl->url() ); - SloxFolderDialog *dialog = new SloxFolderDialog( manager, Tasks, this ); - dialog->setSelectedFolder( mTaskFolderId ); - if ( dialog->exec() == TQDialog::Accepted ) - mTaskFolderId = dialog->selectedFolder(); -} - -#include "kcalresourcesloxconfig.moc" -- cgit v1.2.1