summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KIconCanvas.java
blob: 6e505ea12b0bc997cfcd44b9046c81e72aeb02ed (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;

/**

 Icon canvas for KIconDialog.
  See {@link KIconCanvasSignals} for signals emitted by KIconCanvas
		@short    Icon canvas for KIconDialog.

*/
public class KIconCanvas extends KIconView  {
	protected KIconCanvas(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KIconCanvas(TQWidget parent, String name) {
		super((Class) null);
		newKIconCanvas(parent,name);
	}
	private native void newKIconCanvas(TQWidget parent, String name);
	public KIconCanvas(TQWidget parent) {
		super((Class) null);
		newKIconCanvas(parent);
	}
	private native void newKIconCanvas(TQWidget parent);
	public KIconCanvas() {
		super((Class) null);
		newKIconCanvas();
	}
	private native void newKIconCanvas();
	/**	
		 Load icons into the canvas.
		     		@short    Load icons into the canvas.
	*/
	public native void loadFiles(String[] files);
	/**	
		 Returns the current icon.
		     		@short    Returns the current icon.
	*/
	public native String getCurrent();
	public native void stopLoading();
	/** 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();
}