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.
tdebindings/kdejava/koala/org/kde/koala/KFileIconViewItem.java

44 lines
1.3 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import org.kde.qt.QPixmap;
import org.kde.qt.QIconView;
/**
An item for the iconview, that has a reference to its corresponding
KFileItem.
@short An item for the iconview, that has a reference to its corresponding KFileItem.
*/
public class KFileIconViewItem extends KIconViewItem {
protected KFileIconViewItem(Class dummy){super((Class) null);}
public KFileIconViewItem(QIconView parent, String text, QPixmap pixmap, KFileItem fi) {
super((Class) null);
newKFileIconViewItem(parent,text,pixmap,fi);
}
private native void newKFileIconViewItem(QIconView parent, String text, QPixmap pixmap, KFileItem fi);
/**
@short
*/
public KFileIconViewItem(QIconView parent, KFileItem fi) {
super((Class) null);
newKFileIconViewItem(parent,fi);
}
private native void newKFileIconViewItem(QIconView parent, KFileItem fi);
/**
@return the corresponding KFileItem
@short
*/
public native KFileItem fileInfo();
/** 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();
}