summaryrefslogtreecommitdiffstats
path: root/kaddressbook/incsearchwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/incsearchwidget.cpp')
-rw-r--r--kaddressbook/incsearchwidget.cpp171
1 files changed, 171 insertions, 0 deletions
diff --git a/kaddressbook/incsearchwidget.cpp b/kaddressbook/incsearchwidget.cpp
new file mode 100644
index 000000000..e435d100f
--- /dev/null
+++ b/kaddressbook/incsearchwidget.cpp
@@ -0,0 +1,171 @@
+/*
+ This file is part of KAddressBook.
+ Copyright (c) 2002 Tobias Koenig <tokoe@kde.org>
+
+ 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 <qapplication.h>
+#include <qcombobox.h>
+#include <qlabel.h>
+#include <qlayout.h>
+#include <qtimer.h>
+#include <qtoolbutton.h>
+#include <qtooltip.h>
+#include <qwhatsthis.h>
+
+#include <kdialog.h>
+#include <kiconloader.h>
+#include <klineedit.h>
+#include <klocale.h>
+
+#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<p>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"