summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KReplaceSignals.java
blob: c9f8faaee3d87ed49c4191ffddeeec936a9bb48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQRegExp;
import org.kde.qt.TQWidget;

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);
}