summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KReplaceSignals.java
blob: a50dfad874335722c0aedb16c34fa3928807c720 (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.trinitydesktop.koala;

import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQRegExp;
import org.trinitydesktop.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);
}