• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeutils
 

tdeutils

Signals | Public Member Functions | Static Public Member Functions | Protected Slots | List of all members
KReplace Class Reference
Main classes | Find and Replace classes

#include <kreplace.h>

Inheritance diagram for KReplace:
KFind

Signals

void replace (const TQString &text, int replacementIndex, int replacedLength, int matchedLength)
 
- Signals inherited from KFind
void highlight (const TQString &text, int matchingIndex, int matchedLength)
 
void highlight (int id, int matchingIndex, int matchedLength)
 
void findNext ()
 
void optionsChanged ()
 
void dialogClosed ()
 

Public Member Functions

 KReplace (const TQString &pattern, const TQString &replacement, long options, TQWidget *parent=0)
 
 KReplace (const TQString &pattern, const TQString &replacement, long options, TQWidget *parent, TQWidget *replaceDialog)
 
virtual ~KReplace ()
 
int numReplacements () const
 
virtual void resetCounts ()
 
Result replace ()
 
KDialogBase * replaceNextDialog (bool create=false)
 
void closeReplaceNextDialog ()
 
virtual bool shouldRestart (bool forceAsking=false, bool showNumMatches=true) const
 
virtual void displayFinalDialog () const
 
- Public Member Functions inherited from KFind
 KFind (const TQString &pattern, long options, TQWidget *parent)
 
 KFind (const TQString &pattern, long options, TQWidget *parent, TQWidget *findDialog)
 
virtual ~KFind ()
 
bool needData () const
 
void setData (const TQString &data, int startPos=-1)
 
void setData (int id, const TQString &data, int startPos=-1)
 
Result find ()
 
long options () const
 
virtual void setOptions (long options)
 
TQString pattern () const
 
void setPattern (const TQString &pattern)
 
int numMatches () const
 
virtual void resetCounts ()
 
