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/KEdFind.java

59 lines
1.8 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QWidget;
/**
See {@link KEdFindSignals} for signals emitted by KEdFind
*/
public class KEdFind extends KDialogBase {
protected KEdFind(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public KEdFind(QWidget parent, String name, boolean modal) {
super((Class) null);
newKEdFind(parent,name,modal);
}
private native void newKEdFind(QWidget parent, String name, boolean modal);
public KEdFind(QWidget parent, String name) {
super((Class) null);
newKEdFind(parent,name);
}
private native void newKEdFind(QWidget parent, String name);
public KEdFind(QWidget parent) {
super((Class) null);
newKEdFind(parent);
}
private native void newKEdFind(QWidget 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();
}