diff options
Diffstat (limited to 'kaddressbook/filtereditdialog.cpp')
-rw-r--r-- | kaddressbook/filtereditdialog.cpp | 279 |
1 files changed, 279 insertions, 0 deletions
diff --git a/kaddressbook/filtereditdialog.cpp b/kaddressbook/filtereditdialog.cpp new file mode 100644 index 000000000..40c0f077c --- /dev/null +++ b/kaddressbook/filtereditdialog.cpp @@ -0,0 +1,279 @@ +/* + This file is part of KAddressBook. + Copyright (c) 2002 Mike Pilone <mpilone@slac.com> + + 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. + + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +*/ + +#include <qbuttongroup.h> +#include <qhbox.h> +#include <qlabel.h> +#include <qlayout.h> +#include <qpushbutton.h> +#include <qradiobutton.h> +#include <qregexp.h> +#include <qstring.h> +#include <qtoolbutton.h> +#include <qtooltip.h> +#include <qwidget.h> + +#include <kapplication.h> +#include <kbuttonbox.h> +#include <kdebug.h> +#include <kiconloader.h> +#include <klineedit.h> +#include <klistbox.h> +#include <klistview.h> +#include <klocale.h> + +#include "kabprefs.h" +#include "filtereditdialog.h" + +FilterEditDialog::FilterEditDialog( QWidget *parent, const char *name ) + : KDialogBase( Plain, i18n( "Edit Address Book Filter" ), + Help | Ok | Cancel, Ok, parent, name, false, true ) +{ + initGUI(); + + const QStringList cats = KABPrefs::instance()->customCategories(); + + QStringList::ConstIterator it; + for ( it = cats.begin(); it != cats.end(); ++it ) + mCategoriesView->insertItem( new QCheckListItem( mCategoriesView, *it, QCheckListItem::CheckBox ) ); + + filterNameTextChanged( mNameEdit->text() ); +} + +FilterEditDialog::~FilterEditDialog() +{ +} + +void FilterEditDialog::setFilter( const Filter &filter ) +{ + mNameEdit->setText( filter.name() ); + + QStringList categories = filter.categories(); + QListViewItem *item = mCategoriesView->firstChild(); + while ( item != 0 ) { + if ( categories.contains( item->text( 0 ) ) ) { + QCheckListItem *checkItem = static_cast<QCheckListItem*>( item ); + checkItem->setOn( true ); + } + + item = item->nextSibling(); + } + + if ( filter.matchRule() == Filter::Matching ) + mMatchRuleGroup->setButton( 0 ); + else + mMatchRuleGroup->setButton( 1 ); +} + +Filter FilterEditDialog::filter() +{ + Filter filter; + + filter.setName( mNameEdit->text() ); + + QStringList categories; + QListViewItem *item = mCategoriesView->firstChild(); + while ( item != 0 ) { + QCheckListItem *checkItem = static_cast<QCheckListItem*>( item ); + if ( checkItem->isOn() ) + categories.append( item->text( 0 ) ); + + item = item->nextSibling(); + } + filter.setCategories( categories ); + + if ( mMatchRuleGroup->find( 0 )->isOn() ) + filter.setMatchRule( Filter::Matching ); + else + filter.setMatchRule( Filter::NotMatching ); + + return filter; +} + +void FilterEditDialog::initGUI() +{ + resize( 490, 300 ); + + QWidget *page = plainPage(); + QLabel *label; + + QGridLayout *topLayout = new QGridLayout( page, 3, 2, 0, spacingHint() ); + + label = new QLabel( i18n( "Name:" ), page ); + mNameEdit = new KLineEdit( page ); + mNameEdit->setFocus(); + topLayout->addWidget( label, 0, 0 ); + topLayout->addWidget( mNameEdit, 0, 1 ); + connect( mNameEdit, SIGNAL( textChanged( const QString& ) ), + SLOT( filterNameTextChanged( const QString&) ) ); + + mCategoriesView = new KListView( page ); + mCategoriesView->addColumn( i18n( "Category" ) ); + mCategoriesView->setFullWidth( true ); + topLayout->addMultiCellWidget( mCategoriesView, 1, 1, 0, 1 ); + + mMatchRuleGroup = new QButtonGroup( page ); + mMatchRuleGroup->setExclusive( true ); + + QBoxLayout *gbLayout = new QVBoxLayout( mMatchRuleGroup ); + gbLayout->setSpacing( KDialog::spacingHint() ); + gbLayout->setMargin( KDialog::marginHint() ); + + QRadioButton *radio = new QRadioButton( i18n( "Show only contacts matching the selected categories" ), mMatchRuleGroup ); + radio->setChecked( true ); + mMatchRuleGroup->insert( radio ); + gbLayout->addWidget( radio ); + + radio = new QRadioButton( i18n( "Show all contacts except those matching the selected categories" ), mMatchRuleGroup ); + mMatchRuleGroup->insert( radio ); + gbLayout->addWidget( radio ); + + topLayout->addMultiCellWidget( mMatchRuleGroup, 2, 2, 0, 1 ); +} + +void FilterEditDialog::filterNameTextChanged( const QString &text ) +{ + enableButtonOK( !text.isEmpty() ); +} + +void FilterEditDialog::slotHelp() +{ + kapp->invokeHelp( "using-filters" ); +} + +FilterDialog::FilterDialog( QWidget *parent, const char *name ) + : KDialogBase( Plain, i18n( "Edit Address Book Filters" ), + Ok | Cancel, Ok, parent, name, false, true ) +{ + initGUI(); +} + +FilterDialog::~FilterDialog() +{ +} + +void FilterDialog::setFilters( const Filter::List &list ) +{ + mFilterList.clear(); + mInternalFilterList.clear(); + + Filter::List::ConstIterator it; + for ( it = list.begin(); it != list.end(); ++it ) { + if ( (*it).isInternal() ) + mInternalFilterList.append( *it ); + else + mFilterList.append( *it ); + } + + refresh(); +} + +Filter::List FilterDialog::filters() const +{ + Filter::List list = mFilterList + mInternalFilterList; + return list; +} + +void FilterDialog::add() +{ + FilterEditDialog dlg( this ); + + if ( dlg.exec() ) + mFilterList.append( dlg.filter() ); + + refresh(); + + mFilterListBox->setCurrentItem( mFilterListBox->count() - 1 ); +} + +void FilterDialog::edit() +{ + FilterEditDialog dlg( this ); + + uint pos = mFilterListBox->currentItem(); + + dlg.setFilter( mFilterList[ pos ] ); + + if ( dlg.exec() ) { + mFilterList.remove( mFilterList.at( pos ) ); + mFilterList.insert( mFilterList.at( pos ), dlg.filter() ); + } + + refresh(); + + mFilterListBox->setCurrentItem( pos ); +} + +void FilterDialog::remove() +{ + mFilterList.remove( mFilterList.at( mFilterListBox->currentItem() ) ); + + selectionChanged( 0 ); + + refresh(); +} + +void FilterDialog::refresh() +{ + mFilterListBox->clear(); + + Filter::List::ConstIterator it; + for ( it = mFilterList.begin(); it != mFilterList.end(); ++it ) + mFilterListBox->insertItem( (*it).name() ); +} + +void FilterDialog::selectionChanged( QListBoxItem *item ) +{ + bool state = ( item != 0 ); + + mEditButton->setEnabled( state ); + mRemoveButton->setEnabled( state ); +} + +void FilterDialog::initGUI() +{ + resize( 330, 200 ); + + QWidget *page = plainPage(); + + QGridLayout *topLayout = new QGridLayout( page, 1, 2, 0, spacingHint() ); + + mFilterListBox = new KListBox( page ); + topLayout->addWidget( mFilterListBox, 0, 0 ); + connect( mFilterListBox, SIGNAL( selectionChanged( QListBoxItem * ) ), + SLOT( selectionChanged( QListBoxItem * ) ) ); + connect( mFilterListBox, SIGNAL( doubleClicked ( QListBoxItem * ) ), + SLOT( edit() ) ); + + KButtonBox *buttonBox = new KButtonBox( page, Vertical ); + buttonBox->addButton( i18n( "&Add..." ), this, SLOT( add() ) ); + mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, SLOT( edit() ) ); + mEditButton->setEnabled( false ); + mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, SLOT( remove() ) ); + mRemoveButton->setEnabled( false ); + + buttonBox->layout(); + topLayout->addWidget( buttonBox, 0, 1 ); +} + +#include "filtereditdialog.moc" |