diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-08 20:06:00 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-01-08 20:06:00 +0100 |
commit | 636f509299122d02087c6fd62e1e4a46dbd22026 (patch) | |
tree | 70e43efceeb5b00e7f19cdac8da44928bd2fb459 /qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java | |
parent | 719b61750c08343f530068ed4127623aeac71cf0 (diff) | |
download | tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip |
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java')
-rw-r--r-- | qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java b/qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java new file mode 100644 index 00000000..cf17ed23 --- /dev/null +++ b/qtjava/javalib/org/trinitydesktop/qt/TQBitmap.java @@ -0,0 +1,96 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.qt; + +import org.trinitydesktop.qt.Qt; + +public class TQBitmap extends TQPixmap { + protected TQBitmap(Class dummy){super((Class) null);} + public TQBitmap() { + super((Class) null); + newTQBitmap(); + } + private native void newTQBitmap(); + public TQBitmap(int w, int h, boolean clear, int arg4) { + super((Class) null); + newTQBitmap(w,h,clear,arg4); + } + private native void newTQBitmap(int w, int h, boolean clear, int arg4); + public TQBitmap(int w, int h, boolean clear) { + super((Class) null); + newTQBitmap(w,h,clear); + } + private native void newTQBitmap(int w, int h, boolean clear); + public TQBitmap(int w, int h) { + super((Class) null); + newTQBitmap(w,h); + } + private native void newTQBitmap(int w, int h); + public TQBitmap(TQSize arg1, boolean clear, int arg3) { + super((Class) null); + newTQBitmap(arg1,clear,arg3); + } + private native void newTQBitmap(TQSize arg1, boolean clear, int arg3); + public TQBitmap(TQSize arg1, boolean clear) { + super((Class) null); + newTQBitmap(arg1,clear); + } + private native void newTQBitmap(TQSize arg1, boolean clear); + public TQBitmap(TQSize arg1) { + super((Class) null); + newTQBitmap(arg1); + } + private native void newTQBitmap(TQSize arg1); + public TQBitmap(int w, int h, char[] bits, boolean isXbitmap) { + super((Class) null); + newTQBitmap(w,h,bits,isXbitmap); + } + private native void newTQBitmap(int w, int h, char[] bits, boolean isXbitmap); + public TQBitmap(int w, int h, char[] bits) { + super((Class) null); + newTQBitmap(w,h,bits); + } + private native void newTQBitmap(int w, int h, char[] bits); + public TQBitmap(TQSize arg1, char[] bits, boolean isXbitmap) { + super((Class) null); + newTQBitmap(arg1,bits,isXbitmap); + } + private native void newTQBitmap(TQSize arg1, char[] bits, boolean isXbitmap); + public TQBitmap(TQSize arg1, char[] bits) { + super((Class) null); + newTQBitmap(arg1,bits); + } + private native void newTQBitmap(TQSize arg1, char[] bits); + public TQBitmap(TQBitmap arg1) { + super((Class) null); + newTQBitmap(arg1); + } + private native void newTQBitmap(TQBitmap arg1); + public TQBitmap(String fileName, String format) { + super((Class) null); + newTQBitmap(fileName,format); + } + private native void newTQBitmap(String fileName, String format); + public TQBitmap(String fileName) { + super((Class) null); + newTQBitmap(fileName); + } + private native void newTQBitmap(String fileName); + public native Object xForm(TQWMatrix 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 TQBitmap(TQPixmap arg1) { + super((Class) null); + newTQBitmap(arg1); + } + private native void newTQBitmap(TQPixmap arg1); + public TQBitmap(TQImage arg1) { + super((Class) null); + newTQBitmap(arg1); + } + private native void newTQBitmap(TQImage arg1); + +} |