summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KFileListViewItem.java
blob: f5f39886308bd02a317d875e574de8b12acb06fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.TQRect;
import org.trinitydesktop.qt.TQListViewItem;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQPixmap;
import org.trinitydesktop.qt.TQListView;

/**

 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 TDEListViewItem  {
	protected KFileListViewItem(Class dummy){super((Class) null);}
	public KFileListViewItem(TQListView parent, String text, TQPixmap icon, KFileItem fi) {
		super((Class) null);
		newKFileListViewItem(parent,text,icon,fi);
	}
	private native void newKFileListViewItem(TQListView parent, String text, TQPixmap icon, KFileItem fi);
	/**
				@short
	*/
	public KFileListViewItem(TQListView parent, KFileItem fi) {
		super((Class) null);
		newKFileListViewItem(parent,fi);
	}
	private native void newKFileListViewItem(TQListView parent, KFileItem fi);
	public KFileListViewItem(TQListView parent, String text, TQPixmap icon, KFileItem fi, TQListViewItem after) {
		super((Class) null);
		newKFileListViewItem(parent,text,icon,fi,after);
	}
	private native void newKFileListViewItem(TQListView parent, String text, TQPixmap icon, KFileItem fi, TQListViewItem 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 TQRect 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();
}