summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java b/tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java
new file mode 100644
index 00000000..9aa0e180
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/FileCopyJob.java
@@ -0,0 +1,56 @@
+//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;
+
+/**
+
+ The FileCopyJob copies data from one place to another.
+ @short The FileCopyJob copies data from one place to another.
+ @see #file_copy
+ @see #file_move
+
+*/
+public class FileCopyJob extends Job {
+ protected FileCopyJob(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ /**
+ Do not create a FileCopyJob directly. Use TDEIO.file_move()
+ or TDEIO.file_copy() instead.
+ @param src the source URL
+ @param dest the destination URL
+ @param permissions the permissions of the resulting resource
+ @param move true to move, false to copy
+ @param overwrite true to allow overwriting, false otherwise
+ @param resume true to resume an operation, false otherwise
+ @param showProgressInfo true to show progress information to the user
+ @short Do not create a FileCopyJob directly.
+ */
+ /**
+ If you know the size of the source file, call this method
+ to inform this job. It will be displayed in the "resume" dialog.
+ @param size the size of the source file
+ @short If you know the size of the source file, call this method to inform this job.
+ */
+ public native void setSourceSize64(long size);
+ /**
+ Returns the source URL.
+ @return the source URL
+
+ @short Returns the source URL.
+ */
+ public native KURL srcURL();
+ /**
+ Returns the destination URL.
+ @return the destination URL
+
+ @short Returns the destination URL.
+ */
+ public native KURL destURL();
+ public native void slotStart();
+ public native void slotData(Job arg1, byte[] data);
+ public native void slotDataReq(Job arg1, byte[] data);
+}