org.kde.koala
Interface KFindSignals


public interface KFindSignals


Method Summary
 void dialogClosed()
          Emitted when the 'find next' dialog is being closed.
 void findNext()
           
 void highlight(int id, int matchingIndex, int matchedLength)
          Connect to this signal to implement highlighting of found text during the find operation.
 void highlight(java.lang.String text, int matchingIndex, int matchedLength)
          Connect to this signal to implement highlighting of found text during the find operation.
 void optionsChanged()
          Emitted when the options have changed.
 

Method Detail

highlight

void highlight(java.lang.String text,
               int matchingIndex,
               int matchedLength)
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

highlight

void highlight(int id,
               int matchingIndex,
               int matchedLength)
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

findNext

void findNext()

optionsChanged

void optionsChanged()
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.


dialogClosed

void dialogClosed()
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.