summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEdReplace.java
blob: 3af8fbabd452d687a1ecd81ca782d94bae338747 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**
 See {@link KEdReplaceSignals} for signals emitted by KEdReplace
*/
public class KEdReplace extends KDialogBase  {
	protected KEdReplace(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KEdReplace(TQWidget parent, String name, boolean modal) {
		super((Class) null);
		newKEdReplace(parent,name,modal);
	}
	private native void newKEdReplace(TQWidget parent, String name, boolean modal);
	public KEdReplace(TQWidget parent, String name) {
		super((Class) null);
		newKEdReplace(parent,name);
	}
	private native void newKEdReplace(TQWidget parent, String name);
	public KEdReplace(TQWidget parent) {
		super((Class) null);
		newKEdReplace(parent);
	}
	private native void newKEdReplace(TQWidget parent);
	public KEdReplace() {
		super((Class) null);
		newKEdReplace();
	}
	private native void newKEdReplace();
	public native String getText();
	public native String getReplaceText();
	public native void setText(String arg1);
	/**	
				@return the combobox containing the history of searches. Can be used
 to save and restore the history.
     
		@short
	*/
	public native KHistoryCombo searchCombo();
	/**	
				@return the combobox containing the history of replaces. Can be used
 to save and restore the history.
     
		@short
	*/
	public native KHistoryCombo replaceCombo();
	public native boolean case_sensitive();
	public native boolean get_direction();
	protected native void slotCancel();
	protected native void slotClose();
	protected native void slotUser1();
	protected native void slotUser2();
	protected native void slotUser3();
	protected native void textSearchChanged(String arg1);
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}