diff options
Diffstat (limited to 'tderesources/birthdays/resourcekabcconfig.cpp')
-rw-r--r-- | tderesources/birthdays/resourcekabcconfig.cpp | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/tderesources/birthdays/resourcekabcconfig.cpp b/tderesources/birthdays/resourcekabcconfig.cpp new file mode 100644 index 000000000..2f7671dc7 --- /dev/null +++ b/tderesources/birthdays/resourcekabcconfig.cpp @@ -0,0 +1,135 @@ +/* + This file is part of libkcal. + + Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include <typeinfo> + +#include <tqheader.h> +#include <tqlayout.h> + +#include <kabprefs.h> +#include <kdebug.h> +#include <klocale.h> + +#include "resourcekabc.h" +#include "resourcekabcconfig.h" + +using namespace KCal; + +ResourceKABCConfig::ResourceKABCConfig( TQWidget* parent, const char* name ) + : KRES::ConfigWidget( parent, name ) +{ + TQGridLayout *topLayout = new TQGridLayout( this, 5, 1, 11, 6 ); + + mAlarm = new TQCheckBox(i18n("Set reminder"), this); + topLayout->addWidget(mAlarm, 0, 0); + TQBoxLayout *alarmLayout = new TQHBoxLayout(topLayout); + + mALabel = new TQLabel(i18n("Reminder before (in days):"), this); + alarmLayout->addWidget(mALabel); + mAlarmTimeEdit = new KRestrictedLine(this, "alarmTimeEdit", "1234567890"); + mAlarmTimeEdit->setText("0"); + alarmLayout->addWidget(mAlarmTimeEdit); + + TQFrame *line = new TQFrame( this ); + line->setFrameStyle( TQFrame::Sunken | TQFrame::HLine ); + topLayout->addMultiCellWidget( line, 2, 2, 0, 1 ); + + mUseCategories = new TQCheckBox( i18n( "Filter by categories" ), this ); + topLayout->addMultiCellWidget( mUseCategories, 3, 3, 0, 1 ); + + mCategoryView = new KListView( this ); + mCategoryView->addColumn( "" ); + mCategoryView->header()->hide(); + mCategoryView->setEnabled( false ); + topLayout->addMultiCellWidget( mCategoryView, 4, 4, 0, 1 ); + + connect( mUseCategories, TQT_SIGNAL( toggled( bool ) ), + mCategoryView, TQT_SLOT( setEnabled( bool ) ) ); + + mAlarmTimeEdit->setDisabled(true); + mALabel->setDisabled(true); + + connect(mAlarm, TQT_SIGNAL(clicked()), TQT_SLOT(alarmClicked())); + + setReadOnly( true ); + + KABPrefs *prefs = KABPrefs::instance(); + const TQStringList categories = prefs->customCategories(); + TQStringList::ConstIterator it; + for ( it = categories.begin(); it != categories.end(); ++it ) + new TQCheckListItem( mCategoryView, *it, TQCheckListItem::CheckBox ); +} + +void ResourceKABCConfig::loadSettings( KRES::Resource *resource ) +{ + ResourceKABC *res = static_cast<ResourceKABC *>( resource ); + if ( res ) { + mAlarm->setChecked( res->alarm() ); + TQString days; + mAlarmTimeEdit->setText( days.setNum(res->alarmDays()) ); + + mAlarmTimeEdit->setEnabled( res->alarm() ); + mALabel->setEnabled( res->alarm() ); + + const TQStringList categories = res->categories(); + TQListViewItemIterator it( mCategoryView ); + while ( it.current() ) { + if ( categories.contains( it.current()->text( 0 ) ) ) { + TQCheckListItem *item = static_cast<TQCheckListItem*>( it.current() ); + item->setOn( true ); + } + ++it; + } + + mUseCategories->setChecked( res->useCategories() ); + } else { + kdDebug(5700) << "ERROR: ResourceKABCConfig::loadSettings(): no ResourceKABC, cast failed" << endl; + } +} + +void ResourceKABCConfig::saveSettings( KRES::Resource *resource ) +{ + ResourceKABC *res = static_cast<ResourceKABC *>( resource ); + if ( res ) { + res->setAlarm( mAlarm->isChecked() ); + res->setAlarmDays( mAlarmTimeEdit->text().toInt() ); + setReadOnly( true ); + + TQStringList categories; + TQListViewItemIterator it( mCategoryView, TQListViewItemIterator::Checked ); + while ( it.current() ) { + categories.append( it.current()->text( 0 ) ); + ++it; + } + res->setCategories( categories ); + res->setUseCategories( mUseCategories->isChecked() ); + } else { + kdDebug(5700) << "ERROR: ResourceKABCConfig::saveSettings(): no ResourceKABC, cast failed" << endl; + } +} + +void ResourceKABCConfig::alarmClicked() +{ + mAlarmTimeEdit->setDisabled(!mAlarm->isChecked()); + mALabel->setDisabled(!mAlarm->isChecked()); +} + +#include "resourcekabcconfig.moc" |