virtual bool validateMatch (const TQString &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

static int replace (TQString &text, const TQString &pattern, const TQString &replacement, int index, long options, int *replacedLength)
 
static int replace (TQString &text, const TQRegExp &pattern, const TQString &replacement, int index, long options, int *replacedLength)
 
- Static Public Member Functions inherited from KFind
static int find (const TQString &text, const TQString &pattern, int index, long options, int *matchedlength)
 
static int find (const TQString &text, const TQRegExp &pattern, int index, long options, int *matchedlength)
 

Protected Slots

void slotSkip ()
 
void slotReplace ()
 
void slotReplaceAll ()
 
- Protected Slots inherited from KFind
void slotFindNext ()
 
void slotDialogClosed ()
 

Additional Inherited Members

- Public Types inherited from KFind
enum  Result { NoMatch , Match }
 
- Protected Member Functions inherited from KFind
TQWidget * parentWidget () const
 
TQWidget * dialogsParent () const
 

Detailed Description

A generic implementation of the "replace" function.

Author
S.R.Haque srhaq.nosp@m.ue@i.nosp@m.ee.or.nosp@m.g, David Faure faure.nosp@m.@kde.nosp@m..org

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 replace feature:

In the slot connect to the replace action, after using KReplaceDialog:

// This creates a replace-on-prompt dialog if needed.
m_replace = new KReplace(pattern, replacement, options, this);
// Connect signals to code which handles highlighting
// of found text, and on-the-fly replacement.
connect( m_replace, TQ_SIGNAL( highlight( const TQString &, int, int ) ),
this, TQ_SLOT( slotHighlight( const TQString &, int, int ) ) );
// Connect findNext signal - called when pressing the button in the dialog
connect( m_replace, TQ_SIGNAL( findNext() ),
this, TQ_SLOT( slotReplaceNext() ) );
// Connect replace signal - called when doing a replacement
connect( m_replace, TQ_SIGNAL( replace(const TQString &, int, int, int) ),
this, TQ_SLOT( slotReplace(const TQString &, int, int, int) ) );
KFind::pattern
TQString pattern() const
Definition: kfind.h:209
KFind::highlight
void highlight(const TQString &text, int matchingIndex, int matchedLength)
Connect to this signal to implement highlighting of found text during the find operation.
KFind::options
long options() const
Return the current options.
Definition: kfind.h:196
KReplace
A generic implementation of the "replace" function.
Definition: kreplace.h:99
KReplace::replace
Result replace()
Walk the text fragment (e.g.
Definition: kreplace.cpp:110

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 slotReplaceNext();

void slotReplaceNext()
{
KFind::Result res = KFind::NoMatch;
while ( res == KFind::NoMatch && <position not at end> ) {
if ( m_replace->needData() )
m_replace->setData( <current text fragment> );
// Let KReplace inspect the text fragment, and display a dialog if a match is found
res = m_replace->replace();
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_replace->displayFinalDialog(); delete m_replace; m_replace = 0L;
or if ( m_replace->shouldRestart() ) { reinit (w/o FromCursor) and call slotReplaceNext(); }
else { m_replace->closeReplaceNextDialog(); }>
}
KFind::Result
Result
Result enum.
Definition: kfind.h:140
KFind::NoMatch
@ NoMatch
No match was found.
Definition: kfind.h:141

Don't forget delete m_find in the destructor of your class, unless you gave it a parent widget on construction.

Definition at line 97 of file kreplace.h.

Constructor & Destructor Documentation

◆ KReplace() [1/2]

KReplace::KReplace ( const TQString &  pattern,
const TQString &  replacement,
long  options,
TQWidget *  parent = 0 
)

Only use this constructor if you don't use KFindDialog, or if you use it as a modal dialog.

Parameters
patternThe pattern to look for.
replacementThe replacement string.
optionsOptions for the find dialog.
See also
KFindDialog and KReplaceDialog.
Parameters
parentThe parent widget.

Definition at line 63 of file kreplace.cpp.

◆ KReplace() [2/2]

KReplace::KReplace ( const TQString &  pattern,
const TQString &  replacement,
long  options,
TQWidget *  parent,
TQWidget *  replaceDialog 
)

This is the recommended constructor if you also use KReplaceDialog (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, KReplace will notice if the find dialog is closed.

Parameters
patternThe pattern to look for.
replacementThe replacement string.
optionsOptions for the find dialog.
See also
KFindDialog and KReplaceDialog.
Parameters
parentThe parent widget.
replaceDialogA pointer to the KReplaceDialog object.

Definition at line 70 of file kreplace.cpp.

◆ ~KReplace()

KReplace::~KReplace ( )
virtual

Destructor.

Definition at line 77 of file kreplace.cpp.

Member Function Documentation

◆ closeReplaceNextDialog()

void KReplace::closeReplaceNextDialog ( )

Close the "replace next?" dialog.

The application should do this when the last match was hit. If the application deletes the KReplace, then "find previous" won't be possible anymore.

Definition at line 323 of file kreplace.cpp.

◆ displayFinalDialog()

void KReplace::displayFinalDialog ( ) const
virtual

Displays the final dialog telling the user how many replacements were made.

Call either this or shouldRestart().

Reimplemented from KFind.

Definition at line 102 of file kreplace.cpp.

◆ numReplacements()

int KReplace::numReplacements ( ) const
inline

Return the number of replacements made (i.e.

the number of times the replace signal was emitted). Can be used in a dialog box to tell the user how many replacements were made. The final dialog does so already, unless you used setDisplayFinalDialog(false).

Returns
The number of replacements.

Definition at line 138 of file kreplace.h.

◆ replace() [1/4]

KFind::Result KReplace::replace ( )

Walk the text fragment (e.g.

kwrite line, kspread cell) looking for matches. For each match, if prompt-on-replace is specified, emits the highlight() signal and displays the prompt-for-replace dialog before doing the replace.

Returns
Whether or not there has been a match.

Definition at line 110 of file kreplace.cpp.

◆ replace [2/4]

void KReplace::replace ( const TQString &  text,
int  replacementIndex,
int  replacedLength,
int  matchedLength 
)
signal

Connect to this slot to implement updating of replaced text during the replace operation.

Extra care must be taken to properly implement the "no prompt-on-replace" case. For instance highlight isn't emitted in that case (some code might rely on it), and for performance reasons one should repaint after replace() ONLY if prompt-on-replace was selected.

Parameters
textThe text, in which the replacement has already been done.
replacementIndexStarting index of the matched substring
replacedLengthLength of the replacement string
matchedLengthLength of the matched string

◆ replace() [3/4]

int KReplace::replace ( TQString &  text,
const TQRegExp &  pattern,
const TQString &  replacement,
int  index,
long  options,
int *  replacedLength 
)
static

Searches the given regular expression, replaces with the given replacement string, and returns whether a match was found.

If one is, the replacement string length is also returned.

Another version of the function is provided for use with strings.

Parameters
textThe string to search.
patternThe regular expression pattern to look for.
replacementThe replacement string to insert into the text.
indexThe starting index into the string.
optionsThe options to use.
replacedLengthOutput parameter, contains the length of the replaced string. Not always the same as replacement.length(), when backreferences are used.
Returns
The index at which a match was found, or -1 if no match was found.

Definition at line 196 of file kreplace.cpp.

◆ replace() [4/4]

int KReplace::replace ( TQString &  text,
const TQString &  pattern,
const TQString &  replacement,
int  index,
long  options,
int *  replacedLength 
)
static

Searches the given string, replaces with the given replacement string, and returns whether a match was found.

If one is, the replacement string length is also returned.

A performance optimised version of the function is provided for use with regular expressions.

Parameters
textThe string to search.
patternThe pattern to look for.
replacementThe replacement string to insert into the text.
indexThe starting index into the string.
optionsThe options to use.
replacedLengthOutput parameter, contains the length of the replaced string. Not always the same as replacement.length(), when backreferences are used.
Returns
The index at which a match was found, or -1 if no match was found.

Definition at line 180 of file kreplace.cpp.

◆ replaceNextDialog()

KDialogBase * KReplace::replaceNextDialog ( bool  create = false)

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.

Returns
The replace next dialog.

Definition at line 82 of file kreplace.cpp.

◆ resetCounts()

void KReplace::resetCounts ( )
virtual

Call this to reset the numMatches & numReplacements counts.

Can be useful if reusing the same KReplace for different operations, or when restarting from the beginning of the document.

Reimplemented from KFind.

Definition at line 278 of file kreplace.cpp.

◆ shouldRestart()

bool KReplace::shouldRestart ( bool  forceAsking = false,
bool  showNumMatches = true 
) const
virtual

Returns true if we should restart the search from scratch.

Can ask the user, or return false (if we already searched/replaced the whole document without the PromptOnReplace option).

Parameters
forceAskingset to true if the user modified the document during the search. In that case it makes sense to restart the search again.
showNumMatchesset 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).
Returns
true, if the search should be restarted.

Reimplemented from KFind.

Definition at line 284 of file kreplace.cpp.

◆ slotReplace

void KReplace::slotReplace ( )
protectedslot

Definition at line 244 of file kreplace.cpp.

◆ slotReplaceAll

void KReplace::slotReplaceAll ( )
protectedslot

Definition at line 223 of file kreplace.cpp.

◆ slotSkip

void KReplace::slotSkip ( )
protectedslot

Definition at line 231 of file kreplace.cpp.


The documentation for this class was generated from the following files:
  • kreplace.h
  • kreplace.cpp

tdeutils

Skip menu "tdeutils"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

tdeutils

Skip menu "tdeutils"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeutils by doxygen 1.9.4
This website is maintained by Timothy Pearson.