KFind Class Reference
A generic implementation of the "find" function. More...
#include <kfind.h>
Inheritance diagram for KFind:


Public Types | |
enum | Result { NoMatch, Match } |
Signals | |
void | highlight (const QString &text, int matchingIndex, int matchedLength) |
void | findNext () |
void | optionsChanged () |
void | dialogClosed () |
Public Member Functions | |
KFind (const QString &pattern, long options, QWidget *parent) | |
KFind (const QString &pattern, long options, QWidget *parent, QWidget *findDialog) | |
bool | needData () const |
void | setData (const QString &data, int startPos=-1) |
Result | find () |
long | options () const |
virtual void | setOptions (long options) |
QString | pattern () const |
void | setPattern (const QString &pattern) |
int | numMatches () const |
virtual void | resetCounts () |
virtual bool | validateMatch (const QString &text, int index, int matchedlength) |
virtual bool | shouldRestart (bool forceAsking=false, bool showNumMatches=true) const |
virtual void | displayFinalDialog () const |
KDialogBase * | findNextDialog (bool create=false) |
void | closeFindNextDialog () |
int | index () const |
Static Public Member Functions | |
int | find (const QString &text, const QString &pattern, int index, long options, int *matchedlength) |
int | find (const QString &text, const QRegExp &pattern, int index, long options, int *matchedlength) |
Protected Slots | |
void | slotFindNext () |
void | slotDialogClosed () |
Protected Member Functions | |
QWidget * | parentWidget () const |
QWidget * | dialogsParent () const |
Friends | |
class | KReplace |
Detailed Description
A generic implementation of the "find" function.
- Author:
- S.R.Haque <srhaque@iee.org>, David Faure <faure@kde.org>
This class includes prompt handling etc. Also provides some static functions which can be used to create custom behavior instead of using the class directly.
Example:
To use the class to implement a complete find feature:
In the slot connected to the find action, after using KFindDialog:
// This creates a find-next-prompt dialog if needed. m_find = new KFind(pattern, options, this); // Connect highlight signal to code which handles highlighting // of found text. connect( m_find, SIGNAL( highlight( const QString &, int, int ) ), this, SLOT( slotHighlight( const QString &, int, int ) ) ); // Connect findNext signal - called when pressing the button in the dialog connect( m_find, SIGNAL( findNext() ), this, SLOT( slotFindNext() ) );
If you are using a non-modal find dialog (the recommended new way in KDE-3.2), you should call right away m_find->closeFindNextDialog().
Then initialize the variables determining the "current position" (to the cursor, if the option FromCursor is set, to the beginning of the selection if the option SelectedText is set, and to the beginning of the document otherwise). Initialize the "end of search" variables as well (end of doc or end of selection). Swap begin and end if FindBackwards. Finally, call slotFindNext();
void slotFindNext() { KFind::Result res = KFind::NoMatch; while ( res == KFind::NoMatch && <position not at end> ) { if ( m_find->needData() ) m_find->setData( <current text fragment> ); // Let KFind inspect the text fragment, and display a dialog if a match is found res = m_find->find(); if ( res == KFind::NoMatch ) { <Move to the next text fragment, honoring the FindBackwards setting for the direction> } } if ( res == KFind::NoMatch ) // i.e. at end <Call either m_find->displayFinalDialog(); delete m_find; m_find = 0L; or if ( m_find->shouldRestart() ) { reinit (w/o FromCursor) and call slotFindNext(); } else { m_find->closeFindNextDialog(); }> }
Don't forget to delete m_find in the destructor of your class, unless you gave it a parent widget on construction.
This implementation allows to have a "Find Next" action, which resumes the search, even if the user closed the "Find Next" dialog.
A "Find Previous" action can simply switch temporarily the value of FindBackwards and call slotFindNext() - and reset the value afterwards.
Definition at line 100 of file kfind.h.
Constructor & Destructor Documentation
|
Only use this constructor if you don't use KFindDialog, or if you use it as a modal dialog.
Definition at line 64 of file kfind.cpp. References QObject::parent(). |
|
This is the recommended constructor if you also use KFindDialog (non-modal). You should pass the pointer to it here, so that when a message box appears it has the right parent. Don't worry about deletion, KFind will notice if the find dialog is closed. |
Member Function Documentation
|
|
|
Call this when needData returns true, before calling find().
Definition at line 115 of file kfind.cpp. References endl(), kdDebug(), and QString::length(). |
|
Walk the text fragment (e.g. text-processor line, kspread cell) looking for matches. For each match, emits the highlight() signal and displays the find-again dialog proceeding. Definition at line 142 of file kfind.cpp. References endl(), findNextDialog(), highlight(), k_funcinfo, kdDebug(), QDialog::show(), and validateMatch(). Referenced by find(), and KReplace::replace(). |
|
Return the current options. Warning: this is usually the same value as the one passed to the constructor, but options might change _during_ the replace operation: e.g. the "All" button resets the PromptOnReplace flag. Definition at line 157 of file kfind.h. Referenced by setPattern(). |
|
Set new options. Usually this is used for setting or clearing the FindBackwards options. Definition at line 421 of file kfind.cpp. Referenced by setPattern(). |
|
|
|
Change the pattern we're looking for.
Definition at line 444 of file kfind.cpp. References options(), and setOptions(). |
|
Return the number of matches found (i.e. the number of times the highlight signal was emitted). If 0, can be used in a dialog box to tell the user "no match was found". The final dialog does so already, unless you used setDisplayFinalDialog(false). Definition at line 181 of file kfind.h. Referenced by displayFinalDialog(), and shouldRestart(). |
|
Call this to reset the numMatches count (and the numReplacements count for a KReplace). Can be useful if reusing the same KReplace for different operations, or when restarting from the beginning of the document. Reimplemented in KReplace. Definition at line 189 of file kfind.h. Referenced by KReplace::resetCounts(). |
|
Virtual method, which allows applications to add extra checks for validating a candidate match. It's only necessary to reimplement this if the find dialog extension has been used to provide additional criterias.
Definition at line 201 of file kfind.h. Referenced by find(), and KReplace::replace(). |
|
Returns true if we should restart the search from scratch. Can ask the user, or return false (if we already searched the whole document).
Reimplemented in KReplace. Definition at line 381 of file kfind.cpp. References QString::arg(), displayFinalDialog(), QStyleSheet::escape(), numMatches(), and KMessageBox::questionYesNo(). |
|
Search the given string, and returns whether a match was found. If one is, the length of the string matched is also returned. A performance optimised version of the function is provided for use with regular expressions.
Definition at line 206 of file kfind.cpp. References QString::find(), find(), QString::findRev(), and QString::length(). |
|
Displays the final dialog saying "no match was found", if that was the case. Call either this or shouldRestart(). Reimplemented in KReplace. Definition at line 371 of file kfind.cpp. References QString::arg(), QStyleSheet::escape(), KMessageBox::information(), and numMatches(). Referenced by shouldRestart(). |
|
Return (or create) the dialog that shows the "find next?" prompt. Usually you don't need to call this. One case where it can be useful, is when the user selects the "Find" menu item while a find operation is under way. In that case, the program may want to call setActiveWindow() on that dialog. Definition at line 131 of file kfind.cpp. References QObject::connect(), and KStdAction::create(). Referenced by find(). |
|
Close the "find next?" dialog. The application should do this when the last match was hit. If the application deletes the KFind, then "find previous" won't be possible anymore. IMPORTANT: you should also call this if you are using a non-modal find dialog, to tell KFind not to pop up its own dialog. Definition at line 432 of file kfind.cpp. Referenced by KReplace::closeReplaceNextDialog(). |
|
|
|
Connect to this signal to implement highlighting of found text during the find operation.
Referenced by find(), and KReplace::replace(). |
|
Emitted when the options have changed. This can happen e.g. with "Replace All", or if our 'find next' dialog gets a "find previous" one day. |
|
Emitted when the 'find next' dialog is being closed. Some apps might want to remove the highlighted text when this happens. Apps without support for "Find Next" can also do m_find->deleteLater() to terminate the find operation. |
The documentation for this class was generated from the following files: