//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.qt; import org.kde.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(); }