summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QBitmap.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QBitmap.java')
-rw-r--r--qtjava/javalib/org/kde/qt/QBitmap.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QBitmap.java b/qtjava/javalib/org/kde/qt/QBitmap.java
new file mode 100644
index 00000000..e276b090
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/QBitmap.java
@@ -0,0 +1,96 @@
+//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);
+
+}