summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java b/tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java
new file mode 100644
index 00000000..8f3c95fe
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/TDEIconCanvas.java
@@ -0,0 +1,52 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQWidget;
+
+/**
+
+ Icon canvas for TDEIconDialog.
+ See {@link TDEIconCanvasSignals} for signals emitted by TDEIconCanvas
+ @short Icon canvas for TDEIconDialog.
+
+*/
+public class TDEIconCanvas extends TDEIconView {
+ protected TDEIconCanvas(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TDEIconCanvas(TQWidget parent, String name) {
+ super((Class) null);
+ newTDEIconCanvas(parent,name);
+ }
+ private native void newTDEIconCanvas(TQWidget parent, String name);
+ public TDEIconCanvas(TQWidget parent) {
+ super((Class) null);
+ newTDEIconCanvas(parent);
+ }
+ private native void newTDEIconCanvas(TQWidget parent);
+ public TDEIconCanvas() {
+ super((Class) null);
+ newTDEIconCanvas();
+ }
+ private native void newTDEIconCanvas();
+ /**
+ 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();
+}