You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KReplaceSignals.java

25 lines
1.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QRegExp;
import org.kde.qt.QWidget;
public interface KReplaceSignals {
/**
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.
@param text The text, in which the replacement has already been done.
@param replacementIndex Starting index of the matched substring
@param replacedLength Length of the replacement string
@param matchedLength Length of the matched string
@short Connect to this slot to implement updating of replaced text during the replace operation.
*/
void replace(String text, int replacementIndex, int replacedLength, int matchedLength);
}