//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.qt; import org.kde.qt.Qt; public class QSize implements QtSupport { private long _qt; private boolean _allocatedInJavaWorld = true; protected QSize(Class dummy){} public static final int ScaleFree = 0; public static final int ScaleMin = 1; public static final int ScaleMax = 2; public QSize() { newQSize(); } private native void newQSize(); public QSize(int w, int h) { newQSize(w,h); } private native void newQSize(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(QSize s, int mode); public native QSize expandedTo(QSize arg1); public native QSize boundedTo(QSize arg1); public native short rwidth(); public native short rheight(); public native QSize op_plus_assign(QSize arg1); public native QSize op_minus_assign(QSize arg1); public native QSize op_mult_assign(int c); public native QSize op_mult_assign(double c); public native QSize op_div_assign(int c); public native QSize 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(); }