/* This file is part of the KDE libraries Copyright (c) 2003 Scott Wheeler Copyright (c) 2005 Rafal Rzepecki Copyright (c) 2006 Hamish Rodda This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. 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. */ #ifndef KTREEWIDGETSEARCHLINE_H #define KTREEWIDGETSEARCHLINE_H #include class QModelIndex; class QTreeWidget; class QTreeWidgetItem; /** * This class makes it easy to add a search line for filtering the items in * listviews based on a simple text search. * * No changes to the application other than instantiating this class with * appropriate QTreeWidgets should be needed. */ class KDEUI_EXPORT KTreeWidgetSearchLine : public KLineEdit { Q_OBJECT Q_PROPERTY( Qt::CaseSensitivity caseSensitity READ caseSensitivity WRITE setCaseSensitivity ) Q_PROPERTY( bool keepParentsVisible READ keepParentsVisible WRITE setKeepParentsVisible ) public: /** * Constructs a KTreeWidgetSearchLine with \a treeWidget being the QTreeWidget to * be filtered. * * If \a treeWidget is null then the widget will be disabled until listviews * are set with setTreeWidget(), setTreeWidgets() or added with addTreeWidget(). */ explicit KTreeWidgetSearchLine( QWidget *parent = 0, QTreeWidget *treeWidget = 0 ); /** * Constructs a KTreeWidgetSearchLine with \a treeWidgets being the list of * pointers to QTreeWidgets to be filtered. * * If \a treeWidgets is empty then the widget will be disabled until listviews * are set with setTreeWidget(), setTreeWidgets() or added with addTreeWidget(). */ KTreeWidgetSearchLine( QWidget *parent, const QList &treeWidgets ); /** * Destroys the KTreeWidgetSearchLine. */ virtual ~KTreeWidgetSearchLine(); /** * Returns true if the search is case sensitive. This defaults to false. * * @see setCaseSensitive() */ Qt::CaseSensitivity caseSensitivity() const; /** * Returns the current list of columns that will be searched. If the * returned list is empty all visible columns will be searched. * * @see setSearchColumns */ QList searchColumns() const; /** * If this is true (the default) then the parents of matched items will also * be shown. * * @see setKeepParentsVisible() */ bool keepParentsVisible() const; /** * Returns the listview that is currently filtered by the search. * If there are multiple listviews filtered, it returns 0. * * @see setTreeWidget(), treeWidgets() */ QTreeWidget *treeWidget() const; /** * Returns the list of pointers to listviews that are currently filtered by * the search. * * @see setTreeWidgets(), addTreeWidget(), treeWidget() */ QList treeWidgets() const; Q_SIGNALS: /** * This signal is emitted whenever an item gets hidden or unhidden due * to it not matching or matching the search string. */ void hiddenChanged(QTreeWidgetItem *, bool); public Q_SLOTS: /** * Adds a QTreeWidget to the list of listviews filtered by this search line. * If \a treeWidget is null then the widget will be disabled. * * @see treeWidget(), setTreeWidgets(), removeTreeWidget() */ void addTreeWidget( QTreeWidget *treeWidget ); /** * Removes a QTreeWidget from the list of listviews filtered by this search * line. Does nothing if \a treeWidget is 0 or is not filtered by the quick search * line. * * @see listVew(), setTreeWidgets(), addTreeWidget() */ void removeTreeWidget( QTreeWidget *treeWidget ); /** * Updates search to only make visible the items that match \a pattern. If * \a s is null then the line edit's text will be used. */ virtual void updateSearch( const QString &pattern = QString() ); /** * Make the search case sensitive or case insensitive. * * @see caseSenstivity() */ void setCaseSensitivity( Qt::CaseSensitivity caseSensitivity ); /** * When a search is active on a list that's organized into a tree view if * a parent or ancesestor of an item is does not match the search then it * will be hidden and as such so too will any children that match. * * If this is set to true (the default) then the parents of matching items * will be shown. * * \warning setKeepParentsVisible(true) does not have the expected effect * on items being added to or removed from the view while a search is active. * When a new search starts afterwards the behavior will be normal. * * @see keepParentsVisible */ void setKeepParentsVisible( bool value ); /** * Sets the list of columns to be searched. The default is to search all, * visible columns which can be restored by passing \a columns as an empty * list. * If listviews to be filtered have different numbers or labels of columns * this method has no effect. * * @see searchColumns */ void setSearchColumns( const QList &columns ); /** * Sets the QTreeWidget that is filtered by this search line, replacing any * previously filtered listviews. If \a treeWidget is null then the widget will be * disabled. * * @see treeWidget(), setTreeWidgets() */ void setTreeWidget( QTreeWidget *treeWidget ); /** * Sets QTreeWidgets that are filtered by this search line, replacing any * previously filtered listviews. If \a treeWidgets is empty then the widget will * be disabled. * * @see treeWidgets(), addTreeWidget(), setTreeWidget() */ void setTreeWidgets( const QList &treeWidgets ); protected: /** * Returns true if \a item matches the search \a pattern. This will be evaluated * based on the value of caseSensitive(). This can be overridden in * subclasses to implement more complicated matching schemes. */ virtual bool itemMatches( const QTreeWidgetItem *item, const QString &pattern ) const; /** * Re-implemented for internal reasons. API not affected. */ virtual void contextMenuEvent( QContextMenuEvent* ); /** * Updates search to only make visible appropriate items in \a treeWidget. If * \a treeWidget is null then nothing is done. */ virtual void updateSearch( QTreeWidget *treeWidget ); /** * Connects signals of this listview to the appropriate slots of the search * line. */ virtual void connectTreeWidget( QTreeWidget* ); /** * Disconnects signals of a listviews from the search line. */ virtual void disconnectTreeWidget( QTreeWidget* ); /** * Checks columns in all listviews and decides whether choosing columns to * filter on makes any sense. * * Returns false if either of the following is true: * * there are no listviews connected, * * the listviews have different numbers of columns, * * the listviews have only one column, * * the listviews differ in column labels. * * Otherwise it returns true. * * @see setSearchColumns() */ virtual bool canChooseColumnsCheck(); /** * Re-implemented for internal reasons. API not affected. */ virtual bool event(QEvent *event); private: class Private; Private* const d; Q_PRIVATE_SLOT(d, void _k_rowsInserted(const QModelIndex&, int, int) const) Q_PRIVATE_SLOT(d, void _k_treeWidgetDeleted(QObject*)) Q_PRIVATE_SLOT(d, void _k_slotColumnActivated(QAction*)) Q_PRIVATE_SLOT(d, void _k_slotAllVisibleColumns()) Q_PRIVATE_SLOT(d, void _k_queueSearch(const QString&)) Q_PRIVATE_SLOT(d, void _k_activateSearch()) }; /** * Creates a widget featuring a KTreeWidgetSearchLine, a label with the text * "Search" and a button to clear the search. */ class KDEUI_EXPORT KTreeWidgetSearchLineWidget : public QWidget { Q_OBJECT public: /** * Creates a KTreeWidgetSearchLineWidget for \a treeWidget with \a parent as the * parent. */ explicit KTreeWidgetSearchLineWidget( QWidget *parent = 0, QTreeWidget *treeWidget = 0 ); /** * Destroys the KTreeWidgetSearchLineWidget */ ~KTreeWidgetSearchLineWidget(); /** * Returns a pointer to the search line. */ KTreeWidgetSearchLine *searchLine() const; protected Q_SLOTS: /** * Creates the widgets inside of the widget. This is called from the * constructor via a single shot timer so that it it guaranteed to run * after construction is complete. This makes it suitable for overriding in * subclasses. */ virtual void createWidgets(); protected: /** * Creates the search line. This can be useful to reimplement in cases where * a KTreeWidgetSearchLine subclass is used. * * It is const because it is be called from searchLine(), which to the user * doesn't conceptually alter the widget. */ virtual KTreeWidgetSearchLine *createSearchLine( QTreeWidget *treeWidget ) const; private: class Private; Private* const d; }; #endif