From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kaddressbook/incsearchwidget.cpp | 171 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 kaddressbook/incsearchwidget.cpp (limited to 'kaddressbook/incsearchwidget.cpp') diff --git a/kaddressbook/incsearchwidget.cpp b/kaddressbook/incsearchwidget.cpp new file mode 100644 index 00000000..e435d100 --- /dev/null +++ b/kaddressbook/incsearchwidget.cpp @@ -0,0 +1,171 @@ +/* + This file is part of KAddressBook. + Copyright (c) 2002 Tobias Koenig + + 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 +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "incsearchwidget.h" + +IncSearchWidget::IncSearchWidget( QWidget *parent, const char *name ) + : QWidget( parent, name ) +{ + QHBoxLayout *layout = new QHBoxLayout( this, 2, KDialog::spacingHint() ); + + QToolButton *button = new QToolButton( this ); + button->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ); + button->setPixmap( SmallIcon( QApplication::reverseLayout() ? "clear_left" : "locationbar_erase" ) ); + button->setAccel( QKeySequence( CTRL+ALT+Key_S ) ); + button->setAutoRaise( true ); + QToolTip::add( button, i18n( "Reset" ) ); + layout->addWidget( button ); + + QLabel *label = new QLabel( i18n( "Search:" ), this, "kde toolbar widget" ); + label->setAlignment( QLabel::AlignVCenter | QLabel::AlignRight ); + layout->addWidget( label ); + + mSearchText = new KLineEdit( this ); + mSearchText->setSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::Preferred ); + QWhatsThis::add( mSearchText, i18n( "The incremental search

Enter some text here will start the search for the contact, which matches the search pattern best. The part of the contact, which will be used for matching, depends on the field selection." ) ); + label->setBuddy( mSearchText ); + layout->addWidget( mSearchText ); + + label = new QLabel( i18n( "as in 'Search in:'", "&in:" ), this, "kde toolbar widget" ); + label->setAlignment( QLabel::AlignVCenter | QLabel::AlignRight ); + layout->addWidget( label ); + + mFieldCombo = new QComboBox( false, this ); + layout->addWidget( mFieldCombo ); + label->setBuddy(mFieldCombo); + + QToolTip::add( mFieldCombo, i18n( "Select incremental search field" ) ); + QWhatsThis::add( mFieldCombo, i18n( "Here you can choose the field, which shall be used for incremental search." ) ); + + mInputTimer = new QTimer( this ); + + connect( mInputTimer, SIGNAL( timeout() ), + SLOT( timeout() ) ); + connect( mSearchText, SIGNAL( textChanged( const QString& ) ), + SLOT( announceDoSearch() ) ); + connect( mSearchText, SIGNAL( returnPressed() ), + SLOT( announceDoSearch() ) ); + connect( mFieldCombo, SIGNAL( activated( const QString& ) ), + SLOT( announceDoSearch() ) ); + connect( button, SIGNAL( clicked() ), + mSearchText, SLOT( clear() ) ); + connect( button, SIGNAL( clicked() ), + SLOT( announceDoSearch() ) ); + + initFields(); + + mSearchText->installEventFilter( this ); + + setFocusProxy( mSearchText ); +} + +IncSearchWidget::~IncSearchWidget() +{ +} + +void IncSearchWidget::announceDoSearch() +{ + if ( mInputTimer->isActive() ) + mInputTimer->stop(); + + mInputTimer->start( 0, true ); +} + +void IncSearchWidget::timeout() +{ + emit doSearch( mSearchText->text() ); +} + +void IncSearchWidget::initFields() +{ + mFieldList = KABC::Field::allFields(); + + mFieldCombo->clear(); + mFieldCombo->insertItem( i18n( "Visible Fields" ) ); + mFieldCombo->insertItem( i18n( "All Fields" ) ); + + KABC::Field::List::ConstIterator it; + for ( it = mFieldList.begin(); it != mFieldList.end(); ++it ) + mFieldCombo->insertItem( (*it)->label() ); + + announceDoSearch(); +} + +KABC::Field::List IncSearchWidget::currentFields() const +{ + KABC::Field::List fieldList; + + if ( mFieldCombo->currentItem() == 0 ) + fieldList = mViewFields; + else if ( mFieldCombo->currentItem() > 1 ) + fieldList.append( mFieldList[ mFieldCombo->currentItem() - 2 ] ); + + return fieldList; +} + +void IncSearchWidget::setCurrentItem( int pos ) +{ + mFieldCombo->setCurrentItem( pos ); +} + +int IncSearchWidget::currentItem() const +{ + return mFieldCombo->currentItem(); +} + +void IncSearchWidget::setViewFields( const KABC::Field::List &fields ) +{ + mViewFields = fields; +} + +void IncSearchWidget::clear() +{ + mSearchText->clear(); +} + +void IncSearchWidget::keyPressEvent( QKeyEvent *event ) +{ + if ( event->key() == Qt::Key_Up ) { + event->accept(); + emit scrollUp(); + } else if ( event->key() == Qt::Key_Down ) { + event->accept(); + emit scrollDown(); + } +} + +#include "incsearchwidget.moc" -- cgit v1.2.3