diff options
| author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
|---|---|---|
| committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
| commit | 90825e2392b2d70e43c7a25b8a3752299a933894 (patch) | |
| tree | e33aa27f02b74604afbfd0ea4f1cfca8833d882a /qtjava/javalib/org/kde/qt/QBitmap.java | |
| download | tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip | |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QBitmap.java')
| -rw-r--r-- | qtjava/javalib/org/kde/qt/QBitmap.java | 96 |
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); + +} |
