summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEdFind.java
blob: de1d82224f68bae4afb9c1d8850953639587479f (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
//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 KEdFindSignals} for signals emitted by KEdFind
*/
public class KEdFind extends KDialogBase  {
	protected KEdFind(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KEdFind(TQWidget parent, String name, boolean modal) {
		super((Class) null);
		newKEdFind(parent,name,modal);
	}
	private native void newKEdFind(TQWidget parent, String name, boolean modal);
	public KEdFind(TQWidget parent, String name) {
		super((Class) null);
		newKEdFind(parent,name);
	}
	private native void newKEdFind(TQWidget parent, String name);
	public KEdFind(TQWidget parent) {
		super((Class) null);
		newKEdFind(parent);
	}
	private native void newKEdFind(TQWidget parent);
	public KEdFind() {
		super((Class) null);
		newKEdFind();
	}
	private native void newKEdFind();
	public native String getText();
	public native void setText(String string);
	public native void setCaseSensitive(boolean b);
	public native boolean case_sensitive();
	public native void setDirection(boolean b);
	public native boolean get_direction();
	/**	
				@return the combobox containing the history of searches. Can be used
 to save and restore the history.
     
		@short
	*/
	public native KHistoryCombo searchCombo();
	protected native void slotCancel();
	protected native void slotUser1();
	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();
}