summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QSize.java
blob: afd94a1da1c09f26b723e71c0cd78a1c1f92fabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//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();
}