summaryrefslogtreecommitdiffstats
path: root/tderesources/birthdays/resourcekabcconfig.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-09-03 20:02:55 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-09-03 21:02:00 +0200
commit533bad2a1503973aaf8186691422c2eda91d02d4 (patch)
treef7e52f62416048859aa9bde8425e20aac0e7c669 /tderesources/birthdays/resourcekabcconfig.cpp
parent8144d5434bbd1c4448a37695aed6ad3d348043d8 (diff)
downloadtdepim-533bad2a1503973aaf8186691422c2eda91d02d4.tar.gz
tdepim-533bad2a1503973aaf8186691422c2eda91d02d4.zip
Additional k => tde renaming and fixes
Diffstat (limited to 'tderesources/birthdays/resourcekabcconfig.cpp')
-rw-r--r--tderesources/birthdays/resourcekabcconfig.cpp135
1 files changed, 0 insertions, 135 deletions
diff --git a/tderesources/birthdays/resourcekabcconfig.cpp b/tderesources/birthdays/resourcekabcconfig.cpp
deleted file mode 100644
index 6bead14b5..000000000
--- a/tderesources/birthdays/resourcekabcconfig.cpp
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- 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 <tdelocale.h>
-
-#include "resourcekabc.h"
-#include "resourcekabcconfig.h"
-
-using namespace KCal;
-
-ResourceTDEABCConfig::ResourceTDEABCConfig( 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 TDEListView( 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 ResourceTDEABCConfig::loadSettings( KRES::Resource *resource )
-{
- ResourceTDEABC *res = static_cast<ResourceTDEABC *>( 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: ResourceTDEABCConfig::loadSettings(): no ResourceTDEABC, cast failed" << endl;
- }
-}
-
-void ResourceTDEABCConfig::saveSettings( KRES::Resource *resource )
-{
- ResourceTDEABC *res = static_cast<ResourceTDEABC *>( 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: ResourceTDEABCConfig::saveSettings(): no ResourceTDEABC, cast failed" << endl;
- }
-}
-
-void ResourceTDEABCConfig::alarmClicked()
-{
- mAlarmTimeEdit->setDisabled(!mAlarm->isChecked());
- mALabel->setDisabled(!mAlarm->isChecked());
-}
-
-#include "resourcekabcconfig.moc"