KDEUI
#include <kfind.h>
Public Types | |
enum | Options { WholeWordsOnly = 1, FromCursor = 2, SelectedText = 4, CaseSensitive = 8, FindBackwards = 16, RegularExpression = 32, FindIncremental = 64, MinimumUserOption = 65536 } |
enum | Result { NoMatch, Match } |
Signals | |
void | dialogClosed () |
void | findNext () |
void | highlight (const QString &text, int matchingIndex, int matchedLength) |
void | highlight (int id, int matchingIndex, int matchedLength) |
void | optionsChanged () |
Public Member Functions | |
KFind (const QString &pattern, long options, QWidget *parent) | |
KFind (const QString &pattern, long options, QWidget *parent, QWidget *findDialog) | |
virtual | ~KFind () |
void | closeFindNextDialog () |
virtual void | displayFinalDialog () const |
Result | find () |
KDialog * | findNextDialog (bool create=false) |
int | index () const |
bool | needData () const |
int | numMatches () const |
long | options () const |
QString | pattern () const |
virtual void | resetCounts () |
void | setData (const QString &data, int startPos=-1) |
void | setData (int id, const QString &data, int startPos=-1) |
virtual void | setOptions (long options) |
void | setPattern (const QString &pattern) |
virtual bool | shouldRestart (bool forceAsking=false, bool showNumMatches=true) const |
virtual bool | validateMatch (const QString &text, int index, int matchedlength) |
Public Member Functions inherited from QObject | |
QObject (QObject *parent) | |
QObject (QObject *parent, const char *name) | |
virtual | ~QObject () |
bool | blockSignals (bool block) |
QObject * | child (const char *objName, const char *inheritsClass, bool recursiveSearch) const |
const QObjectList & | children () const |
const char * | className () const |
bool | connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const |
void | deleteLater () |
void | destroyed (QObject *obj) |
bool | disconnect (const QObject *receiver, const char *method) |
bool | disconnect (const char *signal, const QObject *receiver, const char *method) |
void | dumpObjectInfo () |
void | dumpObjectTree () |
QList< QByteArray > | dynamicPropertyNames () const |
virtual bool | event (QEvent *e) |
virtual bool | eventFilter (QObject *watched, QEvent *event) |
T | findChild (const QString &name) const |
QList< T > | findChildren (const QRegExp ®Exp) const |
QList< T > | findChildren (const QString &name) const |
bool | inherits (const char *className) const |
void | insertChild (QObject *object) |
void | installEventFilter (QObject *filterObj) |
bool | isA (const char *className) const |
bool | isWidgetType () const |
void | killTimer (int id) |
virtual const QMetaObject * | metaObject () const |
void | moveToThread (QThread *targetThread) |
const char * | name () const |
const char * | name (const char *defaultName) const |
QString | objectName () const |
QObject * | parent () const |
QVariant | property (const char *name) const |
void | removeChild (QObject *object) |
void | removeEventFilter (QObject *obj) |
void | setName (const char *name) |
void | setObjectName (const QString &name) |
void | setParent (QObject *parent) |
bool | setProperty (const char *name, const QVariant &value) |
bool | signalsBlocked () const |
int | startTimer (int interval) |
QThread * | thread () const |
Static Public Member Functions | |
static int | find (const QString &text, const QString &pattern, int index, long options, int *matchedlength) |
static int | find (const QString &text, const QRegExp &pattern, int index, long options, int *matchedlength) |
Static Public Member Functions inherited from QObject | |
bool | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type) |
bool | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type) |
bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method) |
bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method) |
QString | tr (const char *sourceText, const char *disambiguation, int n) |
QString | trUtf8 (const char *sourceText, const char *disambiguation, int n) |
Protected Member Functions | |
QWidget * | dialogsParent () const |
QWidget * | parentWidget () const |
Protected Member Functions inherited from QObject | |
bool | checkConnectArgs (const char *signal, const QObject *object, const char *method) |
virtual void | childEvent (QChildEvent *event) |
virtual void | connectNotify (const char *signal) |
virtual void | customEvent (QEvent *event) |
virtual void | disconnectNotify (const char *signal) |
int | receivers (const char *signal) const |
QObject * | sender () const |
int | senderSignalIndex () const |
virtual void | timerEvent (QTimerEvent *event) |
Additional Inherited Members | |
Static Protected Member Functions inherited from QObject | |
QByteArray | normalizeSignalSlot (const char *signalSlot) |
Properties inherited from QObject | |
objectName | |
Detailed Description
A generic implementation of the "find" function.
Detail:
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:
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();
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.
Member Enumeration Documentation
enum KFind::Options |
the options
enum KFind::Result |
Constructor & Destructor Documentation
Only use this constructor if you don't use KFindDialog, or if you use it as a modal dialog.
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
void KFind::closeFindNextDialog | ( | ) |
|
signal |
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.
|
virtual |
Displays the final dialog saying "no match was found", if that was the case.
Call either this or shouldRestart().
Reimplemented in KReplace.
KFind::Result KFind::find | ( | ) |
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.
|
static |
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.
- Parameters
-
text The string to search. pattern The pattern to look for. index The starting index into the string. options The options to use. matchedlength The length of the string that was matched
- Returns
- The index at which a match was found, or -1 if no match was found.
|
signal |
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.
|
signal |
Connect to this signal to implement highlighting of found text during the find operation.
If you've set data with setData(id, text), use the signal highlight(id, matchingIndex, matchedLength)
WARNING: If you're using the FindIncremental option, the text argument passed by this signal is not necessarily the data last set through setData(), but can also be an earlier set data block.
- See also
- setData()
|
signal |
Connect to this signal to implement highlighting of found text during the find operation.
Use this signal if you've set your data with setData(id, text), otherwise use the signal with highlight(text, matchingIndex, matchedLength).
WARNING: If you're using the FindIncremental option, the id argument passed by this signal is not necessarily the id of the data last set through setData(), but can also be of an earlier set data block.
- See also
- setData()
int KFind::index | ( | ) | const |
bool KFind::needData | ( | ) | const |
int KFind::numMatches | ( | ) | const |
long KFind::options | ( | ) | const |
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.
- See also
- KFind::Options
|
signal |
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.
QString KFind::pattern | ( | ) | const |
|
virtual |
void KFind::setData | ( | const QString & | data, |
int | startPos = -1 |
||
) |
Call this when needData returns true, before calling find().
- Parameters
-
data the text fragment (line) startPos if set, the index at which the search should start. This is only necessary for the very first call to setData usually, for the 'find in selection' feature. A value of -1 (the default value) means "process all the data", i.e. either 0 or data.length()-1 depending on FindBackwards.
void KFind::setData | ( | int | id, |
const QString & | data, | ||
int | startPos = -1 |
||
) |
Call this when needData returns true, before calling find().
The use of ID's is especially useful if you're using the FindIncremental option.
- Parameters
-
id the id of the text fragment data the text fragment (line) startPos if set, the index at which the search should start. This is only necessary for the very first call to setData usually, for the 'find in selection' feature. A value of -1 (the default value) means "process all the data", i.e. either 0 or data.length()-1 depending on FindBackwards.
|
virtual |
Set new options.
Usually this is used for setting or clearing the FindBackwards options.
- See also
- KFind::Options
void KFind::setPattern | ( | const QString & | pattern | ) |
Returns true if we should restart the search from scratch.
Can ask the user, or return false (if we already searched the whole document).
- Parameters
-
forceAsking set to true if the user modified the document during the search. In that case it makes sense to restart the search again. showNumMatches set to true if the dialog should show the number of matches. Set to false if the application provides a "find previous" action, in which case the match count will be erroneous when hitting the end, and we could even be hitting the beginning of the document (so not all matches have even been seen).
Reimplemented in KReplace.
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.
- Parameters
-
text The current text fragment index The starting index where the candidate match was found matchedlength The length of the candidate match
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:24:02 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.