summaryrefslogtreecommitdiffstats
path: root/kresources/birthdays/resourcekabcconfig.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/birthdays/resourcekabcconfig.cpp
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/birthdays/resourcekabcconfig.cpp')
-rw-r--r--kresources/birthdays/resourcekabcconfig.cpp135
1 files changed, 0 insertions, 135 deletions
diff --git a/kresources/birthdays/resourcekabcconfig.cpp b/kresources/birthdays/resourcekabcconfig.cpp
deleted file mode 100644
index 2f7671dc7..000000000
--- a/kresources/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 <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"