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/qtjava/javalib/org/trinitydesktop/qt/TQDoubleValidator.java

48 lines
2.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQDoubleValidator extends TQValidator {
protected TQDoubleValidator(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TQDoubleValidator(TQObject parent, String name) {
super((Class) null);
newTQDoubleValidator(parent,name);
}
private native void newTQDoubleValidator(TQObject parent, String name);
public TQDoubleValidator(TQObject parent) {
super((Class) null);
newTQDoubleValidator(parent);
}
private native void newTQDoubleValidator(TQObject parent);
public TQDoubleValidator(double bottom, double top, int decimals, TQObject parent, String name) {
super((Class) null);
newTQDoubleValidator(bottom,top,decimals,parent,name);
}
private native void newTQDoubleValidator(double bottom, double top, int decimals, TQObject parent, String name);
public TQDoubleValidator(double bottom, double top, int decimals, TQObject parent) {
super((Class) null);
newTQDoubleValidator(bottom,top,decimals,parent);
}
private native void newTQDoubleValidator(double bottom, double top, int decimals, TQObject parent);
public native int validate(StringBuffer arg1, int[] arg2);
public native void setRange(double bottom, double top, int decimals);
public native void setRange(double bottom, double top);
public native void setBottom(double arg1);
public native void setTop(double arg1);
public native void setDecimals(int arg1);
public native double bottom();
public native double top();
public native int decimals();
public static native String tr(String arg1, String arg2);
public static native String tr(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();
}