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.
25 lines
892 B
25 lines
892 B
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQCanvasSpline extends TQCanvasPolygon {
|
|
protected TQCanvasSpline(Class dummy){super((Class) null);}
|
|
public TQCanvasSpline(TQCanvas canvas) {
|
|
super((Class) null);
|
|
newTQCanvasSpline(canvas);
|
|
}
|
|
private native void newTQCanvasSpline(TQCanvas canvas);
|
|
public native void setControlPoints(TQPointArray arg1, boolean closed);
|
|
public native void setControlPoints(TQPointArray arg1);
|
|
public native TQPointArray controlPoints();
|
|
public native boolean closed();
|
|
public native int rtti();
|
|
/** 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();
|
|
}
|