You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQPaintDeviceMetrics implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected TQPaintDeviceMetrics(Class dummy){}
|
|
|
|
public static final int PdmWidth = 1;
|
|
public static final int PdmHeight = 2;
|
|
public static final int PdmWidthMM = 3;
|
|
public static final int PdmHeightMM = 4;
|
|
public static final int PdmNumColors = 5;
|
|
public static final int PdmDepth = 6;
|
|
public static final int PdmDpiX = 7;
|
|
public static final int PdmDpiY = 8;
|
|
public static final int PdmPhysicalDpiX = 9;
|
|
public static final int PdmPhysicalDpiY = 10;
|
|
|
|
public TQPaintDeviceMetrics(TQPaintDeviceInterface arg1) {
|
|
newTQPaintDeviceMetrics(arg1);
|
|
}
|
|
private native void newTQPaintDeviceMetrics(TQPaintDeviceInterface arg1);
|
|
public native int width();
|
|
public native int height();
|
|
public native int widthMM();
|
|
public native int heightMM();
|
|
public native int logicalDpiX();
|
|
public native int logicalDpiY();
|
|
public native int physicalDpiX();
|
|
public native int physicalDpiY();
|
|
public native int numColors();
|
|
public native int depth();
|
|
/** 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();
|
|
}
|