blob: 1c8c1931e604487c6c5349d844ff762dbfa15b54 (
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.trinitydesktop.qt;
import org.trinitydesktop.qt.TQt;
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();
}
|