diff options
Diffstat (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQSize.java')
-rw-r--r-- | qtjava/javalib/org/trinitydesktop/qt/TQSize.java | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQSize.java b/qtjava/javalib/org/trinitydesktop/qt/TQSize.java new file mode 100644 index 00000000..461159a7 --- /dev/null +++ b/qtjava/javalib/org/trinitydesktop/qt/TQSize.java @@ -0,0 +1,49 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.qt; + +import org.trinitydesktop.qt.Qt; + +public class TQSize implements QtSupport { + private long _qt; + private boolean _allocatedInJavaWorld = true; + protected TQSize(Class dummy){} + + public static final int ScaleFree = 0; + public static final int ScaleMin = 1; + public static final int ScaleMax = 2; + + public TQSize() { + newTQSize(); + } + private native void newTQSize(); + public TQSize(int w, int h) { + newTQSize(w,h); + } + private native void newTQSize(int w, int h); + public native boolean isNull(); + public native boolean isEmpty(); + public native boolean isValid(); + public native int width(); + public native int height(); + public native void setWidth(int w); + public native void setHeight(int h); + public native void transpose(); + public native void scale(int w, int h, int mode); + public native void scale(TQSize s, int mode); + public native TQSize expandedTo(TQSize arg1); + public native TQSize boundedTo(TQSize arg1); + public native short rwidth(); + public native short rheight(); + public native TQSize op_plus_assign(TQSize arg1); + public native TQSize op_minus_assign(TQSize arg1); + public native TQSize op_mult_assign(int c); + public native TQSize op_mult_assign(double c); + public native TQSize op_div_assign(int c); + public native TQSize op_div_assign(double c); + /** 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(); +} |