You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/kde/qt/QBitmap.java

97 lines
2.9 KiB
Java

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QBitmap extends QPixmap {
protected QBitmap(Class dummy){super((Class) null);}
public QBitmap() {
super((Class) null);
newQBitmap();
}
private native void newQBitmap();
public QBitmap(int w, int h, boolean clear, int arg4) {
super((Class) null);
newQBitmap(w,h,clear,arg4);
}
private native void newQBitmap(int w, int h, boolean clear, int arg4);
public QBitmap(int w, int h, boolean clear) {
super((Class) null);
newQBitmap(w,h,clear);
}
private native void newQBitmap(int w, int h, boolean clear);
public QBitmap(int w, int h) {
super((Class) null);
newQBitmap(w,h);
}
private native void newQBitmap(int w, int h);
public QBitmap(QSize arg1, boolean clear, int arg3) {
super((Class) null);
newQBitmap(arg1,clear,arg3);
}
private native void newQBitmap(QSize arg1, boolean clear, int arg3);
public QBitmap(QSize arg1, boolean clear) {
super((Class) null);
newQBitmap(arg1,clear);
}
private native void newQBitmap(QSize arg1, boolean clear);
public QBitmap(QSize arg1) {
super((Class) null);
newQBitmap(arg1);
}
private native void newQBitmap(QSize arg1);
public QBitmap(int w, int h, char[] bits, boolean isXbitmap) {
super((Class) null);
newQBitmap(w,h,bits,isXbitmap);
}
private native void newQBitmap(int w, int h, char[] bits, boolean isXbitmap);
public QBitmap(int w, int h, char[] bits) {
super((Class) null);
newQBitmap(w,h,bits);
}
private native void newQBitmap(int w, int h, char[] bits);
public QBitmap(QSize arg1, char[] bits, boolean isXbitmap) {
super((Class) null);
newQBitmap(arg1,bits,isXbitmap);
}
private native void newQBitmap(QSize arg1, char[] bits, boolean isXbitmap);
public QBitmap(QSize arg1, char[] bits) {
super((Class) null);
newQBitmap(arg1,bits);
}
private native void newQBitmap(QSize arg1, char[] bits);
public QBitmap(QBitmap arg1) {
super((Class) null);
newQBitmap(arg1);
}
private native void newQBitmap(QBitmap arg1);
public QBitmap(String fileName, String format) {
super((Class) null);
newQBitmap(fileName,format);
}
private native void newQBitmap(String fileName, String format);
public QBitmap(String fileName) {
super((Class) null);
newQBitmap(fileName);
}
private native void newQBitmap(String fileName);
public native Object xForm(QWMatrix arg1);
/** 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();
public QBitmap(QPixmap arg1) {
super((Class) null);
newQBitmap(arg1);
}
private native void newQBitmap(QPixmap arg1);
public QBitmap(QImage arg1) {
super((Class) null);
newQBitmap(arg1);
}
private native void newQBitmap(QImage arg1);
}