summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KFileIconViewItem.java
blob: dbb67030d6436ecc34c2ffb8e7fc2f80a54ad4d0 (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
//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.TQPixmap;
import org.kde.qt.TQIconView;

/**

 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(TQIconView parent, String text, TQPixmap pixmap, KFileItem fi) {
		super((Class) null);
		newKFileIconViewItem(parent,text,pixmap,fi);
	}
	private native void newKFileIconViewItem(TQIconView parent, String text, TQPixmap pixmap, KFileItem fi);
	/**	
				@short
	*/
	public KFileIconViewItem(TQIconView parent, KFileItem fi) {
		super((Class) null);
		newKFileIconViewItem(parent,fi);
	}
	private native void newKFileIconViewItem(TQIconView 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();
}