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

68 lines
2.1 KiB

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