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.
69 lines
2.5 KiB
69 lines
2.5 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQIconSet implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected TQIconSet(Class dummy){}
|
|
|
|
public static final int Automatic = 0;
|
|
public static final int Small = 1;
|
|
public static final int Large = 2;
|
|
|
|
public static final int Normal = 0;
|
|
public static final int Disabled = 1;
|
|
public static final int Active = 2;
|
|
|
|
public static final int On = 0;
|
|
public static final int Off = 1;
|
|
|
|
public TQIconSet() {
|
|
newTQIconSet();
|
|
}
|
|
private native void newTQIconSet();
|
|
public TQIconSet(TQPixmap pixmap, int size) {
|
|
newTQIconSet(pixmap,size);
|
|
}
|
|
private native void newTQIconSet(TQPixmap pixmap, int size);
|
|
public TQIconSet(TQPixmap pixmap) {
|
|
newTQIconSet(pixmap);
|
|
}
|
|
private native void newTQIconSet(TQPixmap pixmap);
|
|
public TQIconSet(TQPixmap smallPix, TQPixmap largePix) {
|
|
newTQIconSet(smallPix,largePix);
|
|
}
|
|
private native void newTQIconSet(TQPixmap smallPix, TQPixmap largePix);
|
|
public TQIconSet(TQIconSet other) {
|
|
newTQIconSet(other);
|
|
}
|
|
private native void newTQIconSet(TQIconSet other);
|
|
public native void reset(TQPixmap pixmap, int size);
|
|
public native void setPixmap(TQPixmap pixmap, int size, int mode, int state);
|
|
public native void setPixmap(TQPixmap pixmap, int size, int mode);
|
|
public native void setPixmap(TQPixmap pixmap, int size);
|
|
public native void setPixmap(String fileName, int size, int mode, int state);
|
|
public native void setPixmap(String fileName, int size, int mode);
|
|
public native void setPixmap(String fileName, int size);
|
|
public native TQPixmap pixmap(int size, int mode, int state);
|
|
public native TQPixmap pixmap(int size, int mode);
|
|
public native TQPixmap pixmap(int size, boolean enabled, int state);
|
|
public native TQPixmap pixmap(int size, boolean enabled);
|
|
public native TQPixmap pixmap();
|
|
public native boolean isGenerated(int size, int mode, int state);
|
|
public native boolean isGenerated(int size, int mode);
|
|
public native void clearGenerated();
|
|
// void installIconFactory(TQIconFactory* arg1); >>>> NOT CONVERTED
|
|
public native boolean isNull();
|
|
public native void detach();
|
|
public static native void setIconSize(int which, TQSize size);
|
|
public static native TQSize iconSize(int which);
|
|
/** 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();
|
|
}
|