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/KFileListViewItem.java

58 lines
1.8 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QRect;
import org.kde.qt.QListViewItem;
import org.kde.qt.QtSupport;
import org.kde.qt.QPixmap;
import org.kde.qt.QListView;
/**
An item for the listiew, that has a reference to its corresponding
KFileItem.
@short An item for the listiew, that has a reference to its corresponding KFileItem.
*/
public class KFileListViewItem extends KListViewItem {
protected KFileListViewItem(Class dummy){super((Class) null);}
public KFileListViewItem(QListView parent, String text, QPixmap icon, KFileItem fi) {
super((Class) null);
newKFileListViewItem(parent,text,icon,fi);
}
private native void newKFileListViewItem(QListView parent, String text, QPixmap icon, KFileItem fi);
/**
@short
*/
public KFileListViewItem(QListView parent, KFileItem fi) {
super((Class) null);
newKFileListViewItem(parent,fi);
}
private native void newKFileListViewItem(QListView parent, KFileItem fi);
public KFileListViewItem(QListView parent, String text, QPixmap icon, KFileItem fi, QListViewItem after) {
super((Class) null);
newKFileListViewItem(parent,text,icon,fi,after);
}
private native void newKFileListViewItem(QListView parent, String text, QPixmap icon, KFileItem fi, QListViewItem after);
/**
@return the corresponding KFileItem
@short
*/
public native KFileItem fileInfo();
public native String key(int arg1, boolean arg2);
public native void setKey(String key);
public native QRect rect();
/**
@short
*/
public native void init();
/** 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();
}